Struct egui::text_selection::LabelSelectionState
source · pub struct LabelSelectionState { /* private fields */ }
Expand description
Handles text selection in labels (NOT in crate::TextEdit
)s.
One state for all labels, because we only support text selection in one label at a time.
Implementations§
source§impl LabelSelectionState
impl LabelSelectionState
pub fn load(ctx: &Context) -> Self
pub fn store(self, ctx: &Context)
pub fn has_selection(&self) -> bool
pub fn clear_selection(&mut self)
sourcepub fn label_text_selection(
ui: &Ui,
response: &Response,
galley_pos: Pos2,
galley: &Galley
)
pub fn label_text_selection( ui: &Ui, response: &Response, galley_pos: Pos2, galley: &Galley )
Handle text selection state for a label or similar widget.
Make sure the widget senses clicks and drags.
This should be called after painting the text, because this will also paint the text cursor/selection on top.
Trait Implementations§
source§impl Clone for LabelSelectionState
impl Clone for LabelSelectionState
source§fn clone(&self) -> LabelSelectionState
fn clone(&self) -> LabelSelectionState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LabelSelectionState
impl Debug for LabelSelectionState
Auto Trait Implementations§
impl RefUnwindSafe for LabelSelectionState
impl Send for LabelSelectionState
impl Sync for LabelSelectionState
impl Unpin for LabelSelectionState
impl UnwindSafe for LabelSelectionState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more