Struct Group

pub struct Group { /* private fields */ }
Available on crate feature dep_fltk only.
Expand description

Creates a group widget

Implementations§

§

impl Group

pub fn current() -> Group

👎Deprecated since 1.2.18: please use try_current instead

Get the current group

pub fn try_current() -> Option<Group>

Tries to get the current group

pub fn set_current(grp: Option<&impl GroupExt>)

Sets the current GroupExt widget which will take children

Trait Implementations§

§

impl Clone for Group

§

fn clone(&self) -> Group

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for Group

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for Group

§

fn default() -> Group

Returns the “default value” for a type. Read more
§

impl GroupExt for Group

§

fn begin(&self)

Begins a group, used for widgets implementing the group trait
§

fn end(&self)

Ends a group, used for widgets implementing the group trait
§

fn clear(&mut self)

Clear a group from all widgets
§

fn children(&self) -> i32

Return the number of children in a group
§

fn child(&self, idx: i32) -> Option<Widget>

Return child widget by index
§

fn find<W>(&self, widget: &W) -> i32
where W: WidgetExt,

Find a widget within a group and return its index
§

fn add<W>(&mut self, widget: &W)
where W: WidgetExt,

Add a widget to a group
§

fn insert<W>(&mut self, widget: &W, index: i32)
where W: WidgetExt,

Insert a widget to a group at a certain index
§

fn remove<W>(&mut self, widget: &W)
where W: WidgetExt,

Remove a widget from a group, but does not delete it
§

fn remove_by_index(&mut self, idx: i32)

Remove a child widget by its index
§

fn resizable<W>(&self, widget: &W)
where W: WidgetExt,

The resizable widget defines both the resizing frame and the resizing behavior of the group and its children.
§

fn make_resizable(&mut self, val: bool)

Make the group itself resizable, should be called before the widget is shown
§

fn add_resizable<W>(&mut self, widget: &W)
where W: WidgetExt,

Adds a widget to the group and makes it the resizable widget
§

fn set_clip_children(&mut self, flag: bool)

Clips children outside the group boundaries
§

fn clip_children(&self) -> bool

Get whether clip_children is set
§

fn draw_child<W>(&self, w: &mut W)
where W: WidgetExt,

Draw a child widget, the call should be in a WidgetBase::draw method
§

fn update_child<W>(&self, w: &mut W)
where W: WidgetExt,

Update a child widget, the call should be in a WidgetBase::draw method
§

fn draw_outside_label<W>(&self, w: &mut W)
where W: WidgetExt,

Draw the outside label, the call should be in a WidgetBase::draw method
§

fn draw_children(&mut self)

Draw children, the call should be in a WidgetBase::draw method
§

fn init_sizes(&mut self)

Resets the internal array of widget sizes and positions
§

fn bounds(&self) -> Vec<(i32, i32, i32, i32)>

Get the bounds of all children widgets (left, upper, right, bottom)
§

unsafe fn into_group(&self) -> Group

Converts a widget implementing GroupExt into a Group widget Read more
§

impl IntoIterator for Group

§

type Item = Widget

The type of the elements being iterated over.
§

type IntoIter = IntoIter<<Group as IntoIterator>::Item>

Which kind of iterator are we turning this into?
§

fn into_iter(self) -> <Group as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl PartialEq for Group

§

fn eq(&self, other: &Group) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl WidgetBase for Group

§

fn new<'a, T>(x: i32, y: i32, width: i32, height: i32, title: T) -> Group
where T: Into<Option<&'a str>>,

Creates a new widget, takes an x, y coordinates, as well as a width and height, plus a title Read more
§

fn default_fill() -> Group

Constructs a widget with the size of its parent
§

fn delete(wid: Group)

Deletes widgets and their children.
§

unsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Group

transforms a widget pointer to a Widget, for internal use Read more
§

unsafe fn from_widget<W>(w: W) -> Group
where W: WidgetExt,

Get a widget from base widget Read more
§

fn handle<F>(&mut self, cb: F)
where F: FnMut(&mut Group, Event) -> bool + 'static,

Set a custom handler, where events are managed manually, akin to Fl_Widget::handle(int). Handled or ignored events should return true, unhandled events should return false. takes the widget as a closure argument. The ability to handle an event might depend on handling other events, as explained here
§

fn draw<F>(&mut self, cb: F)
where F: FnMut(&mut Group) + 'static,

Set a custom draw method. takes the widget as a closure argument. macOS requires that WidgetBase::draw actually calls drawing functions
§

fn resize_callback<F>(&mut self, cb: F)
where F: FnMut(&mut Group, i32, i32, i32, i32) + 'static,

Perform a callback on resize. Avoid resizing the parent or the same widget to avoid infinite recursion
§

