[][src]Trait fltk::prelude::WidgetExt

pub unsafe trait WidgetExt {
    pub fn set_pos(&mut self, x: i32, y: i32);
pub fn set_size(&mut self, width: i32, height: i32);
pub fn set_label(&mut self, title: &str);
pub fn redraw(&mut self);
pub fn show(&mut self);
pub fn hide(&mut self);
pub fn x(&self) -> i32;
pub fn y(&self) -> i32;
pub fn width(&self) -> i32;
pub fn height(&self) -> i32;
pub fn label(&self) -> String;
pub fn measure_label(&self) -> (i32, i32);
pub unsafe fn as_widget_ptr(&self) -> *mut Fl_Widget;
pub fn with_pos(self, x: i32, y: i32) -> Self
    where
        Self: Sized
;
pub fn with_size(self, width: i32, height: i32) -> Self
    where
        Self: Sized
;
pub fn with_label(self, title: &str) -> Self
    where
        Self: Sized
;
pub fn with_align(self, align: Align) -> Self
    where
        Self: Sized
;
pub fn below_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self
    where
        Self: Sized
;
pub fn above_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self
    where
        Self: Sized
;
pub fn right_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self
    where
        Self: Sized
;
pub fn left_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self
    where
        Self: Sized
;
pub fn center_of<W: WidgetExt>(self, w: &W) -> Self
    where
        Self: Sized
;
pub fn size_of<W: WidgetExt>(self, w: &W) -> Self
    where
        Self: Sized
;
pub fn inside<W: WidgetExt>(&self, wid: &W) -> bool
    where
        Self: Sized
;
pub fn get_type<T: WidgetType>(&self) -> T
    where
        Self: Sized
;
pub fn set_type<T: WidgetType>(&mut self, typ: T)
    where
        Self: Sized
;
pub fn set_image<I: ImageExt>(&mut self, image: Option<I>)
    where
        Self: Sized
;
pub fn image(&self) -> Option<Box<dyn ImageExt>>
    where
        Self: Sized
;
pub fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
    where
        Self: Sized
;
pub fn deimage(&self) -> Option<Box<dyn ImageExt>>
    where
        Self: Sized
;
pub fn set_callback<F: FnMut() + 'static>(&mut self, cb: F)
    where
        Self: Sized
;
pub fn set_callback2<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
    where
        Self: Sized
;
pub fn emit<T: 'static + Copy + Send + Sync>(
        &mut self,
        sender: Sender<T>,
        msg: T
    )
    where
        Self: Sized
;
pub fn activate(&mut self);
pub fn deactivate(&mut self);
pub fn redraw_label(&mut self);
pub fn resize(&mut self, x: i32, y: i32, width: i32, height: i32);
pub fn tooltip(&self) -> Option<String>;
pub fn set_tooltip(&mut self, txt: &str);
pub fn color(&self) -> Color;
pub fn set_color(&mut self, color: Color);
pub fn label_color(&self) -> Color;
pub fn set_label_color(&mut self, color: Color);
pub fn label_font(&self) -> Font;
pub fn set_label_font(&mut self, font: Font);
pub fn label_size(&self) -> i32;
pub fn set_label_size(&mut self, sz: i32);
pub fn label_type(&self) -> LabelType;
pub fn set_label_type(&mut self, typ: LabelType);
pub fn frame(&self) -> FrameType;
pub fn set_frame(&mut self, typ: FrameType);
pub fn changed(&self) -> bool;
pub fn set_changed(&mut self);
pub fn clear_changed(&mut self);
pub fn align(&self) -> Align;
pub fn set_align(&mut self, align: Align);
pub fn parent(&self) -> Option<Box<dyn GroupExt>>;
pub fn selection_color(&mut self) -> Color;
pub fn set_selection_color(&mut self, color: Color);
pub fn do_callback(&mut self);
pub fn window(&self) -> Option<Box<dyn WindowExt>>;
pub fn top_window(&self) -> Option<Box<dyn WindowExt>>;
pub fn takes_events(&self) -> bool;
pub fn take_focus(&mut self) -> Result<(), FltkError>;
pub fn set_visible_focus(&mut self);
pub fn clear_visible_focus(&mut self);
pub fn visible_focus(&mut self, v: bool);
pub fn has_visible_focus(&mut self) -> bool;
pub fn was_deleted(&self) -> bool;
pub fn delete(wid: Self)
    where
        Self: Sized
