mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 13:50:04 -04:00
Use Rust edition 2024 (#7280)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
emath::{remap_clamp, NumExt as _},
|
||||
Id, IdMap, InputState,
|
||||
emath::{NumExt as _, remap_clamp},
|
||||
};
|
||||
|
||||
#[derive(Clone, Default)]
|
||||
|
||||
@@ -204,12 +204,17 @@ fn shorten_source_file_path(path: &std::path::Path) -> String {
|
||||
#[test]
|
||||
fn test_shorten_path() {
|
||||
for (before, after) in [
|
||||
("/Users/emilk/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.24.1/src/runtime/runtime.rs", "tokio-1.24.1/src/runtime/runtime.rs"),
|
||||
(
|
||||
"/Users/emilk/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.24.1/src/runtime/runtime.rs",
|
||||
"tokio-1.24.1/src/runtime/runtime.rs",
|
||||
),
|
||||
("crates/rerun/src/main.rs", "rerun/src/main.rs"),
|
||||
("/rustc/d5a82bbd26e1ad8b7401f6a718a9c57c96905483/library/core/src/ops/function.rs", "core/src/ops/function.rs"),
|
||||
(
|
||||
"/rustc/d5a82bbd26e1ad8b7401f6a718a9c57c96905483/library/core/src/ops/function.rs",
|
||||
"core/src/ops/function.rs",
|
||||
),
|
||||
("/weird/path/file.rs", "/weird/path/file.rs"),
|
||||
]
|
||||
{
|
||||
] {
|
||||
use std::str::FromStr as _;
|
||||
let before = std::path::PathBuf::from_str(before).unwrap();
|
||||
assert_eq!(shorten_source_file_path(&before), after);
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
use emath::GuiRounding as _;
|
||||
|
||||
use crate::{
|
||||
emath, pos2, Align2, Context, Id, InnerResponse, LayerId, Layout, NumExt as _, Order, Pos2,
|
||||
Rect, Response, Sense, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, WidgetRect, WidgetWithState,
|
||||
Align2, Context, Id, InnerResponse, LayerId, Layout, NumExt as _, Order, Pos2, Rect, Response,
|
||||
Sense, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, WidgetRect, WidgetWithState, emath, pos2,
|
||||
};
|
||||
|
||||
/// State of an [`Area`] that is persisted between frames.
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
use std::hash::Hash;
|
||||
|
||||
use crate::{
|
||||
emath, epaint, pos2, remap, remap_clamp, vec2, Context, Id, InnerResponse, NumExt as _, Rect,
|
||||
Response, Sense, Stroke, TextStyle, TextWrapMode, Ui, UiBuilder, UiKind, UiStackInfo, Vec2,
|
||||
WidgetInfo, WidgetText, WidgetType,
|
||||
Context, Id, InnerResponse, NumExt as _, Rect, Response, Sense, Stroke, TextStyle,
|
||||
TextWrapMode, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, WidgetInfo, WidgetText, WidgetType,
|
||||
emath, epaint, pos2, remap, remap_clamp, vec2,
|
||||
};
|
||||
use emath::GuiRounding as _;
|
||||
use epaint::{Shape, StrokeKind};
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
use epaint::Shape;
|
||||
|
||||
use crate::{
|
||||
epaint, style::StyleModifier, style::WidgetVisuals, vec2, Align2, Context, Id, InnerResponse,
|
||||
NumExt as _, Painter, Popup, PopupCloseBehavior, Rect, Response, ScrollArea, Sense, Stroke,
|
||||
TextStyle, TextWrapMode, Ui, UiBuilder, Vec2, WidgetInfo, WidgetText, WidgetType,
|
||||
Align2, Context, Id, InnerResponse, NumExt as _, Painter, Popup, PopupCloseBehavior, Rect,
|
||||
Response, ScrollArea, Sense, Stroke, TextStyle, TextWrapMode, Ui, UiBuilder, Vec2, WidgetInfo,
|
||||
WidgetText, WidgetType, epaint, style::StyleModifier, style::WidgetVisuals, vec2,
|
||||
};
|
||||
|
||||
#[expect(unused_imports)] // Documentation
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
//! Frame container
|
||||
|
||||
use crate::{
|
||||
epaint, layers::ShapeIdx, InnerResponse, Response, Sense, Style, Ui, UiBuilder, UiKind,
|
||||
UiStackInfo,
|
||||
InnerResponse, Response, Sense, Style, Ui, UiBuilder, UiKind, UiStackInfo, epaint,
|
||||
layers::ShapeIdx,
|
||||
};
|
||||
use epaint::{Color32, CornerRadius, Margin, MarginF32, Rect, Shadow, Shape, Stroke};
|
||||
|
||||
@@ -143,7 +143,8 @@ pub struct Frame {
|
||||
#[test]
|
||||
fn frame_size() {
|
||||
assert_eq!(
|
||||
std::mem::size_of::<Frame>(), 32,
|
||||
std::mem::size_of::<Frame>(),
|
||||
32,
|
||||
"Frame changed size! If it shrank - good! Update this test. If it grew - bad! Try to find a way to avoid it."
|
||||
);
|
||||
assert!(
|
||||
|
||||
@@ -3,7 +3,7 @@ use crate::{
|
||||
Button, Color32, Context, Frame, Id, InnerResponse, IntoAtoms, Layout, Popup,
|
||||
PopupCloseBehavior, Response, Style, Ui, UiBuilder, UiKind, UiStack, UiStackInfo, Widget as _,
|
||||
};
|
||||
use emath::{vec2, Align, RectAlign, Vec2};
|
||||
use emath::{Align, RectAlign, Vec2, vec2};
|
||||
use epaint::Stroke;
|
||||
|
||||
/// Apply a menu style to the [`Style`].
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
use emath::GuiRounding as _;
|
||||
|
||||
use crate::{
|
||||
lerp, vec2, Align, Context, CursorIcon, Frame, Id, InnerResponse, LayerId, Layout, NumExt as _,
|
||||
Rangef, Rect, Sense, Stroke, Ui, UiBuilder, UiKind, UiStackInfo, Vec2,
|
||||
Align, Context, CursorIcon, Frame, Id, InnerResponse, LayerId, Layout, NumExt as _, Rangef,
|
||||
Rect, Sense, Stroke, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, lerp, vec2,
|
||||
};
|
||||
|
||||
fn animate_expansion(ctx: &Context, id: Id, is_expanded: bool) -> f32 {
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
use crate::containers::menu::{menu_style, MenuConfig, MenuState};
|
||||
use crate::containers::menu::{MenuConfig, MenuState, menu_style};
|
||||
use crate::style::StyleModifier;
|
||||
use crate::{
|
||||
Area, AreaState, Context, Frame, Id, InnerResponse, Key, LayerId, Layout, Order, Response,
|
||||
Sense, Ui, UiKind, UiStackInfo,
|
||||
};
|
||||
use emath::{vec2, Align, Pos2, Rect, RectAlign, Vec2};
|
||||
use emath::{Align, Pos2, Rect, RectAlign, Vec2, vec2};
|
||||
use std::iter::once;
|
||||
|
||||
/// What should we anchor the popup to?
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
pos2, vec2, Align2, Color32, Context, CursorIcon, Id, NumExt as _, Rect, Response, Sense,
|
||||
Shape, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, Vec2b,
|
||||
Align2, Color32, Context, CursorIcon, Id, NumExt as _, Rect, Response, Sense, Shape, Ui,
|
||||
UiBuilder, UiKind, UiStackInfo, Vec2, Vec2b, pos2, vec2,
|
||||
};
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
|
||||
@@ -3,8 +3,8 @@ use core::f32;
|
||||
use emath::{GuiRounding as _, Pos2};
|
||||
|
||||
use crate::{
|
||||
emath::TSTransform, InnerResponse, LayerId, PointerButton, Rangef, Rect, Response, Sense, Ui,
|
||||
UiBuilder, Vec2,
|
||||
InnerResponse, LayerId, PointerButton, Rangef, Rect, Response, Sense, Ui, UiBuilder, Vec2,
|
||||
emath::TSTransform,
|
||||
};
|
||||
|
||||
/// Creates a transformation that fits a given scene rectangle into the available screen size.
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
use std::ops::{Add, AddAssign, BitOr, BitOrAssign};
|
||||
|
||||
use crate::{
|
||||
emath, epaint, lerp, pass_state, pos2, remap, remap_clamp, Context, CursorIcon, Id,
|
||||
NumExt as _, Pos2, Rangef, Rect, Sense, Ui, UiBuilder, UiKind, UiStackInfo, Vec2, Vec2b,
|
||||
Context, CursorIcon, Id, NumExt as _, Pos2, Rangef, Rect, Sense, Ui, UiBuilder, UiKind,
|
||||
UiStackInfo, Vec2, Vec2b, emath, epaint, lerp, pass_state, pos2, remap, remap_clamp,
|
||||
};
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
|
||||
@@ -9,7 +9,7 @@ use crate::collapsing_header::CollapsingState;
|
||||
use crate::*;
|
||||
|
||||
use super::scroll_area::{ScrollBarVisibility, ScrollSource};
|
||||
use super::{area, resize, Area, Frame, Resize, ScrollArea};
|
||||
use super::{Area, Frame, Resize, ScrollArea, area, resize};
|
||||
|
||||
/// Builder for a floating window which can be dragged, closed, collapsed, resized and scrolled (off by default).
|
||||
///
|
||||
|
||||
@@ -4,16 +4,23 @@ use std::{borrow::Cow, cell::RefCell, panic::Location, sync::Arc, time::Duration
|
||||
|
||||
use emath::{GuiRounding as _, OrderedFloat};
|
||||
use epaint::{
|
||||
ClippedPrimitive, ClippedShape, Color32, ImageData, ImageDelta, Pos2, Rect, StrokeKind,
|
||||
TessellationOptions, TextureAtlas, TextureId, Vec2,
|
||||
emath::{self, TSTransform},
|
||||
mutex::RwLock,
|
||||
stats::PaintStats,
|
||||
tessellator,
|
||||
text::{FontInsert, FontPriority, Fonts},
|
||||
vec2, ClippedPrimitive, ClippedShape, Color32, ImageData, ImageDelta, Pos2, Rect, StrokeKind,
|
||||
TessellationOptions, TextureAtlas, TextureId, Vec2,
|
||||
vec2,
|
||||
};
|
||||
|
||||
use crate::{
|
||||
Align2, CursorIcon, DeferredViewportUiCallback, FontDefinitions, Grid, Id, ImmediateViewport,
|
||||
ImmediateViewportRendererCallback, Key, KeyboardShortcut, Label, LayerId, Memory,
|
||||
ModifierNames, Modifiers, NumExt as _, Order, Painter, RawInput, Response, RichText,
|
||||
ScrollArea, Sense, Style, TextStyle, TextureHandle, TextureOptions, Ui, ViewportBuilder,
|
||||
ViewportCommand, ViewportId, ViewportIdMap, ViewportIdPair, ViewportIdSet, ViewportOutput,
|
||||
Widget as _, WidgetRect, WidgetText,
|
||||
animation_manager::AnimationManager,
|
||||
containers::{self, area::AreaState},
|
||||
data::output::PlatformOutput,
|
||||
@@ -29,12 +36,6 @@ use crate::{
|
||||
resize, response, scroll_area,
|
||||
util::IdTypeMap,
|
||||
viewport::ViewportClass,
|
||||
Align2, CursorIcon, DeferredViewportUiCallback, FontDefinitions, Grid, Id, ImmediateViewport,
|
||||
ImmediateViewportRendererCallback, Key, KeyboardShortcut, Label, LayerId, Memory,
|
||||
ModifierNames, Modifiers, NumExt as _, Order, Painter, RawInput, Response, RichText,
|
||||
ScrollArea, Sense, Style, TextStyle, TextureHandle, TextureOptions, Ui, ViewportBuilder,
|
||||
ViewportCommand, ViewportId, ViewportIdMap, ViewportIdPair, ViewportIdSet, ViewportOutput,
|
||||
Widget as _, WidgetRect, WidgetText,
|
||||
};
|
||||
|
||||
#[cfg(feature = "accesskit")]
|
||||
@@ -860,7 +861,10 @@ impl Context {
|
||||
|
||||
if max_passes <= output.platform_output.num_completed_passes {
|
||||
#[cfg(feature = "log")]
|
||||
log::debug!("Ignoring call request_discard, because max_passes={max_passes}. Requested from {:?}", output.platform_output.request_discard_reasons);
|
||||
log::debug!(
|
||||
"Ignoring call request_discard, because max_passes={max_passes}. Requested from {:?}",
|
||||
output.platform_output.request_discard_reasons
|
||||
);
|
||||
|
||||
break;
|
||||
}
|
||||
@@ -2353,7 +2357,9 @@ impl Context {
|
||||
// If you see this message, it means we've been paying the cost of multi-pass for multiple frames in a row.
|
||||
// This is likely a bug. `request_discard` should only be called in rare situations, when some layout changes.
|
||||
|
||||
let mut warning = format!("egui PERF WARNING: request_discard has been called {num_multipass_in_row} frames in a row");
|
||||
let mut warning = format!(
|
||||
"egui PERF WARNING: request_discard has been called {num_multipass_in_row} frames in a row"
|
||||
);
|
||||
self.viewport(|vp| {
|
||||
for reason in &vp.output.request_discard_reasons {
|
||||
warning += &format!("\n {reason}");
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
use epaint::ColorImage;
|
||||
|
||||
use crate::{
|
||||
emath::{Pos2, Rect, Vec2},
|
||||
Key, Theme, ViewportId, ViewportIdMap,
|
||||
emath::{Pos2, Rect, Vec2},
|
||||
};
|
||||
|
||||
/// What the integrations provides to egui at the start of each frame.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
//! to get callbacks on certain events ([`Context::on_begin_pass`], [`Context::on_end_pass`]).
|
||||
|
||||
use crate::{
|
||||
text, Align, Align2, Color32, Context, FontFamily, FontId, Id, Rect, Shape, Vec2, WidgetText,
|
||||
Align, Align2, Color32, Context, FontFamily, FontId, Id, Rect, Shape, Vec2, WidgetText, text,
|
||||
};
|
||||
|
||||
/// Register this plugin on the given egui context,
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
use emath::GuiRounding as _;
|
||||
|
||||
use crate::{
|
||||
vec2, Align2, Color32, Context, Id, InnerResponse, NumExt as _, Painter, Rect, Region, Style,
|
||||
Ui, UiBuilder, Vec2,
|
||||
Align2, Color32, Context, Id, InnerResponse, NumExt as _, Painter, Rect, Region, Style, Ui,
|
||||
UiBuilder, Vec2, vec2,
|
||||
};
|
||||
|
||||
#[cfg(debug_assertions)]
|
||||
|
||||
@@ -2,7 +2,7 @@ use ahash::HashMap;
|
||||
|
||||
use emath::TSTransform;
|
||||
|
||||
use crate::{ahash, emath, id::IdSet, LayerId, Pos2, Rect, Sense, WidgetRect, WidgetRects};
|
||||
use crate::{LayerId, Pos2, Rect, Sense, WidgetRect, WidgetRects, ahash, emath, id::IdSet};
|
||||
|
||||
/// Result of a hit-test against [`WidgetRects`].
|
||||
///
|
||||
@@ -466,7 +466,7 @@ fn should_prioritize_hits_on_back(back: Rect, front: Rect) -> bool {
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use emath::{pos2, vec2, Rect};
|
||||
use emath::{Rect, pos2, vec2};
|
||||
|
||||
use crate::{Id, Sense};
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
mod touch_state;
|
||||
|
||||
use crate::data::input::{
|
||||
Event, EventFilter, KeyboardShortcut, Modifiers, MouseWheelUnit, PointerButton, RawInput,
|
||||
TouchDeviceId, ViewportInfo, NUM_POINTER_BUTTONS,
|
||||
Event, EventFilter, KeyboardShortcut, Modifiers, MouseWheelUnit, NUM_POINTER_BUTTONS,
|
||||
PointerButton, RawInput, TouchDeviceId, ViewportInfo,
|
||||
};
|
||||
use crate::{
|
||||
emath::{vec2, NumExt as _, Pos2, Rect, Vec2},
|
||||
emath::{NumExt as _, Pos2, Rect, Vec2, vec2},
|
||||
util::History,
|
||||
};
|
||||
use std::{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
use std::{collections::BTreeMap, fmt::Debug};
|
||||
|
||||
use crate::{
|
||||
data::input::TouchDeviceId,
|
||||
emath::{normalized_angle, Pos2, Vec2},
|
||||
Event, RawInput, TouchId, TouchPhase,
|
||||
data::input::TouchDeviceId,
|
||||
emath::{Pos2, Vec2, normalized_angle},
|
||||
};
|
||||
|
||||
/// All you probably need to know about a multi-touch gesture.
|
||||
@@ -174,7 +174,7 @@ impl TouchState {
|
||||
if added_or_removed_touches {
|
||||
// Adding or removing fingers makes the average values "jump". We better forget
|
||||
// about the previous values, and don't create delta information for this frame:
|
||||
if let Some(ref mut state) = &mut self.gesture_state {
|
||||
if let Some(state) = &mut self.gesture_state {
|
||||
state.previous = None;
|
||||
}
|
||||
}
|
||||
@@ -224,7 +224,7 @@ impl TouchState {
|
||||
|
||||
fn update_gesture(&mut self, time: f64, pointer_pos: Option<Pos2>) {
|
||||
if let Some(dyn_state) = self.calc_dynamic_state() {
|
||||
if let Some(ref mut state) = &mut self.gesture_state {
|
||||
if let Some(state) = &mut self.gesture_state {
|
||||
// updating an ongoing gesture
|
||||
state.previous = Some(state.current);
|
||||
state.current = dyn_state;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//! How mouse and touch interzcts with widgets.
|
||||
|
||||
use crate::{hit_test, id, input_state, memory, Id, InputState, Key, WidgetRects};
|
||||
use crate::{Id, InputState, Key, WidgetRects, hit_test, id, input_state, memory};
|
||||
|
||||
use self::{hit_test::WidgetHits, id::IdSet, input_state::PointerEvent, memory::InteractionState};
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//! Showing UI:s for egui/epaint types.
|
||||
use crate::{
|
||||
epaint, memory, pos2, remap_clamp, vec2, Color32, CursorIcon, FontFamily, FontId, Label, Mesh,
|
||||
NumExt as _, Rect, Response, Sense, Shape, Slider, TextStyle, TextWrapMode, Ui, Widget,
|
||||
Color32, CursorIcon, FontFamily, FontId, Label, Mesh, NumExt as _, Rect, Response, Sense,
|
||||
Shape, Slider, TextStyle, TextWrapMode, Ui, Widget, epaint, memory, pos2, remap_clamp, vec2,
|
||||
};
|
||||
|
||||
pub fn font_family_ui(ui: &mut Ui, font_family: &mut FontFamily) {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
//! Handles paint layers, i.e. how things
|
||||
//! are sometimes painted behind or in front of other things.
|
||||
|
||||
use crate::{ahash, epaint, Id, IdMap, Rect};
|
||||
use epaint::{emath::TSTransform, ClippedShape, Shape};
|
||||
use crate::{Id, IdMap, Rect, ahash, epaint};
|
||||
use epaint::{ClippedShape, Shape, emath::TSTransform};
|
||||
|
||||
/// Different layer categories
|
||||
#[derive(Clone, Copy, Debug, Hash, Eq, PartialEq, Ord, PartialOrd)]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
use emath::GuiRounding as _;
|
||||
|
||||
use crate::{
|
||||
emath::{pos2, vec2, Align2, NumExt as _, Pos2, Rect, Vec2},
|
||||
Align,
|
||||
emath::{Align2, NumExt as _, Pos2, Rect, Vec2, pos2, vec2},
|
||||
};
|
||||
const INFINITY: f32 = f32::INFINITY;
|
||||
|
||||
|
||||
@@ -463,22 +463,21 @@ pub use epaint::emath;
|
||||
pub use ecolor::hex_color;
|
||||
pub use ecolor::{Color32, Rgba};
|
||||
pub use emath::{
|
||||
lerp, pos2, remap, remap_clamp, vec2, Align, Align2, NumExt, Pos2, Rangef, Rect, RectAlign,
|
||||
Vec2, Vec2b,
|
||||
Align, Align2, NumExt, Pos2, Rangef, Rect, RectAlign, Vec2, Vec2b, lerp, pos2, remap,
|
||||
remap_clamp, vec2,
|
||||
};
|
||||
pub use epaint::{
|
||||
mutex,
|
||||
ClippedPrimitive, ColorImage, CornerRadius, FontImage, ImageData, Margin, Mesh, PaintCallback,
|
||||
PaintCallbackInfo, Shadow, Shape, Stroke, StrokeKind, TextureHandle, TextureId, mutex,
|
||||
text::{FontData, FontDefinitions, FontFamily, FontId, FontTweak},
|
||||
textures::{TextureFilter, TextureOptions, TextureWrapMode, TexturesDelta},
|
||||
ClippedPrimitive, ColorImage, CornerRadius, FontImage, ImageData, Margin, Mesh, PaintCallback,
|
||||
PaintCallbackInfo, Shadow, Shape, Stroke, StrokeKind, TextureHandle, TextureId,
|
||||
};
|
||||
|
||||
pub mod text {
|
||||
pub use crate::text_selection::CCursorRange;
|
||||
pub use epaint::text::{
|
||||
cursor::CCursor, FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob,
|
||||
LayoutSection, TextFormat, TextWrapping, TAB_SIZE,
|
||||
FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob, LayoutSection, TAB_SIZE,
|
||||
TextFormat, TextWrapping, cursor::CCursor,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -487,12 +486,12 @@ pub use self::{
|
||||
containers::*,
|
||||
context::{Context, RepaintCause, RequestRepaintInfo},
|
||||
data::{
|
||||
Key, UserData,
|
||||
input::*,
|
||||
output::{
|
||||
self, CursorIcon, FullOutput, OpenUrl, OutputCommand, PlatformOutput,
|
||||
UserAttentionType, WidgetInfo,
|
||||
},
|
||||
Key, UserData,
|
||||
},
|
||||
drag_and_drop::DragAndDrop,
|
||||
epaint::text::TextWrapMode,
|
||||
|
||||
@@ -65,7 +65,7 @@ use std::{
|
||||
use ahash::HashMap;
|
||||
|
||||
use emath::{Float as _, OrderedFloat};
|
||||
use epaint::{mutex::Mutex, textures::TextureOptions, ColorImage, TextureHandle, TextureId, Vec2};
|
||||
use epaint::{ColorImage, TextureHandle, TextureId, Vec2, mutex::Mutex, textures::TextureOptions};
|
||||
|
||||
use crate::Context;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::{
|
||||
generate_loader_id, Bytes, BytesLoadResult, BytesLoader, BytesPoll, Context, Cow, HashMap,
|
||||
LoadError, Mutex,
|
||||
Bytes, BytesLoadResult, BytesLoader, BytesPoll, Context, Cow, HashMap, LoadError, Mutex,
|
||||
generate_loader_id,
|
||||
};
|
||||
|
||||
/// Maps URI:s to [`Bytes`], e.g. found with `include_bytes!`.
|
||||
|
||||
@@ -6,8 +6,8 @@ use ahash::{HashMap, HashSet};
|
||||
use epaint::emath::TSTransform;
|
||||
|
||||
use crate::{
|
||||
area, vec2, EventFilter, Id, IdMap, LayerId, Order, Pos2, Rangef, RawInput, Rect, Style, Vec2,
|
||||
ViewportId, ViewportIdMap, ViewportIdSet,
|
||||
EventFilter, Id, IdMap, LayerId, Order, Pos2, Rangef, RawInput, Rect, Style, Vec2, ViewportId,
|
||||
ViewportIdMap, ViewportIdSet, area, vec2,
|
||||
};
|
||||
|
||||
mod theme;
|
||||
@@ -377,8 +377,8 @@ impl Options {
|
||||
reduce_texture_memory,
|
||||
} = self;
|
||||
|
||||
use crate::containers::CollapsingHeader;
|
||||
use crate::Widget as _;
|
||||
use crate::containers::CollapsingHeader;
|
||||
|
||||
CollapsingHeader::new("⚙ Options")
|
||||
.default_open(false)
|
||||
@@ -1250,8 +1250,11 @@ impl Areas {
|
||||
///
|
||||
/// The two layers must have the same [`LayerId::order`].
|
||||
pub fn set_sublayer(&mut self, parent: LayerId, child: LayerId) {
|
||||
debug_assert_eq!(parent.order, child.order,
|
||||
"DEBUG ASSERT: Trying to set sublayers across layers of different order ({:?}, {:?}), which is currently undefined behavior in egui", parent.order, child.order);
|
||||
debug_assert_eq!(
|
||||
parent.order, child.order,
|
||||
"DEBUG ASSERT: Trying to set sublayers across layers of different order ({:?}, {:?}), which is currently undefined behavior in egui",
|
||||
parent.order, child.order
|
||||
);
|
||||
|
||||
self.sublayers.entry(parent).or_default().insert(child);
|
||||
|
||||
|
||||
@@ -30,11 +30,7 @@ impl Theme {
|
||||
|
||||
/// Chooses between [`Self::Dark`] or [`Self::Light`] based on a boolean value.
|
||||
pub fn from_dark_mode(dark_mode: bool) -> Self {
|
||||
if dark_mode {
|
||||
Self::Dark
|
||||
} else {
|
||||
Self::Light
|
||||
}
|
||||
if dark_mode { Self::Dark } else { Self::Light }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -17,14 +17,13 @@
|
||||
//! ```
|
||||
|
||||
use super::{
|
||||
style::WidgetVisuals, Align, Context, Id, InnerResponse, PointerState, Pos2, Rect, Response,
|
||||
Sense, TextStyle, Ui, Vec2,
|
||||
Align, Context, Id, InnerResponse, PointerState, Pos2, Rect, Response, Sense, TextStyle, Ui,
|
||||
Vec2, style::WidgetVisuals,
|
||||
};
|
||||
use crate::{
|
||||
epaint, vec2,
|
||||
widgets::{Button, ImageButton},
|
||||
Align2, Area, Color32, Frame, Key, LayerId, Layout, NumExt as _, Order, Stroke, Style,
|
||||
TextWrapMode, UiKind, WidgetText,
|
||||
TextWrapMode, UiKind, WidgetText, epaint, vec2,
|
||||
widgets::{Button, ImageButton},
|
||||
};
|
||||
use epaint::mutex::RwLock;
|
||||
use std::sync::Arc;
|
||||
|
||||
@@ -71,7 +71,8 @@ impl OperatingSystem {
|
||||
#[cfg(feature = "log")]
|
||||
log::warn!(
|
||||
"egui: Failed to guess operating system from User-Agent {:?}. Please file an issue at https://github.com/emilk/egui/issues",
|
||||
user_agent);
|
||||
user_agent
|
||||
);
|
||||
|
||||
Self::Unknown
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@ use std::sync::Arc;
|
||||
|
||||
use emath::GuiRounding as _;
|
||||
use epaint::{
|
||||
text::{Fonts, Galley, LayoutJob},
|
||||
CircleShape, ClippedShape, CornerRadius, PathStroke, RectShape, Shape, Stroke, StrokeKind,
|
||||
text::{Fonts, Galley, LayoutJob},
|
||||
};
|
||||
|
||||
use crate::{
|
||||
Color32, Context, FontId,
|
||||
emath::{Align2, Pos2, Rangef, Rect, Vec2},
|
||||
layers::{LayerId, PaintList, ShapeIdx},
|
||||
Color32, Context, FontId,
|
||||
};
|
||||
|
||||
/// Helper to paint shapes and text to a specific region on a specific layer.
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
use ahash::HashMap;
|
||||
|
||||
use crate::{id::IdSet, style, Align, Id, IdMap, LayerId, Rangef, Rect, Vec2, WidgetRects};
|
||||
use crate::{Align, Id, IdMap, LayerId, Rangef, Rect, Vec2, WidgetRects, id::IdSet, style};
|
||||
|
||||
#[cfg(debug_assertions)]
|
||||
use crate::{pos2, Align2, Color32, FontId, NumExt as _, Painter};
|
||||
use crate::{Align2, Color32, FontId, NumExt as _, Painter, pos2};
|
||||
|
||||
/// Reset at the start of each frame.
|
||||
#[derive(Clone, Debug, Default)]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::{grid, vec2, Layout, Painter, Pos2, Rect, Region, Vec2};
|
||||
use crate::{Layout, Painter, Pos2, Rect, Region, Vec2, grid, vec2};
|
||||
|
||||
#[cfg(debug_assertions)]
|
||||
use crate::{Align2, Color32, Stroke};
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
use std::{any::Any, sync::Arc};
|
||||
|
||||
use crate::{
|
||||
Context, CursorIcon, Id, LayerId, PointerButton, Popup, PopupKind, Sense, Tooltip, Ui,
|
||||
WidgetRect, WidgetText,
|
||||
emath::{Align, Pos2, Rect, Vec2},
|
||||
pass_state, Context, CursorIcon, Id, LayerId, PointerButton, Popup, PopupKind, Sense, Tooltip,
|
||||
Ui, WidgetRect, WidgetText,
|
||||
pass_state,
|
||||
};
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
#![allow(clippy::if_same_then_else)]
|
||||
|
||||
use emath::Align;
|
||||
use epaint::{text::FontTweak, CornerRadius, Shadow, Stroke};
|
||||
use epaint::{CornerRadius, Shadow, Stroke, text::FontTweak};
|
||||
use std::{collections::BTreeMap, ops::RangeInclusive, sync::Arc};
|
||||
|
||||
use crate::{
|
||||
ecolor::Color32,
|
||||
emath::{pos2, vec2, Rangef, Rect, Vec2},
|
||||
ComboBox, CursorIcon, FontFamily, FontId, Grid, Margin, Response, RichText, TextWrapMode,
|
||||
WidgetText,
|
||||
ecolor::Color32,
|
||||
emath::{Rangef, Rect, Vec2, pos2, vec2},
|
||||
};
|
||||
|
||||
/// How to format numbers in e.g. a [`crate::DragValue`].
|
||||
@@ -1557,8 +1557,8 @@ impl Default for Widgets {
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
use crate::{
|
||||
widgets::{reset_button, DragValue, Slider, Widget},
|
||||
Ui,
|
||||
widgets::{DragValue, Slider, Widget, reset_button},
|
||||
};
|
||||
|
||||
impl Style {
|
||||
|
||||
@@ -2,7 +2,7 @@ use emath::TSTransform;
|
||||
|
||||
use crate::{Context, Galley, Id};
|
||||
|
||||
use super::{text_cursor_state::is_word_char, CCursorRange};
|
||||
use super::{CCursorRange, text_cursor_state::is_word_char};
|
||||
|
||||
/// Update accesskit with the current text state.
|
||||
pub fn update_accesskit_for_text_widget(
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use epaint::{text::cursor::CCursor, Galley};
|
||||
use epaint::{Galley, text::cursor::CCursor};
|
||||
|
||||
use crate::{os::OperatingSystem, Event, Id, Key, Modifiers};
|
||||
use crate::{Event, Id, Key, Modifiers, os::OperatingSystem};
|
||||
|
||||
use super::text_cursor_state::{ccursor_next_word, ccursor_previous_word, slice_char_range};
|
||||
|
||||
|
||||
@@ -3,14 +3,14 @@ use std::sync::Arc;
|
||||
use emath::TSTransform;
|
||||
|
||||
use crate::{
|
||||
layers::ShapeIdx, text::CCursor, text_selection::CCursorRange, Context, CursorIcon, Event,
|
||||
Galley, Id, LayerId, Pos2, Rect, Response, Ui,
|
||||
Context, CursorIcon, Event, Galley, Id, LayerId, Pos2, Rect, Response, Ui, layers::ShapeIdx,
|
||||
text::CCursor, text_selection::CCursorRange,
|
||||
};
|
||||
|
||||
use super::{
|
||||
text_cursor_state::cursor_rect,
|
||||
visuals::{paint_text_selection, RowVertexIndices},
|
||||
TextCursorState,
|
||||
text_cursor_state::cursor_rect,
|
||||
visuals::{RowVertexIndices, paint_text_selection},
|
||||
};
|
||||
|
||||
/// Turn on to help debug this
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//! Text cursor changes/interaction, without modifying the text.
|
||||
|
||||
use epaint::text::{cursor::CCursor, Galley};
|
||||
use epaint::text::{Galley, cursor::CCursor};
|
||||
use unicode_segmentation::UnicodeSegmentation as _;
|
||||
|
||||
use crate::{epaint, NumExt as _, Rect, Response, Ui};
|
||||
use crate::{NumExt as _, Rect, Response, Ui, epaint};
|
||||
|
||||
use super::CCursorRange;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use std::sync::Arc;
|
||||
|
||||
use crate::{pos2, vec2, Galley, Painter, Rect, Ui, Visuals};
|
||||
use crate::{Galley, Painter, Rect, Ui, Visuals, pos2, vec2};
|
||||
|
||||
use super::CCursorRange;
|
||||
|
||||
|
||||
@@ -5,11 +5,15 @@ use emath::GuiRounding as _;
|
||||
use epaint::mutex::RwLock;
|
||||
use std::{any::Any, hash::Hash, sync::Arc};
|
||||
|
||||
use crate::close_tag::ClosableTag;
|
||||
use crate::containers::menu;
|
||||
#[cfg(debug_assertions)]
|
||||
use crate::Stroke;
|
||||
use crate::close_tag::ClosableTag;
|
||||
use crate::containers::menu;
|
||||
use crate::{
|
||||
Align, Color32, Context, CursorIcon, DragAndDrop, Id, InnerResponse, InputState, IntoAtoms,
|
||||
LayerId, Memory, Order, Painter, PlatformOutput, Pos2, Rangef, Rect, Response, Rgba, RichText,
|
||||
Sense, Style, TextStyle, TextWrapMode, UiBuilder, UiKind, UiStack, UiStackInfo, Vec2,
|
||||
WidgetRect, WidgetText,
|
||||
containers::{CollapsingHeader, CollapsingResponse, Frame},
|
||||
ecolor::Hsva,
|
||||
emath, epaint,
|
||||
@@ -22,13 +26,9 @@ use crate::{
|
||||
util::IdTypeMap,
|
||||
vec2, widgets,
|
||||
widgets::{
|
||||
color_picker, Button, Checkbox, DragValue, Hyperlink, Image, ImageSource, Label, Link,
|
||||
RadioButton, SelectableLabel, Separator, Spinner, TextEdit, Widget,
|
||||
Button, Checkbox, DragValue, Hyperlink, Image, ImageSource, Label, Link, RadioButton,
|
||||
SelectableLabel, Separator, Spinner, TextEdit, Widget, color_picker,
|
||||
},
|
||||
Align, Color32, Context, CursorIcon, DragAndDrop, Id, InnerResponse, InputState, IntoAtoms,
|
||||
LayerId, Memory, Order, Painter, PlatformOutput, Pos2, Rangef, Rect, Response, Rgba, RichText,
|
||||
Sense, Style, TextStyle, TextWrapMode, UiBuilder, UiKind, UiStack, UiStackInfo, Vec2,
|
||||
WidgetRect, WidgetText,
|
||||
};
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
use std::{hash::Hash, sync::Arc};
|
||||
|
||||
use crate::close_tag::ClosableTag;
|
||||
#[expect(unused_imports)] // Used for doclinks
|
||||
use crate::Ui;
|
||||
use crate::close_tag::ClosableTag;
|
||||
use crate::{Id, LayerId, Layout, Rect, Sense, Style, UiStackInfo};
|
||||
|
||||
/// Build a [`Ui`] as the child of another [`Ui`].
|
||||
|
||||
@@ -4,8 +4,8 @@ use std::fmt::Formatter;
|
||||
use std::{borrow::Cow, sync::Arc};
|
||||
|
||||
use crate::{
|
||||
text::{LayoutJob, TextWrapping},
|
||||
Align, Color32, FontFamily, FontSelection, Galley, Style, TextStyle, TextWrapMode, Ui, Visuals,
|
||||
text::{LayoutJob, TextWrapping},
|
||||
};
|
||||
|
||||
/// Text and optional style choices for it.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
epaint, pos2, Atom, AtomLayout, Atoms, Id, IntoAtoms, NumExt as _, Response, Sense, Shape, Ui,
|
||||
Vec2, Widget, WidgetInfo, WidgetType,
|
||||
Atom, AtomLayout, Atoms, Id, IntoAtoms, NumExt as _, Response, Sense, Shape, Ui, Vec2, Widget,
|
||||
WidgetInfo, WidgetType, epaint, pos2,
|
||||
};
|
||||
|
||||
// TODO(emilk): allow checkbox without a text label
|
||||
|
||||
@@ -2,12 +2,13 @@
|
||||
|
||||
use crate::util::fixed_cache::FixedCache;
|
||||
use crate::{
|
||||
epaint, lerp, remap_clamp, Context, DragValue, Id, Painter, Popup, PopupCloseBehavior,
|
||||
Response, Sense, Ui, Widget as _, WidgetInfo, WidgetType,
|
||||
Context, DragValue, Id, Painter, Popup, PopupCloseBehavior, Response, Sense, Ui, Widget as _,
|
||||
WidgetInfo, WidgetType, epaint, lerp, remap_clamp,
|
||||
};
|
||||
use epaint::{
|
||||
Mesh, Rect, Shape, Stroke, StrokeKind, Vec2,
|
||||
ecolor::{Color32, Hsva, HsvaGamma, Rgba},
|
||||
pos2, vec2, Mesh, Rect, Shape, Stroke, StrokeKind, Vec2,
|
||||
pos2, vec2,
|
||||
};
|
||||
|
||||
fn contrast_color(color: impl Into<Rgba>) -> Color32 {
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
use std::{cmp::Ordering, ops::RangeInclusive};
|
||||
|
||||
use crate::{
|
||||
emath, text, Button, CursorIcon, Id, Key, Modifiers, NumExt as _, Response, RichText, Sense,
|
||||
TextEdit, TextWrapMode, Ui, Widget, WidgetInfo, MINUS_CHAR_STR,
|
||||
Button, CursorIcon, Id, Key, MINUS_CHAR_STR, Modifiers, NumExt as _, Response, RichText, Sense,
|
||||
TextEdit, TextWrapMode, Ui, Widget, WidgetInfo, emath, text,
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
epaint, text_selection, CursorIcon, Label, Response, Sense, Stroke, Ui, Widget, WidgetInfo,
|
||||
WidgetText, WidgetType,
|
||||
CursorIcon, Label, Response, Sense, Stroke, Ui, Widget, WidgetInfo, WidgetText, WidgetType,
|
||||
epaint, text_selection,
|
||||
};
|
||||
|
||||
use self::text_selection::LabelSelectionState;
|
||||
|
||||
@@ -2,14 +2,15 @@ use std::{borrow::Cow, slice::Iter, sync::Arc, time::Duration};
|
||||
|
||||
use emath::{Align, Float as _, GuiRounding as _, NumExt as _, Rot2};
|
||||
use epaint::{
|
||||
text::{LayoutJob, TextFormat, TextWrapping},
|
||||
RectShape,
|
||||
text::{LayoutJob, TextFormat, TextWrapping},
|
||||
};
|
||||
|
||||
use crate::{
|
||||
load::{Bytes, SizeHint, SizedTexture, TextureLoadResult, TexturePoll},
|
||||
pos2, Color32, Context, CornerRadius, Id, Mesh, Painter, Rect, Response, Sense, Shape, Spinner,
|
||||
Color32, Context, CornerRadius, Id, Mesh, Painter, Rect, Response, Sense, Shape, Spinner,
|
||||
TextStyle, TextureOptions, Ui, Vec2, Widget, WidgetInfo, WidgetType,
|
||||
load::{Bytes, SizeHint, SizedTexture, TextureLoadResult, TexturePoll},
|
||||
pos2,
|
||||
};
|
||||
|
||||
/// A widget which displays an image.
|
||||
@@ -499,7 +500,7 @@ impl ImageSize {
|
||||
|
||||
let point_size = match fit {
|
||||
ImageFit::Original { scale } => {
|
||||
return SizeHint::Scale((pixels_per_point * scale).ord())
|
||||
return SizeHint::Scale((pixels_per_point * scale).ord());
|
||||
}
|
||||
ImageFit::Fraction(fract) => available_size * fract,
|
||||
ImageFit::Exact(size) => size,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
widgets, Color32, CornerRadius, Image, Rect, Response, Sense, Ui, Vec2, Widget, WidgetInfo,
|
||||
WidgetType,
|
||||
Color32, CornerRadius, Image, Rect, Response, Sense, Ui, Vec2, Widget, WidgetInfo, WidgetType,
|
||||
widgets,
|
||||
};
|
||||
|
||||
/// A clickable image within a frame.
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
use std::sync::Arc;
|
||||
|
||||
use crate::{
|
||||
epaint, pos2, text_selection::LabelSelectionState, Align, Direction, FontSelection, Galley,
|
||||
Pos2, Response, Sense, Stroke, TextWrapMode, Ui, Widget, WidgetInfo, WidgetText, WidgetType,
|
||||
Align, Direction, FontSelection, Galley, Pos2, Response, Sense, Stroke, TextWrapMode, Ui,
|
||||
Widget, WidgetInfo, WidgetText, WidgetType, epaint, pos2, text_selection::LabelSelectionState,
|
||||
};
|
||||
|
||||
/// Static text.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
//! * `ui.add(Label::new("Text").text_color(color::red));`
|
||||
//! * `if ui.add(Button::new("Click me")).clicked() { … }`
|
||||
|
||||
use crate::{epaint, Response, Ui};
|
||||
use crate::{Response, Ui, epaint};
|
||||
|
||||
mod button;
|
||||
mod checkbox;
|
||||
@@ -28,8 +28,8 @@ pub use self::{
|
||||
drag_value::DragValue,
|
||||
hyperlink::{Hyperlink, Link},
|
||||
image::{
|
||||
decode_animated_image_uri, has_gif_magic_header, has_webp_header, paint_texture_at,
|
||||
FrameDurations, Image, ImageFit, ImageOptions, ImageSize, ImageSource,
|
||||
decode_animated_image_uri, has_gif_magic_header, has_webp_header, paint_texture_at,
|
||||
},
|
||||
image_button::ImageButton,
|
||||
label::Label,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
lerp, vec2, Color32, CornerRadius, NumExt as _, Pos2, Rect, Response, Rgba, Sense, Shape,
|
||||
Stroke, TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, WidgetType,
|
||||
Color32, CornerRadius, NumExt as _, Pos2, Rect, Response, Rgba, Sense, Shape, Stroke,
|
||||
TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, WidgetType, lerp, vec2,
|
||||
};
|
||||
|
||||
enum ProgressBarText {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use crate::{
|
||||
epaint, Atom, AtomLayout, Atoms, Id, IntoAtoms, NumExt as _, Response, Sense, Ui, Vec2, Widget,
|
||||
WidgetInfo, WidgetType,
|
||||
Atom, AtomLayout, Atoms, Id, IntoAtoms, NumExt as _, Response, Sense, Ui, Vec2, Widget,
|
||||
WidgetInfo, WidgetType, epaint,
|
||||
};
|
||||
|
||||
/// One out of several alternatives, either selected or not.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::{vec2, Response, Sense, Ui, Vec2, Widget};
|
||||
use crate::{Response, Sense, Ui, Vec2, Widget, vec2};
|
||||
|
||||
/// A visual separator. A horizontal or vertical line (depending on [`crate::Layout`]).
|
||||
///
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
use std::ops::RangeInclusive;
|
||||
|
||||
use crate::{
|
||||
emath, epaint, lerp, pos2, remap, remap_clamp, style, style::HandleShape, vec2, Color32,
|
||||
DragValue, EventFilter, Key, Label, NumExt as _, Pos2, Rangef, Rect, Response, Sense,
|
||||
TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, MINUS_CHAR_STR,
|
||||
Color32, DragValue, EventFilter, Key, Label, MINUS_CHAR_STR, NumExt as _, Pos2, Rangef, Rect,
|
||||
Response, Sense, TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, emath,
|
||||
epaint, lerp, pos2, remap, remap_clamp, style, style::HandleShape, vec2,
|
||||
};
|
||||
|
||||
use super::drag_value::clamp_value_to_range;
|
||||
@@ -134,11 +134,7 @@ impl<'a> Slider<'a> {
|
||||
value.to_f64()
|
||||
});
|
||||
|
||||
if Num::INTEGRAL {
|
||||
slf.integer()
|
||||
} else {
|
||||
slf
|
||||
}
|
||||
if Num::INTEGRAL { slf.integer() } else { slf }
|
||||
}
|
||||
|
||||
pub fn from_get_set(
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use epaint::{emath::lerp, vec2, Color32, Pos2, Rect, Shape, Stroke};
|
||||
use epaint::{Color32, Pos2, Rect, Shape, Stroke, emath::lerp, vec2};
|
||||
|
||||
use crate::{Response, Sense, Ui, Widget, WidgetInfo, WidgetType};
|
||||
|
||||
|
||||
@@ -2,19 +2,19 @@ use std::sync::Arc;
|
||||
|
||||
use emath::{Rect, TSTransform};
|
||||
use epaint::{
|
||||
text::{cursor::CCursor, Galley, LayoutJob},
|
||||
StrokeKind,
|
||||
text::{Galley, LayoutJob, cursor::CCursor},
|
||||
};
|
||||
|
||||
use crate::{
|
||||
epaint,
|
||||
Align, Align2, Color32, Context, CursorIcon, Event, EventFilter, FontSelection, Id, ImeEvent,
|
||||
Key, KeyboardShortcut, Margin, Modifiers, NumExt as _, Response, Sense, Shape, TextBuffer,
|
||||
TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, WidgetWithState, epaint,
|
||||
os::OperatingSystem,
|
||||
output::OutputEvent,
|
||||
response, text_selection,
|
||||
text_selection::{text_cursor_state::cursor_rect, visuals::paint_text_selection, CCursorRange},
|
||||
vec2, Align, Align2, Color32, Context, CursorIcon, Event, EventFilter, FontSelection, Id,
|
||||
ImeEvent, Key, KeyboardShortcut, Margin, Modifiers, NumExt as _, Response, Sense, Shape,
|
||||
TextBuffer, TextStyle, TextWrapMode, Ui, Vec2, Widget, WidgetInfo, WidgetText, WidgetWithState,
|
||||
text_selection::{CCursorRange, text_cursor_state::cursor_rect, visuals::paint_text_selection},
|
||||
vec2,
|
||||
};
|
||||
|
||||
use super::{TextEditOutput, TextEditState};
|
||||
|
||||
@@ -3,8 +3,8 @@ use std::sync::Arc;
|
||||
use crate::mutex::Mutex;
|
||||
|
||||
use crate::{
|
||||
text_selection::{CCursorRange, TextCursorState},
|
||||
Context, Id,
|
||||
text_selection::{CCursorRange, TextCursorState},
|
||||
};
|
||||
|
||||
pub type TextEditUndoer = crate::util::undoer::Undoer<(CCursorRange, String)>;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
use std::{borrow::Cow, ops::Range};
|
||||
|
||||
use epaint::{
|
||||
text::{cursor::CCursor, TAB_SIZE},
|
||||
Galley,
|
||||
text::{TAB_SIZE, cursor::CCursor},
|
||||
};
|
||||
|
||||
use crate::{
|
||||
|
||||
Reference in New Issue
Block a user