unsafe fn assume_derived(&mut self)

Makes the widget derived Read more
§

fn from_dyn_widget<W>(w: &W) -> Option<Group>
where W: WidgetExt,

Cast a type-erased widget back to its original widget
§

fn from_dyn_widget_ptr(w: *mut Fl_Widget) -> Option<Group>

Cast a type-erased widget pointer back to its original widget
§

impl WidgetExt for Group

§

fn center_x<W>(self, w: &W) -> Group
where W: WidgetExt,

Initialize center of another widget

§

fn center_y<W>(self, w: &W) -> Group
where W: WidgetExt,

Initialize center of another widget

§

fn with_pos(self, x: i32, y: i32) -> Group

Initialize to a position x, y
§

fn with_size(self, width: i32, height: i32) -> Group

Initialize to size width, height
§

fn with_label(self, title: &str) -> Group

Initialize with a label
§

fn with_align(self, align: Align) -> Group

Initialize with alignment
§

fn with_type<T>(self, typ: T) -> Group
where T: WidgetType,

Initialize with type
§

fn below_of<W>(self, wid: &W, padding: i32) -> Group
where W: WidgetExt,

Initialize at bottom of another widget
§

fn above_of<W>(self, wid: &W, padding: i32) -> Group
where W: WidgetExt,

Initialize above of another widget
§

fn right_of<W>(self, wid: &W, padding: i32) -> Group
where W: WidgetExt,

Initialize right of another widget
§

fn left_of<W>(self, wid: &W, padding: i32) -> Group
where W: WidgetExt,

Initialize left of another widget
§

fn center_of<W>(self, w: &W) -> Group
where W: WidgetExt,

Initialize center of another widget
§

fn center_of_parent(self) -> Group

Initialize center of parent
§

fn size_of<W>(self, w: &W) -> Group
where W: WidgetExt,

Initialize to the size of another widget
§

fn size_of_parent(self) -> Group

Initialize to the size of the parent
§

fn set_pos(&mut self, x: i32, y: i32)

Set to position x, y
§

fn set_size(&mut self, width: i32, height: i32)

Set to dimensions width and height
§

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.
§

fn redraw(&mut self)

Redraws a widget, necessary for resizing and changing positions
§

fn show(&mut self)

Shows the widget
§

fn hide(&mut self)

Hides the widget
§

fn x(&self) -> i32

Returns the x coordinate of the widget
§

fn y(&self) -> i32

Returns the y coordinate of the widget
§

fn width(&self) -> i32

Returns the width of the widget
§

fn height(&self) -> i32

Returns the height of the widget
§

fn w(&self) -> i32

Returns the width of the widget
§

fn h(&self) -> i32

Returns the height of the widget
§

fn label(&self) -> String

Returns the label of the widget
§

fn measure_label(&self) -> (i32, i32)

Measures the label’s width and height
§

fn as_widget_ptr(&self) -> *mut Fl_Widget

transforms a widget to a base Fl_Widget, for internal use
§

fn activate(&mut self)

Activates the widget
§

fn deactivate(&mut self)

Deactivates the widget
§

fn redraw_label(&mut self)

Redraws the label of the widget
§

fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)

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

fn widget_resize(&mut self, x: i32, y: i32, width: i32, height: i32)

Does a simple resize ignoring class-specific resize functionality
§

fn tooltip(&self) -> Option<String>

Returns the tooltip text
§

fn set_tooltip(&mut self, txt: &str)

Sets the tooltip text
§

fn color(&self) -> Color

Returns the widget color
§

fn set_color(&mut self, color: Color)

Sets the widget’s color
§

fn label_color(&self) -> Color

Returns the widget label’s color
§

fn set_label_color(&mut self, color: Color)

Sets the widget label’s color
§

fn label_font(&self) -> Font

Returns the widget label’s font
§

fn set_label_font(&mut self, font: Font)

Sets the widget label’s font
§

fn label_size(&self) -> i32

Returns the widget label’s size
§

fn set_label_size(&mut self, sz: i32)

Sets the widget label’s size
§

fn label_type(&self) -> LabelType

Returns the widget label’s type
§

fn set_label_type(&mut self, typ: LabelType)

Sets the widget label’s type
§

fn frame(&self) -> FrameType

Returns the widget’s frame type
§

fn set_frame(&mut self, typ: FrameType)

Sets the widget’s frame type
§

fn changed(&self) -> bool

Returns whether the widget was changed
§

fn set_changed(&mut self)

Mark the widget as changed
§

fn clear_changed(&mut self)

Clears the changed status of the widget
§

fn align(&self) -> Align

Returns the alignment of the widget
§

fn set_align(&mut self, align: Align)