;
pub fn damage(&self) -> bool;
pub fn set_damage(&mut self, flag: bool);
pub fn clear_damage(&mut self);
pub fn set_trigger(&mut self, trigger: CallbackTrigger);
pub fn trigger(&self) -> u32;
pub fn as_window(&self) -> Option<Box<dyn WindowExt>>;
pub fn as_group(&self) -> Option<Box<dyn GroupExt>>;
pub unsafe fn user_data(&self) -> Option<Box<dyn FnMut()>>;
pub fn into_widget<W: WidgetBase>(&self) -> W
    where
        Self: Sized
; }

Defines the methods implemented by all widgets

Required methods

pub fn set_pos(&mut self, x: i32, y: i32)[src]

Set to position x, y

pub fn set_size(&mut self, width: i32, height: i32)[src]

Set to dimensions width and height

pub fn set_label(&mut self, title: &str)[src]

Sets the widget's label

pub fn redraw(&mut self)[src]

Redraws a widget, necessary for resizing and changing positions

pub fn show(&mut self)[src]

Shows the widget

pub fn hide(&mut self)[src]

Hides the widget

pub fn x(&self) -> i32[src]

Returns the x coordinate of the widget

pub fn y(&self) -> i32[src]

Returns the y coordinate of the widget

pub fn width(&self) -> i32[src]

Returns the width of the widget

pub fn height(&self) -> i32[src]

Returns the height of the widget

pub fn label(&self) -> String[src]

Returns the label of the widget

pub fn measure_label(&self) -> (i32, i32)[src]

Measures the label's width and height

pub unsafe fn as_widget_ptr(&self) -> *mut Fl_Widget[src]

transforms a widget to a base Fl_Widget, for internal use

Safety

Can return multiple mutable pointers to the same widget

pub fn with_pos(self, x: i32, y: i32) -> Self where
    Self: Sized
[src]

Initialize to position x, y, (should only be called on initialization)

pub fn with_size(self, width: i32, height: i32) -> Self where
    Self: Sized
[src]

Initialilze to dimensions width and height, (should only be called on initialization)

pub fn with_label(self, title: &str) -> Self where
    Self: Sized
[src]

Initialize with label/title, (should only be called on initialization)

pub fn with_align(self, align: Align) -> Self where
    Self: Sized
[src]

Sets the initial alignment of the widget, (should only be called on initialization)

pub fn below_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self where
    Self: Sized
[src]

Positions the widget below w, the size of w should be known

pub fn above_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self where
    Self: Sized
[src]

Positions the widget above w, the size of w should be known

pub fn right_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self where
    Self: Sized
[src]

Positions the widget to the right of w, the size of w should be known

pub fn left_of<W: WidgetExt>(self, w: &W, padding: i32) -> Self where
    Self: Sized
[src]

Positions the widget to the left of w, the size of w should be known

pub fn center_of<W: WidgetExt>(self, w: &W) -> Self where
    Self: Sized
[src]

Positions the widget to the center of w, the size of w should be known

pub fn size_of<W: WidgetExt>(self, w: &W) -> Self where
    Self: Sized
[src]

Takes the size of w, the size of w should be known

pub fn inside<W: WidgetExt>(&self, wid: &W) -> bool where
    Self: Sized
[src]

Checks whether the self widget is inside another widget

pub fn get_type<T: WidgetType>(&self) -> T where
    Self: Sized
[src]

Returns the widget type when applicable

pub fn set_type<T: WidgetType>(&mut self, typ: T) where
    Self: Sized
[src]

Sets the widget type

pub fn set_image<I: ImageExt>(&mut self, image: Option<I>) where
    Self: Sized
[src]

Sets the image of the widget

