pub unsafe trait WidgetExt {
Show 80 methods
// Required methods
fn set_label(&mut self, title: &str);
fn unset_label(&mut self);
fn redraw(&mut self);
fn show(&mut self);
fn hide(&mut self);
fn x(&self) -> i32;
fn y(&self) -> i32;
fn w(&self) -> i32;
fn h(&self) -> i32;
fn label(&self) -> Option<String>;
fn measure_label(&self) -> (i32, i32);
fn as_widget_ptr(&self) -> *mut Fl_Widget;
fn inside<W: WidgetExt>(&self, wid: &W) -> bool
where Self: Sized;
fn get_type<T: WidgetType>(&self) -> T
where Self: Sized;
fn set_type<T: WidgetType>(&mut self, typ: T)
where Self: Sized;
fn set_image<I: ImageExt>(&mut self, image: Option<I>)
where Self: Sized;
fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)
where Self: Sized;
fn image(&self) -> Option<Box<dyn ImageExt>>
where Self: Sized;
fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
where Self: Sized;
fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)
where Self: Sized;
fn deimage(&self) -> Option<Box<dyn ImageExt>>
where Self: Sized;
fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
where Self: Sized;
fn emit<T: 'static + Clone + Send + Sync>(
&mut self,
sender: Sender<T>,
msg: T,
)
where Self: Sized;
fn activate(&mut self);
fn deactivate(&mut self);
fn redraw_label(&mut self);
fn resize(&mut self, x: i32, y: i32, width: i32, height: i32);
fn tooltip(&self) -> Option<String>;
fn set_tooltip(&mut self, txt: &str);
fn color(&self) -> Color;
fn set_color(&mut self, color: Color);
fn label_color(&self) -> Color;
fn set_label_color(&mut self, color: Color);
fn label_font(&self) -> Font;
fn set_label_font(&mut self, font: Font);
fn label_size(&self) -> i32;
fn set_label_size(&mut self, sz: i32);
fn label_type(&self) -> LabelType;
fn set_label_type(&mut self, typ: LabelType);
fn frame(&self) -> FrameType;
fn set_frame(&mut self, typ: FrameType);
fn changed(&self) -> bool;
fn set_changed(&mut self);
fn clear_changed(&mut self);
fn align(&self) -> Align;
fn set_align(&mut self, align: Align);
fn parent(&self) -> Option<Group>;
fn selection_color(&self) -> Color;
fn set_selection_color(&mut self, color: Color);
fn do_callback(&mut self);
fn window(&self) -> Option<Box<dyn WindowExt>>;
fn top_window(&self) -> Option<Box<dyn WindowExt>>;
fn takes_events(&self) -> bool;
fn take_focus(&mut self) -> Result<(), FltkError>;
fn set_visible_focus(&mut self);
fn clear_visible_focus(&mut self);
fn visible_focus(&mut self, v: bool);
fn has_visible_focus(&self) -> bool;
fn has_focus(&self) -> bool;
fn was_deleted(&self) -> bool;
fn damage(&self) -> bool;
fn set_damage(&mut self, flag: bool);
fn damage_type(&self) -> Damage;
fn set_damage_type(&mut self, mask: Damage);
fn set_damage_area(&mut self, mask: Damage, x: i32, y: i32, w: i32, h: i32);
fn clear_damage(&mut self);
fn set_when(&mut self, trigger: When);
fn when(&self) -> When;
fn as_window(&self) -> Option<Box<dyn WindowExt>>;
fn as_group(&self) -> Option<Group>;
unsafe fn as_widget<W: WidgetBase>(&self) -> W
where Self: Sized;
fn visible(&self) -> bool;
fn visible_r(&self) -> bool;
fn is_same<W: WidgetExt>(&self, other: &W) -> bool
where Self: Sized;
fn active(&self) -> bool;
fn active_r(&self) -> bool;
fn widget_resize(&mut self, x: i32, y: i32, w: i32, h: i32);
fn handle_event(&mut self, event: Event) -> bool;
// Provided methods
fn as_base_widget(&self) -> Widget
where Self: Sized { ... }
fn is_derived(&self) -> bool { ... }
}
Expand description
Defines the methods implemented by all widgets
For multithreaded usage, see the widget
module documentation’s note
§Safety
fltk-rs traits depend on some FLTK internal code
§Warning
fltk-rs traits are non-exhaustive,
to avoid future breakage if you try to implement them manually,
use the Deref and DerefMut
pattern or the widget_extends!
macro
Required Methods§
Sourcefn set_label(&mut self, title: &str)
fn set_label(&mut self, title: &str)
Sets the widget’s label.
labels support special symbols preceded by an @
sign.
and for the associated formatting.
Sourcefn unset_label(&mut self)
fn unset_label(&mut self)
Unset a widget’s label
Sourcefn measure_label(&self) -> (i32, i32)
fn measure_label(&self) -> (i32, i32)
Measures the label’s width and height
Sourcefn as_widget_ptr(&self) -> *mut Fl_Widget
fn as_widget_ptr(&self) -> *mut Fl_Widget
transforms a widget to a base Fl_Widget
, for internal use
Sourcefn inside<W: WidgetExt>(&self, wid: &W) -> boolwhere
Self: Sized,
fn inside<W: WidgetExt>(&self, wid: &W) -> boolwhere
Self: Sized,
Checks whether the self widget is inside another widget
Sourcefn get_type<T: WidgetType>(&self) -> Twhere
Self: Sized,
fn get_type<T: WidgetType>(&self) -> Twhere
Self: Sized,
Returns the widget type when applicable
Sourcefn set_type<T: WidgetType>(&mut self, typ: T)where
Self: Sized,
fn set_type<T: WidgetType>(&mut self, typ: T)where
Self: Sized,
Sets the widget type
Sourcefn set_image<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
fn set_image<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
Sets the image of the widget
Sourcefn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
Sets the image of the widget scaled to the widget’s size
Sourcefn image(&self) -> Option<Box<dyn ImageExt>>where
Self: Sized,
fn image(&self) -> Option<Box<dyn ImageExt>>where
Self: Sized,
Gets the image associated with the widget
Sourcefn set_deimage<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
Sets the deactivated image of the widget
Sourcefn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)where
Self: Sized,
Sets the deactivated image of the widget scaled to the widget’s size
Sourcefn deimage(&self) -> Option<Box<dyn ImageExt>>where
Self: Sized,
fn deimage(&self) -> Option<Box<dyn ImageExt>>where
Self: Sized,
Gets the deactivated image associated with the widget
Sourcefn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)where
Self: Sized,
fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)where
Self: Sized,
Sets the callback when the widget is triggered (clicks for example) takes the widget as a closure argument
Sourcefn emit<T: 'static + Clone + Send + Sync>(&mut self, sender: Sender<T>, msg: T)where
Self: Sized,
fn emit<T: 'static + Clone + Send + Sync>(&mut self, sender: Sender<T>, msg: T)where
Self: Sized,
Emits a message on callback using a sender
Sourcefn deactivate(&mut self)
fn deactivate(&mut self)
Deactivates the widget
Sourcefn redraw_label(&mut self)
fn redraw_label(&mut self)
Redraws the label of the widget
Sourcefn resize(&mut self, x: i32, y: i32, width: i32, height: i32)
fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)
Resizes and/or moves the widget, takes x, y, width and height
Sourcefn set_tooltip(&mut self, txt: &str)
fn set_tooltip(&mut self, txt: &str)
Sets the tooltip text
Sourcefn label_color(&self) -> Color
fn label_color(&self) -> Color
Returns the widget label’s color
Sourcefn set_label_color(&mut self, color: Color)
fn set_label_color(&mut self, color: Color)
Sets the widget label’s color
Sourcefn label_font(&self) -> Font
fn label_font(&self) -> Font
Returns the widget label’s font
Sourcefn set_label_font(&mut self, font: Font)
fn set_label_font(&mut self, font: Font)
Sets the widget label’s font
Sourcefn label_size(&self) -> i32
fn label_size(&self) -> i32
Returns the widget label’s size
Sourcefn set_label_size(&mut self, sz: i32)
fn set_label_size(&mut self, sz: i32)
Sets the widget label’s size
Sourcefn label_type(&self) -> LabelType
fn label_type(&self) -> LabelType
Returns the widget label’s type
Sourcefn set_label_type(&mut self, typ: LabelType)
fn set_label_type(&mut self, typ: LabelType)
Sets the widget label’s type
Sourcefn set_changed(&mut self)
fn set_changed(&mut self)
Mark the widget as changed
Sourcefn clear_changed(&mut self)
fn clear_changed(&mut self)
Clears the changed status of the widget
Sourcefn selection_color(&self) -> Color
fn selection_color(&self) -> Color
Gets the selection color of the widget
Sourcefn set_selection_color(&mut self, color: Color)
fn set_selection_color(&mut self, color: Color)
Sets the selection color of the widget
Sourcefn do_callback(&mut self)
fn do_callback(&mut self)
Runs the already registered callback
Sourcefn top_window(&self) -> Option<Box<dyn WindowExt>>
fn top_window(&self) -> Option<Box<dyn WindowExt>>
Returns the topmost window holding the widget
Sourcefn takes_events(&self) -> bool
fn takes_events(&self) -> bool
Checks whether a widget is capable of taking events
Sourcefn take_focus(&mut self) -> Result<(), FltkError>
fn take_focus(&mut self) -> Result<(), FltkError>
Sourcefn set_visible_focus(&mut self)
fn set_visible_focus(&mut self)
Set the widget to have visible focus
Sourcefn clear_visible_focus(&mut self)
fn clear_visible_focus(&mut self)
Clear visible focus
Sourcefn visible_focus(&mut self, v: bool)
fn visible_focus(&mut self, v: bool)
Set the visible focus using a flag
Sourcefn has_visible_focus(&self) -> bool
fn has_visible_focus(&self) -> bool
Return whether the widget has visible focus
Sourcefn was_deleted(&self) -> bool
fn was_deleted(&self) -> bool
Check if a widget was deleted
Sourcefn set_damage(&mut self, flag: bool)
fn set_damage(&mut self, flag: bool)
Signal the widget as damaged and it should be redrawn in the next event loop cycle
Sourcefn damage_type(&self) -> Damage
fn damage_type(&self) -> Damage
Return the damage mask
Sourcefn set_damage_type(&mut self, mask: Damage)
fn set_damage_type(&mut self, mask: Damage)
Signal the type of damage a widget received
Sourcefn set_damage_area(&mut self, mask: Damage, x: i32, y: i32, w: i32, h: i32)
fn set_damage_area(&mut self, mask: Damage, x: i32, y: i32, w: i32, h: i32)
Signal damage for an area inside the widget
Sourcefn clear_damage(&mut self)
fn clear_damage(&mut self)
Clear the damaged flag
Sourcefn set_when(&mut self, trigger: When)
fn set_when(&mut self, trigger: When)
Sets the default callback trigger for a widget, equivalent to when()
Sourcefn as_window(&self) -> Option<Box<dyn WindowExt>>
fn as_window(&self) -> Option<Box<dyn WindowExt>>
Return the widget as a window if it’s a window
Sourceunsafe fn as_widget<W: WidgetBase>(&self) -> Wwhere
Self: Sized,
unsafe fn as_widget<W: WidgetBase>(&self) -> Wwhere
Self: Sized,
Upcast a WidgetExt
to some widget type
§Safety
Allows for potentially unsafe casts between incompatible widget types
Sourcefn visible_r(&self) -> bool
fn visible_r(&self) -> bool
Returns whether a widget or any of its parents are visible (recursively)
Sourcefn is_same<W: WidgetExt>(&self, other: &W) -> boolwhere
Self: Sized,
fn is_same<W: WidgetExt>(&self, other: &W) -> boolwhere
Self: Sized,
Return whether two widgets object point to the same widget
Sourcefn active_r(&self) -> bool
fn active_r(&self) -> bool
Returns whether a widget or any of its parents are active (recursively)
Sourcefn widget_resize(&mut self, x: i32, y: i32, w: i32, h: i32)
fn widget_resize(&mut self, x: i32, y: i32, w: i32, h: i32)
Does a simple resize ignoring class-specific resize functionality
Sourcefn handle_event(&mut self, event: Event) -> bool
fn handle_event(&mut self, event: Event) -> bool
Handle a specific event
Provided Methods§
Sourcefn as_base_widget(&self) -> Widgetwhere
Self: Sized,
fn as_base_widget(&self) -> Widgetwhere
Self: Sized,
Upcast a WidgetExt
to a Widget
Sourcefn is_derived(&self) -> bool
fn is_derived(&self) -> bool
Check whether a widget is derived