Sets the alignment of the widget
§

fn set_trigger(&mut self, trigger: CallbackTrigger)

Sets the default callback trigger for a widget, equivalent to when()
§

fn trigger(&self) -> CallbackTrigger

Return the callback trigger, equivalent to when()
§

fn parent(&self) -> Option<Group>

Returns the parent of the widget
§

fn selection_color(&self) -> Color

Gets the selection color of the widget
§

fn set_selection_color(&mut self, color: Color)

Sets the selection color of the widget
§

fn do_callback(&mut self)

Runs the already registered callback
§

fn window(&self) -> Option<Box<dyn WindowExt>>

Returns the direct window holding the widget
§

fn top_window(&self) -> Option<Box<dyn WindowExt>>

Returns the topmost window holding the widget
§

fn takes_events(&self) -> bool

Checks whether a widget is capable of taking events
§

fn take_focus(&mut self) -> Result<(), FltkError>

Make the widget take focus Read more
§

fn set_visible_focus(&mut self)

Set the widget to have visible focus
§

fn clear_visible_focus(&mut self)

Clear visible focus
§

fn visible_focus(&mut self, v: bool)

Set the visible focus using a flag
§

fn has_visible_focus(&self) -> bool

Return whether the widget has visible focus
§

fn has_focus(&self) -> bool

Return whether the widget has focus
§

fn was_deleted(&self) -> bool

Check if a widget was deleted
§

fn damage(&self) -> bool

Return whether the widget was damaged
§

fn set_damage(&mut self, flag: bool)

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

fn damage_type(&self) -> Damage

Return the damage mask
§

fn set_damage_type(&mut self, mask: Damage)

Signal the type of damage a widget received
§

fn set_damage_area(&mut self, mask: Damage, x: i32, y: i32, w: i32, h: i32)

Signal damage for an area inside the widget
§

fn clear_damage(&mut self)

Clear the damaged flag
§

fn as_window(&self) -> Option<Box<dyn WindowExt>>

Return the widget as a window if it’s a window
§

fn as_group(&self) -> Option<Group>

Return the widget as a group widget if it’s a group widget
§

fn inside<W>(&self, wid: &W) -> bool
where W: WidgetExt,

Checks whether the self widget is inside another widget
§

fn get_type<T>(&self) -> T
where T: WidgetType,

Returns the widget type when applicable
§

fn set_type<T>(&mut self, typ: T)
where T: WidgetType,

Sets the widget type
§

fn set_image<I>(&mut self, image: Option<I>)
where I: ImageExt,

Sets the image of the widget
§

fn set_image_scaled<I>(&mut self, image: Option<I>)
where I: ImageExt,

Sets the image of the widget scaled to the widget’s size
§

fn image(&self) -> Option<Box<dyn ImageExt>>

Gets the image associated with the widget
§

unsafe fn image_mut(&self) -> Option<&mut Image>

Get a reference type of the widget’s image Read more
§

fn set_deimage<I>(&mut self, image: Option<I>)
where I: ImageExt,

Sets the deactivated image of the widget
§

fn set_deimage_scaled<I>(&mut self, image: Option<I>)
where I: ImageExt,

Sets the deactivated image of the widget scaled to the widget’s size
§

fn deimage(&self) -> Option<Box<dyn ImageExt>>

Gets the deactivated image associated with the widget
§

unsafe fn deimage_mut(&self) -> Option<&mut Image>

Get a reference type of the widget’s deactivated image Read more
§

fn set_callback<F>(&mut self, cb: F)
where F: FnMut(&mut Group) + 'static,

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

fn emit<T>(&mut self, sender: Sender<T>, msg: T)
where T: 'static + Clone + Send + Sync,

Emits a message on callback using a sender
§

unsafe fn into_widget<W>(&self) -> W
where W: WidgetBase,

Upcast a WidgetExt to some widget type Read more
§

fn visible(&self) -> bool

Returns whether a widget is visible
§

fn visible_r(&self) -> bool

Returns whether a widget or any of its parents are visible (recursively)
§

fn is_same<W>(&self, other: &W) -> bool
where W: WidgetExt,

Return whether two widgets object point to the same widget
§

fn active(&self) -> bool

Returns whether a widget is active
§

fn active_r(&self) -> bool

Returns whether a widget or any of its parents are active (recursively)
§

fn handle_event(&mut self, event: Event) -> bool

Handle a specific event
§

fn is_derived(&self) -> bool

Check whether a widget is derived
§

fn as_base_widget(&self) -> Widget
where Self: Sized,

Upcast a WidgetExt to a Widget
§

impl Eq for Group

§

impl Send for Group

§

impl Sync for Group

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ByteSized for T

Source§