pub fn image(&self) -> Option<Box<dyn ImageExt>> where
    Self: Sized
[src]

Gets the image associated with the widget

pub fn set_deimage<I: ImageExt>(&mut self, image: Option<I>) where
    Self: Sized
[src]

Sets the image of the widget

pub fn deimage(&self) -> Option<Box<dyn ImageExt>> where
    Self: Sized
[src]

Gets the image associated with the widget

pub fn set_callback<F: FnMut() + 'static>(&mut self, cb: F) where
    Self: Sized
[src]

Sets the callback when the widget is triggered (clicks for example)

pub fn set_callback2<F: FnMut(&mut Self) + 'static>(&mut self, cb: F) where
    Self: Sized
[src]

Sets the callback when the widget is triggered (clicks for example) takes the widget as a closure argument

pub fn emit<T: 'static + Copy + Send + Sync>(
    &mut self,
    sender: Sender<T>,
    msg: T
) where
    Self: Sized
[src]

Emits a message on callback using a sender

pub fn activate(&mut self)[src]

Activates the widget

pub fn deactivate(&mut self)[src]

Deactivates the widget

pub fn redraw_label(&mut self)[src]

Redraws the label of the widget

pub fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)[src]

Resizes and/or moves the widget, takes x, y, width and height

pub fn tooltip(&self) -> Option<String>[src]

Returns the tooltip text

pub fn set_tooltip(&mut self, txt: &str)[src]

Sets the tooltip text

pub fn color(&self) -> Color[src]

Returns the widget color

pub fn set_color(&mut self, color: Color)[src]

Sets the widget's color

pub fn label_color(&self) -> Color[src]

Returns the widget label's color

pub fn set_label_color(&mut self, color: Color)[src]

Sets the widget label's color

pub fn label_font(&self) -> Font[src]

Returns the widget label's font

pub fn set_label_font(&mut self, font: Font)[src]

Sets the widget label's font

pub fn label_size(&self) -> i32[src]

Returns the widget label's size

pub fn set_label_size(&mut self, sz: i32)[src]

Sets the widget label's size

pub fn label_type(&self) -> LabelType[src]

Returns the widget label's type

pub fn set_label_type(&mut self, typ: LabelType)[src]

Sets the widget label's type

pub fn frame(&self) -> FrameType[src]

Returns the widget's frame type

pub fn set_frame(&mut self, typ: FrameType)[src]

Sets the widget's frame type

pub fn changed(&self) -> bool[src]

Returns whether the widget was changed

pub fn set_changed(&mut self)[src]

Mark the widget as changed

pub fn clear_changed(&mut self)[src]

Clears the changed status of the widget

pub fn align(&self) -> Align[src]

Returns the alignment of the widget

pub fn set_align(&mut self, align: Align)[src]

Sets the alignment of the widget

pub fn parent(&self) -> Option<Box<dyn GroupExt>>[src]

Returns the parent of the widget

pub fn selection_color(&mut self) -> Color[src]

Gets the selection color of the widget

pub fn set_selection_color(&mut self, color: Color)[src]

Sets the selection color of the widget

pub fn do_callback(&mut self)[src]

Runs the already registered callback

pub fn window(&self) -> Option<Box<dyn WindowExt>>[src]

Returns the direct window holding the widget

pub fn top_window(&self) -> Option<Box<dyn WindowExt>>[src]

Returns the topmost window holding the widget

pub fn takes_events(&self) -> bool[src]

Checks whether a widget is capable of taking events

pub fn take_focus(&mut self) -> Result<(), FltkError>[src]

Make the widget take focus

pub fn set_visible_focus(&mut self)[src]

Set the widget to have visible focus

pub fn clear_visible_focus(&mut self)[src]

Clear visible focus

pub fn visible_focus(&mut self, v: bool)[src]

Set the visible focus using a flag

pub fn has_visible_focus(&mut self) -> bool[src]

Return whether the widget has visible focus

pub fn was_deleted(&self) -> bool[src]

Check if a widget was deleted

pub fn delete(wid: Self) where
    Self: Sized
[src]

Deletes widgets and their children.

