Struct fltk::window::SingleWindow
source · [−]pub struct SingleWindow { /* private fields */ }
Expand description
Creates a single (buffered) window widget
Implementations
sourceimpl SingleWindow
impl SingleWindow
sourcepub fn default() -> SingleWindow
pub fn default() -> SingleWindow
Creates a default initialized single window
Note: Only call this from the main thread.
sourcepub unsafe fn find_by_handle(handle: RawHandle) -> Option<impl WindowExt>
pub unsafe fn find_by_handle(handle: RawHandle) -> Option<impl WindowExt>
Find an Fl_Window
through a raw handle. The window must have been instantiated by the app.
void *
to: (Windows: HWND
, X11: Xid
(u64
), macOS: NSWindow
)
Safety
The data must be valid and is OS-dependent.
sourcepub fn show_with_env_args(&mut self)
pub fn show_with_env_args(&mut self)
Use FLTK specific arguments for the application: More info here. The options are:
-bg2 color
-bg color
-di[splay] host:n.n
-dn[d]
-fg color
-g[eometry] WxH+X+Y
-i[conic]
-k[bd]
-na[me] classname
-nod[nd]
-nok[bd]
-not[ooltips]
-s[cheme] scheme
-ti[tle] windowtitle
-to[oltips]
sourcepub fn show_with_args(&mut self, args: &[&str])
pub fn show_with_args(&mut self, args: &[&str])
Use FLTK specific arguments for the application: More info here. The options are:
-bg2 color
-bg color
-di[splay] host:n.n
-dn[d]
-fg color
-g[eometry] WxH+X+Y
-i[conic]
-k[bd]
-na[me] classname
-nod[nd]
-nok[bd]
-not[ooltips]
-s[cheme] scheme
-ti[tle] windowtitle
-to[oltips]
sourcepub fn pixels_per_unit(&self) -> f32
pub fn pixels_per_unit(&self) -> f32
Returns the pixels per unit/point
sourcepub fn default_xclass() -> Option<String>
pub fn default_xclass() -> Option<String>
Get the default XA_WM_CLASS property for all windows of your application
sourcepub fn set_default_xclass(s: &str)
pub fn set_default_xclass(s: &str)
Set the default XA_WM_CLASS property for all windows of your application. This should be called before showing with window
Trait Implementations
sourceimpl Clone for SingleWindow
impl Clone for SingleWindow
sourcefn clone(&self) -> SingleWindow
fn clone(&self) -> SingleWindow
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SingleWindow
impl Debug for SingleWindow
sourceimpl Default for SingleWindow
impl Default for SingleWindow
sourceimpl GroupExt for SingleWindow
impl GroupExt for SingleWindow
sourcefn find<W: WidgetExt>(&self, widget: &W) -> i32
fn find<W: WidgetExt>(&self, widget: &W) -> i32
Find a widget within a group and return its index
sourcefn insert<W: WidgetExt>(&mut self, widget: &W, index: i32)
fn insert<W: WidgetExt>(&mut self, widget: &W, index: i32)
Insert a widget to a group at a certain index
sourcefn remove<W: WidgetExt>(&mut self, widget: &W)
fn remove<W: WidgetExt>(&mut self, widget: &W)
Remove a widget from a group, but does not delete it
sourcefn remove_by_index(&mut self, idx: i32)
fn remove_by_index(&mut self, idx: i32)
Remove a child widget by its index
sourcefn resizable<W: WidgetExt>(&self, widget: &W)
fn resizable<W: WidgetExt>(&self, widget: &W)
The resizable widget defines both the resizing frame and the resizing behavior of the group and its children.
sourcefn make_resizable(&mut self, val: bool)
fn make_resizable(&mut self, val: bool)
Make the group itself resizable, should be called before the widget is shown
sourcefn add_resizable<W: WidgetExt>(&mut self, widget: &W)
fn add_resizable<W: WidgetExt>(&mut self, widget: &W)
Adds a widget to the group and makes it the resizable widget
sourcefn set_clip_children(&mut self, flag: bool)
fn set_clip_children(&mut self, flag: bool)
Clips children outside the group boundaries
sourcefn clip_children(&self) -> bool
fn clip_children(&self) -> bool
Get whether clip_children
is set
sourcefn draw_child<W: WidgetExt>(&self, w: &mut W)
fn draw_child<W: WidgetExt>(&self, w: &mut W)
Draw a child widget, the call should be in a WidgetBase::draw
method
sourcefn update_child<W: WidgetExt>(&self, w: &mut W)
fn update_child<W: WidgetExt>(&self, w: &mut W)
Update a child widget, the call should be in a WidgetBase::draw
method
sourcefn draw_outside_label<W: WidgetExt>(&self, w: &mut W)
fn draw_outside_label<W: WidgetExt>(&self, w: &mut W)
Draw the outside label, the call should be in a WidgetBase::draw
method
sourcefn draw_children(&mut self)
fn draw_children(&mut self)
Draw children, the call should be in a WidgetBase::draw
method
sourcefn init_sizes(&mut self)
fn init_sizes(&mut self)
Resets the internal array of widget sizes and positions
sourcefn bounds(&self) -> Vec<(i32, i32, i32, i32)>
fn bounds(&self) -> Vec<(i32, i32, i32, i32)>
Get the bounds of all children widgets (left, upper, right, bottom)
sourceunsafe fn into_group(&self) -> Group
unsafe fn into_group(&self) -> Group
Converts a widget implementing GroupExt into a Group widget Read more
sourceimpl IntoIterator for SingleWindow
impl IntoIterator for SingleWindow
sourceimpl PartialEq<SingleWindow> for SingleWindow
impl PartialEq<SingleWindow> for SingleWindow
sourceimpl WidgetBase for SingleWindow
impl WidgetBase for SingleWindow
sourcefn new<T: Into<Option<&'static str>>>(
x: i32,
y: i32,
width: i32,
height: i32,
title: T
) -> SingleWindow
fn new<T: Into<Option<&'static str>>>(
x: i32,
y: i32,
width: i32,
height: i32,
title: T
) -> SingleWindow
Creates a new widget, takes an x, y coordinates, as well as a width and height, plus a title Read more
sourcefn default_fill() -> Self
fn default_fill() -> Self
Constructs a widget with the size of its parent
sourceunsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Self
unsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Self
transforms a widget pointer to a Widget, for internal use Read more
sourceunsafe fn from_widget<W: WidgetExt>(w: W) -> Self
unsafe fn from_widget<W: WidgetExt>(w: W) -> Self
Get a widget from base widget Read more
sourcefn handle<F: FnMut(&mut Self, Event) -> bool + 'static>(&mut self, cb: F)
fn handle<F: FnMut(&mut Self, Event) -> bool + 'static>(&mut self, cb: F)
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 Read more
sourcefn draw<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
fn draw<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
Set a custom draw method.
takes the widget as a closure argument.
macOS requires that WidgetBase::draw
actually calls drawing functions Read more
sourcefn resize_callback<F: FnMut(&mut Self, i32, i32, i32, i32) + 'static>(
&mut self,
cb: F
)
fn resize_callback<F: FnMut(&mut Self, i32, i32, i32, i32) + 'static>(
&mut self,
cb: F
)
Perform a callback on resize. Avoid resizing the parent or the same widget to avoid infinite recursion Read more
sourceunsafe fn assume_derived(&mut self)
unsafe fn assume_derived(&mut self)
Makes the widget derived Read more
sourceimpl WidgetExt for SingleWindow
impl WidgetExt for SingleWindow
sourcefn with_label(self, title: &str) -> Self
fn with_label(self, title: &str) -> Self
Initialize with a label
sourcefn with_align(self, align: Align) -> Self
fn with_align(self, align: Align) -> Self
Initialize with alignment
sourcefn with_type<T: WidgetType>(self, typ: T) -> Self
fn with_type<T: WidgetType>(self, typ: T) -> Self
Initialize with type
sourcefn below_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn below_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
Initialize at bottom of another widget
sourcefn above_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn above_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
Initialize above of another widget
sourcefn right_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn right_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
Initialize right of another widget
sourcefn left_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn left_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
Initialize left of another widget
sourcefn center_of_parent(self) -> Self
fn center_of_parent(self) -> Self
Initialize center of parent
sourcefn size_of_parent(self) -> Self
fn size_of_parent(self) -> Self
Initialize to the size of the parent
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. Read more
sourceunsafe fn as_widget_ptr(&self) -> *mut Fl_Widget
unsafe fn as_widget_ptr(&self) -> *mut Fl_Widget
transforms a widget to a base Fl_Widget
, for internal use Read more
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 widget_resize(&mut self, x: i32, y: i32, width: i32, height: i32)
fn widget_resize(&mut self, x: i32, y: i32, width: i32, height: i32)
Does a simple resize ignoring class-specific resize functionality
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 set_trigger(&mut self, trigger: CallbackTrigger)
fn set_trigger(&mut self, trigger: CallbackTrigger)
Sets the default callback trigger for a widget, equivalent to when()
sourcefn trigger(&self) -> CallbackTrigger
fn trigger(&self) -> CallbackTrigger
Return the callback trigger, equivalent to when()
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 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 clear_damage(&mut self)
fn clear_damage(&mut self)
Clear the damaged flag
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
sourcefn inside<W: WidgetExt>(&self, wid: &W) -> bool
fn inside<W: WidgetExt>(&self, wid: &W) -> bool
Checks whether the self widget is inside another widget
sourcefn get_type<T: WidgetType>(&self) -> T
fn get_type<T: WidgetType>(&self) -> T
Returns the widget type when applicable
sourcefn set_type<T: WidgetType>(&mut self, typ: T)
fn set_type<T: WidgetType>(&mut self, typ: T)
Sets the widget type
sourcefn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)
fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)
Sets the image of the widget scaled to the widget’s size
sourcefn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
Sets the deactivated image of the widget
sourcefn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)
fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)
Sets the deactivated image of the widget scaled to the widget’s size
sourcefn deimage(&self) -> Option<Box<dyn ImageExt>>
fn deimage(&self) -> Option<Box<dyn ImageExt>>
Gets the deactivated image associated with the widget
sourcefn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
Sets the callback when the widget is triggered (clicks for example) takes the widget as a closure argument Read more
sourcefn emit<T: 'static + Clone + Send + Sync>(&mut self, sender: Sender<T>, msg: T)
fn emit<T: 'static + Clone + Send + Sync>(&mut self, sender: Sender<T>, msg: T)
Emits a message on callback using a sender
sourceunsafe fn into_widget<W: WidgetBase>(&self) -> W
unsafe fn into_widget<W: WidgetBase>(&self) -> W
Upcast a WidgetExt
to a Widget Read more
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) -> bool
fn is_same<W: WidgetExt>(&self, other: &W) -> bool
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 handle_event(&mut self, event: Event)
fn handle_event(&mut self, event: Event)
Handle a specific event
sourcefn is_derived(&self) -> bool
fn is_derived(&self) -> bool
Check whether a widget is derived
sourceimpl WindowExt for SingleWindow
impl WindowExt for SingleWindow
sourcefn center_screen(self) -> Self
fn center_screen(self) -> Self
Positions the window to the center of the screen
sourcefn make_modal(&mut self, val: bool)
fn make_modal(&mut self, val: bool)
Makes a window modal, should be called before show
sourcefn fullscreen(&mut self, val: bool)
fn fullscreen(&mut self, val: bool)
Makes a window fullscreen
sourcefn make_current(&mut self)
fn make_current(&mut self)
Makes the window current
sourcefn set_icon<T: ImageExt>(&mut self, image: Option<T>)
fn set_icon<T: ImageExt>(&mut self, image: Option<T>)
Sets the windows icon. Supported formats are bmp, jpeg, png and rgb. Read more
sourcefn set_cursor(&mut self, cursor: Cursor)
fn set_cursor(&mut self, cursor: Cursor)
Sets the cursor style within the window. Needs to be called after the window is shown Read more
sourcefn set_border(&mut self, flag: bool)
fn set_border(&mut self, flag: bool)
Sets whether the window has a border
sourcefn free_position(&mut self)
fn free_position(&mut self)
Frees the position of the window
sourcefn raw_handle(&self) -> RawHandle
fn raw_handle(&self) -> RawHandle
Get the raw system handle of the window
sourceunsafe fn set_region(&mut self, region: Region)
unsafe fn set_region(&mut self, region: Region)
Set the graphical draw region of the window Read more
sourcefn iconize(&mut self)
fn iconize(&mut self)
Iconifies the window. You can tell that the window is iconized by checking that it’s shown and not visible Read more
sourcefn fullscreen_active(&self) -> bool
fn fullscreen_active(&self) -> bool
Returns whether the window is fullscreen or not
sourcefn decorated_w(&self) -> i32
fn decorated_w(&self) -> i32
Returns the decorated width
sourcefn decorated_h(&self) -> i32
fn decorated_h(&self) -> i32
Returns the decorated height
sourcefn size_range(&mut self, min_w: i32, min_h: i32, max_w: i32, max_h: i32)
fn size_range(&mut self, min_w: i32, min_h: i32, max_w: i32, max_h: i32)
Set the window’s minimum width, minimum height, max width and max height. You can pass 0 as max_w and max_h to allow unlimited upward resize of the window. Read more
sourcefn set_shape<I: ImageExt>(&mut self, image: Option<I>)
fn set_shape<I: ImageExt>(&mut self, image: Option<I>)
Set the shape of the window. Supported image formats are BMP, RGB and Pixmap. The window covers non-transparent/non-black shape of the image. The image must not be scaled(resized) beforehand. The size will be adapted to the window’s size Read more
sourcefn set_cursor_image(&mut self, image: RgbImage, hot_x: i32, hot_y: i32)
fn set_cursor_image(&mut self, image: RgbImage, hot_x: i32, hot_y: i32)
Set the cursor image
sourcefn default_cursor(&mut self, cursor: Cursor)
fn default_cursor(&mut self, cursor: Cursor)
Set the window’s default cursor
sourcefn screen_num(&self) -> i32
fn screen_num(&self) -> i32
Get the screen number
sourcefn set_screen_num(&mut self, n: i32)
fn set_screen_num(&mut self, n: i32)
Set the screen number
sourcefn wait_for_expose(&self)
fn wait_for_expose(&self)
sourcefn set_opacity(&mut self, val: f64)
fn set_opacity(&mut self, val: f64)
Set the window’s opacity, Ranges from 0.0 to 1.0, where 1.0 is fully opaque and 0.0 is fully transparent. This should be called on a shown window. On X11, opacity support depends on the window manager and can be queried: Read more
sourcefn set_xclass(&mut self, s: &str)
fn set_xclass(&mut self, s: &str)
Set the window’s XA_WM_CLASS property. This should be called before showing the window Read more
sourcefn clear_modal_states(&mut self)
fn clear_modal_states(&mut self)
Clear the modal state of the window
sourcefn force_position(&mut self, flag: bool)
fn force_position(&mut self, flag: bool)
Forces the position of the window
sourcefn set_override(&mut self)
fn set_override(&mut self)
removes the window border and sets the window on top, by settings the NOBORDER and OVERRIDE flags
sourcefn is_override(&self) -> bool
fn is_override(&self) -> bool
Checks whether the OVERRIDE flag was set
impl Eq for SingleWindow
impl Send for SingleWindow
impl Sync for SingleWindow
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more