Struct fltk::window::SingleWindow
source · pub struct SingleWindow { /* private fields */ }Expand description
Creates a single (buffered) window widget
Implementations§
source§impl 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
sourcepub fn set_on_top(&self)
pub fn set_on_top(&self)
Set the borderless window to be on top of the macos system menu bar
Trait Implementations§
source§impl Clone for SingleWindow
impl Clone for SingleWindow
source§fn clone(&self) -> SingleWindow
fn clone(&self) -> SingleWindow
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SingleWindow
impl Debug for SingleWindow
source§impl Default for SingleWindow
impl Default for SingleWindow
source§impl GroupExt for SingleWindow
impl GroupExt for SingleWindow
source§fn find<W: WidgetExt>(&self, widget: &W) -> i32
fn find<W: WidgetExt>(&self, widget: &W) -> i32
source§fn insert<W: WidgetExt>(&mut self, widget: &W, index: i32)
fn insert<W: WidgetExt>(&mut self, widget: &W, index: i32)
source§fn remove<W: WidgetExt>(&mut self, widget: &W)
fn remove<W: WidgetExt>(&mut self, widget: &W)
source§fn remove_by_index(&mut self, idx: i32)
fn remove_by_index(&mut self, idx: i32)
source§fn resizable<W: WidgetExt>(&self, widget: &W)
fn resizable<W: WidgetExt>(&self, widget: &W)
source§fn make_resizable(&mut self, val: bool)
fn make_resizable(&mut self, val: bool)
source§fn add_resizable<W: WidgetExt>(&mut self, widget: &W)
fn add_resizable<W: WidgetExt>(&mut self, widget: &W)
source§fn set_clip_children(&mut self, flag: bool)
fn set_clip_children(&mut self, flag: bool)
source§fn clip_children(&self) -> bool
fn clip_children(&self) -> bool
clip_children is setsource§fn draw_child<W: WidgetExt>(&self, w: &mut W)
fn draw_child<W: WidgetExt>(&self, w: &mut W)
WidgetBase::draw methodsource§fn update_child<W: WidgetExt>(&self, w: &mut W)
fn update_child<W: WidgetExt>(&self, w: &mut W)
WidgetBase::draw methodsource§fn draw_outside_label<W: WidgetExt>(&self, w: &mut W)
fn draw_outside_label<W: WidgetExt>(&self, w: &mut W)
WidgetBase::draw methodsource§fn draw_children(&mut self)
fn draw_children(&mut self)
WidgetBase::draw methodsource§fn init_sizes(&mut self)
fn init_sizes(&mut self)
source§fn bounds(&self) -> Vec<(i32, i32, i32, i32)>
fn bounds(&self) -> Vec<(i32, i32, i32, i32)>
source§unsafe fn into_group(&self) -> Group
unsafe fn into_group(&self) -> Group
source§impl IntoIterator for SingleWindow
impl IntoIterator for SingleWindow
source§impl PartialEq<SingleWindow> for SingleWindow
impl PartialEq<SingleWindow> for SingleWindow
source§impl WidgetBase for SingleWindow
impl WidgetBase for SingleWindow
source§fn 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
source§fn default_fill() -> Self
fn default_fill() -> Self
source§unsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Self
unsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Self
source§unsafe fn from_widget<W: WidgetExt>(w: W) -> Self
unsafe fn from_widget<W: WidgetExt>(w: W) -> Self
source§fn 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)
Fl_Widget::handle(int).
Handled or ignored events should return true, unhandled events should return false.
takes the widget as a closure argument Read moresource§fn draw<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
fn draw<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
WidgetBase::draw actually calls drawing functions Read moresource§fn 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
)
source§unsafe fn assume_derived(&mut self)
unsafe fn assume_derived(&mut self)
source§impl WidgetExt for SingleWindow
impl WidgetExt for SingleWindow
source§fn with_label(self, title: &str) -> Self
fn with_label(self, title: &str) -> Self
source§fn with_align(self, align: Align) -> Self
fn with_align(self, align: Align) -> Self
source§fn with_type<T: WidgetType>(self, typ: T) -> Self
fn with_type<T: WidgetType>(self, typ: T) -> Self
source§fn below_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn below_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
source§fn above_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn above_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
source§fn right_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn right_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
source§fn left_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
fn left_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self
source§fn center_of_parent(self) -> Self
fn center_of_parent(self) -> Self
source§fn size_of_parent(self) -> Self
fn size_of_parent(self) -> Self
source§fn set_label(&mut self, title: &str)
fn set_label(&mut self, title: &str)
@ sign.
and for the associated formatting. Read moresource§fn measure_label(&self) -> (i32, i32)
fn measure_label(&self) -> (i32, i32)
source§unsafe fn as_widget_ptr(&self) -> *mut Fl_Widget
unsafe fn as_widget_ptr(&self) -> *mut Fl_Widget
Fl_Widget, for internal use Read moresource§fn deactivate(&mut self)
fn deactivate(&mut self)
source§fn redraw_label(&mut self)
fn redraw_label(&mut self)
source§fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)
fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)
source§fn 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)
source§fn set_tooltip(&mut self, txt: &str)
fn set_tooltip(&mut self, txt: &str)
source§fn label_color(&self) -> Color
fn label_color(&self) -> Color
source§fn set_label_color(&mut self, color: Color)
fn set_label_color(&mut self, color: Color)
source§fn label_font(&self) -> Font
fn label_font(&self) -> Font
source§fn set_label_font(&mut self, font: Font)
fn set_label_font(&mut self, font: Font)
source§fn label_size(&self) -> i32
fn label_size(&self) -> i32
source§fn set_label_size(&mut self, sz: i32)
fn set_label_size(&mut self, sz: i32)
source§fn label_type(&self) -> LabelType
fn label_type(&self) -> LabelType
source§fn set_label_type(&mut self, typ: LabelType)
fn set_label_type(&mut self, typ: LabelType)
source§fn set_changed(&mut self)
fn set_changed(&mut self)
source§fn clear_changed(&mut self)
fn clear_changed(&mut self)
source§fn set_trigger(&mut self, trigger: CallbackTrigger)
fn set_trigger(&mut self, trigger: CallbackTrigger)
when()source§fn trigger(&self) -> CallbackTrigger
fn trigger(&self) -> CallbackTrigger
when()source§fn selection_color(&self) -> Color
fn selection_color(&self) -> Color
source§fn set_selection_color(&mut self, color: Color)
fn set_selection_color(&mut self, color: Color)
source§fn do_callback(&mut self)
fn do_callback(&mut self)
source§fn top_window(&self) -> Option<Box<dyn WindowExt>>
fn top_window(&self) -> Option<Box<dyn WindowExt>>
source§fn takes_events(&self) -> bool
fn takes_events(&self) -> bool
source§fn set_visible_focus(&mut self)
fn set_visible_focus(&mut self)
source§fn clear_visible_focus(&mut self)
fn clear_visible_focus(&mut self)
source§fn visible_focus(&mut self, v: bool)
fn visible_focus(&mut self, v: bool)
source§fn has_visible_focus(&self) -> bool
fn has_visible_focus(&self) -> bool
source§fn was_deleted(&self) -> bool
fn was_deleted(&self) -> bool
source§fn set_damage(&mut self, flag: bool)
fn set_damage(&mut self, flag: bool)
source§fn damage_type(&self) -> Damage
fn damage_type(&self) -> Damage
source§fn set_damage_type(&mut self, mask: Damage)
fn set_damage_type(&mut self, mask: Damage)
source§fn clear_damage(&mut self)
fn clear_damage(&mut self)
source§fn as_window(&self) -> Option<Box<dyn WindowExt>>
fn as_window(&self) -> Option<Box<dyn WindowExt>>
source§fn as_group(&self) -> Option<Group>
fn as_group(&self) -> Option<Group>
source§fn inside<W: WidgetExt>(&self, wid: &W) -> bool
fn inside<W: WidgetExt>(&self, wid: &W) -> bool
source§fn get_type<T: WidgetType>(&self) -> T
fn get_type<T: WidgetType>(&self) -> T
source§fn set_type<T: WidgetType>(&mut self, typ: T)
fn set_type<T: WidgetType>(&mut self, typ: T)
source§fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)
fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)
source§fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)
source§fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)
fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)
source§fn deimage(&self) -> Option<Box<dyn ImageExt>>
fn deimage(&self) -> Option<Box<dyn ImageExt>>
source§fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)
source§fn 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)
source§unsafe fn into_widget<W: WidgetBase>(&self) -> W
unsafe fn into_widget<W: WidgetBase>(&self) -> W
WidgetExt to some widget type Read moresource§fn visible_r(&self) -> bool
fn visible_r(&self) -> bool
source§fn is_same<W: WidgetExt>(&self, other: &W) -> bool
fn is_same<W: WidgetExt>(&self, other: &W) -> bool
source§fn active_r(&self) -> bool
fn active_r(&self) -> bool
source§fn handle_event(&mut self, event: Event)
fn handle_event(&mut self, event: Event)
source§fn is_derived(&self) -> bool
fn is_derived(&self) -> bool
source§fn as_base_widget(&self) -> Widgetwhere
Self: Sized,
fn as_base_widget(&self) -> Widgetwhere
Self: Sized,
WidgetExt to a Widgetsource§impl WindowExt for SingleWindow
impl WindowExt for SingleWindow
source§fn center_screen(self) -> Self
fn center_screen(self) -> Self
source§fn make_modal(&mut self, val: bool)
fn make_modal(&mut self, val: bool)
show