pub fn damage(&self) -> bool[src]

Return whether the widget was damaged

pub fn set_damage(&mut self, flag: bool)[src]

Signal the widget as damaged and it should be redrawn in the next event loop cycle

pub fn clear_damage(&mut self)[src]

Clear the damaged flag

pub fn set_trigger(&mut self, trigger: CallbackTrigger)[src]

Sets the default callback trigger for a widget

pub fn trigger(&self) -> u32[src]

Return the callback trigger

pub fn as_window(&self) -> Option<Box<dyn WindowExt>>[src]

Return the widget as a window if it's a window

pub fn as_group(&self) -> Option<Box<dyn GroupExt>>[src]

Return the widget as a group widget if it's a group widget

pub unsafe fn user_data(&self) -> Option<Box<dyn FnMut()>>[src]

INTERNAL: Retakes ownership of the user callback data

Safety

Can return multiple mutable references to the user_data

pub fn into_widget<W: WidgetBase>(&self) -> W where
    Self: Sized
[src]

Upcast a WidgetExt to a Widget

Loading content...

Implementors

impl WidgetExt for Browser[src]

impl WidgetExt for FileBrowser[src]

impl WidgetExt for HoldBrowser[src]

impl WidgetExt for MultiBrowser[src]

impl WidgetExt for SelectBrowser[src]

impl WidgetExt for Button[src]

impl WidgetExt for CheckButton[src]

impl WidgetExt for LightButton[src]

impl WidgetExt for RadioButton[src]

impl WidgetExt for RadioLightButton[src]

impl WidgetExt for RadioRoundButton[src]

impl WidgetExt for RepeatButton[src]

impl WidgetExt for ReturnButton[src]

impl WidgetExt for RoundButton[src]

impl WidgetExt for ToggleButton[src]

impl WidgetExt for Frame[src]

impl WidgetExt for ColorChooser[src]

impl WidgetExt for Group[src]

impl WidgetExt for Pack[src]

impl WidgetExt for Scroll[src]

impl WidgetExt for Tabs[src]

impl WidgetExt for Tile[src]

impl WidgetExt for Wizard[src]

impl WidgetExt for FileInput[src]

impl WidgetExt for FloatInput[src]

impl WidgetExt for Input[src]

impl WidgetExt for IntInput[src]

impl WidgetExt for MultilineInput[src]

impl WidgetExt for SecretInput[src]

impl WidgetExt for Choice[src]

impl WidgetExt for MenuBar[src]

impl WidgetExt for MenuButton[src]

impl WidgetExt for SysMenuBar[src]

impl WidgetExt for Chart[src]

impl WidgetExt for Clock[src]

impl WidgetExt for Progress[src]

impl WidgetExt for Spinner[src]

impl WidgetExt for MultilineOutput[src]

impl WidgetExt for Output[src]

impl WidgetExt for Table[src]

impl WidgetExt for TableRow[src]

impl WidgetExt for SimpleTerminal[src]

impl WidgetExt for TextDisplay[src]

impl WidgetExt for TextEditor[src]

impl WidgetExt for Tree[src]

impl WidgetExt for Adjuster[src]

impl WidgetExt for Counter[src]

impl WidgetExt for Dial[src]

impl WidgetExt for FillDial[src]

impl WidgetExt for FillSlider[src]

impl WidgetExt for HorFillSlider[src]

impl WidgetExt for HorNiceSlider[src]

impl WidgetExt for HorSlider[src]

impl WidgetExt for HorValueSlider[src]

impl WidgetExt for LineDial[src]

impl WidgetExt for NiceSlider[src]

impl WidgetExt for Roller[src]

impl WidgetExt for Scrollbar[src]

impl WidgetExt for Slider[src]

impl WidgetExt for ValueInput[src]

impl WidgetExt for ValueOutput[src]

impl WidgetExt for ValueSlider[src]

impl WidgetExt for Widget[src]

impl WidgetExt for DoubleWindow[src]

impl WidgetExt for MenuWindow[src]

impl WidgetExt for SingleWindow[src]

Loading content...