const BYTE_ALIGN: usize = _

The alignment of this type in bytes.
Source§

const BYTE_SIZE: usize = _

The size of this type in bytes.
Source§

fn byte_align(&self) -> usize

Returns the alignment of this type in bytes.
Source§

fn byte_size(&self) -> usize

Returns the size of this type in bytes. Read more
Source§

fn ptr_size_ratio(&self) -> [usize; 2]

Returns the size ratio between Ptr::BYTES and BYTE_SIZE. Read more
Source§

impl<T, R> Chain<R> for T
where T: ?Sized,

Source§

fn chain<F>(self, f: F) -> R
where F: FnOnce(Self) -> R, Self: Sized,

Chain a function which takes the parameter by value.
Source§

fn chain_ref<F>(&self, f: F) -> R
where F: FnOnce(&Self) -> R,

Chain a function which takes the parameter by shared reference.
Source§

fn chain_mut<F>(&mut self, f: F) -> R
where F: FnOnce(&mut Self) -> R,

Chain a function which takes the parameter by exclusive reference.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> ExtAny for T
where T: Any + ?Sized,

Source§

fn type_id() -> TypeId

Returns the TypeId of Self. Read more
Source§

fn type_of(&self) -> TypeId

Returns the TypeId of self. Read more
Source§

fn type_name(&self) -> &'static str

Returns the type name of self. Read more
Source§

fn type_is<T: 'static>(&self) -> bool

Returns true if Self is of type T. Read more
Source§

fn type_hash(&self) -> u64

Returns a deterministic hash of the TypeId of Self.
Source§

fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64

Returns a deterministic hash of the TypeId of Self using a custom hasher.
Source§

fn as_any_ref(&self) -> &dyn Any
where Self: Sized,

Upcasts &self as &dyn Any. Read more
Source§

fn as_any_mut(&mut self) -> &mut dyn Any
where Self: Sized,

Upcasts &mut self as &mut dyn Any. Read more
Source§

fn as_any_box(self: Box<Self>) -> Box<dyn Any>
where Self: Sized,

Upcasts Box<self> as Box<dyn Any>. Read more
Source§

fn downcast_ref<T: 'static>(&self) -> Option<&T>

Available on crate feature unsafe_layout only.
Returns some shared reference to the inner value if it is of type T. Read more
Source§

fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>

Available on crate feature unsafe_layout only.
Returns some exclusive reference to the inner value if it is of type T. Read more
Source§

impl<T> ExtMem for T
where T: ?Sized,

Source§

const NEEDS_DROP: bool = _

Know whether dropping values of this type matters, in compile-time.
Source§

fn mem_align_of<T>() -> usize

Returns the minimum alignment of the type in bytes. Read more
Source§

fn mem_align_of_val(&self) -> usize

Returns the alignment of the pointed-to value in bytes. Read more
Source§

fn mem_size_of<T>() -> usize

Returns the size of a type in bytes. Read more
Source§

fn mem_size_of_val(&self) -> usize

Returns the size of the pointed-to value in bytes. Read more
Source§

fn mem_copy(&self) -> Self
where Self: Copy,

Bitwise-copies a value. Read more
Source§

fn mem_needs_drop(&self) -> bool

Returns true if dropping values of this type matters. Read more
Source§

fn mem_drop(self)
where Self: Sized,

Drops self by running its destructor. Read more
Source§

fn mem_forget(self)
where Self: Sized,

Forgets about self without running its destructor. Read more
Source§

fn mem_replace(&mut self, other: Self) -> Self
where Self: Sized,

Replaces self with other, returning the previous value of self. Read more
Source§

fn mem_take(&mut self) -> Self
where Self: Default,

Replaces self with its default value, returning the previous value of self. Read more
Source§

fn mem_swap(&mut self, other: &mut Self)
where Self: Sized,

Swaps the value of self and other without deinitializing either one. Read more
Source§

unsafe fn mem_zeroed<T>() -> T

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

fn mem_as_bytes(&self) -> &[u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &[u8]. Read more
Source§

fn mem_as_bytes_mut(&mut self) -> &mut [u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &mut [u8]. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

Source§

impl<T> Hook for T

Source§

fn hook_ref<F>(self, f: F) -> Self
where F: FnOnce(&Self),

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
Source§

fn hook_mut<F>(self, f: F) -> Self
where F: FnOnce(&mut Self),

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

§

fn into_sample(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<W> WidgetId<W> for W
where W: WidgetExt + Send + Sync + Clone + 'static,

§

fn set_id(&mut self, id: &str)

Set the widget’s Id
§

fn with_id(self, id: &str) -> W

Construct a widget with an Id
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

§

impl<T> Ungil for T
where T: Send,