pub enum WindowMessage {
Show 69 variants
AddEventListener(WindowEventId, Box<dyn Fn(&WindowEvent) + Send>),
ScaleFactor(Sender<f64>),
InnerPosition(Sender<Result<PhysicalPosition<i32>>>),
OuterPosition(Sender<Result<PhysicalPosition<i32>>>),
InnerSize(Sender<PhysicalSize<u32>>),
OuterSize(Sender<PhysicalSize<u32>>),
IsFullscreen(Sender<bool>),
IsMinimized(Sender<bool>),
IsMaximized(Sender<bool>),
IsFocused(Sender<bool>),
IsDecorated(Sender<bool>),
IsResizable(Sender<bool>),
IsMaximizable(Sender<bool>),
IsMinimizable(Sender<bool>),
IsClosable(Sender<bool>),
IsVisible(Sender<bool>),
Title(Sender<String>),
CurrentMonitor(Sender<Option<MonitorHandle>>),
PrimaryMonitor(Sender<Option<MonitorHandle>>),
MonitorFromPoint(Sender<Option<MonitorHandle>>, (f64, f64)),
AvailableMonitors(Sender<Vec<MonitorHandle>>),
GtkWindow(Sender<GtkWindow>),
GtkBox(Sender<GtkBox>),
RawWindowHandle(Sender<Result<SendRawWindowHandle, HandleError>>),
Theme(Sender<Theme>),
IsEnabled(Sender<bool>),
Center,
RequestUserAttention(Option<UserAttentionTypeWrapper>),
SetEnabled(bool),
SetResizable(bool),
SetMaximizable(bool),
SetMinimizable(bool),
SetClosable(bool),
SetTitle(String),
Maximize,
Unmaximize,
Minimize,
Unminimize,
Show,
Hide,
Close,
Destroy,
SetDecorations(bool),
SetShadow(bool),
SetAlwaysOnBottom(bool),
SetAlwaysOnTop(bool),
SetVisibleOnAllWorkspaces(bool),
SetContentProtected(bool),
SetSize(Size),
SetMinSize(Option<Size>),
SetMaxSize(Option<Size>),
SetSizeConstraints(WindowSizeConstraints),
SetPosition(Position),
SetFullscreen(bool),
SetFocus,
SetIcon(Icon),
SetSkipTaskbar(bool),
SetCursorGrab(bool),
SetCursorVisible(bool),
SetCursorIcon(CursorIcon),
SetCursorPosition(Position),
SetIgnoreCursorEvents(bool),
SetProgressBar(ProgressBarState),
SetTitleBarStyle(TitleBarStyle),
SetTheme(Option<Theme>),
SetBackgroundColor(Option<Color>),
DragWindow,
ResizeDragWindow(ResizeDirection),
RequestRedraw,
}
Variants§
AddEventListener(WindowEventId, Box<dyn Fn(&WindowEvent) + Send>)
ScaleFactor(Sender<f64>)
InnerPosition(Sender<Result<PhysicalPosition<i32>>>)
OuterPosition(Sender<Result<PhysicalPosition<i32>>>)
InnerSize(Sender<PhysicalSize<u32>>)
OuterSize(Sender<PhysicalSize<u32>>)
IsFullscreen(Sender<bool>)
IsMinimized(Sender<bool>)
IsMaximized(Sender<bool>)
IsFocused(Sender<bool>)
IsDecorated(Sender<bool>)
IsResizable(Sender<bool>)
IsMaximizable(Sender<bool>)
IsMinimizable(Sender<bool>)
IsClosable(Sender<bool>)
IsVisible(Sender<bool>)
Title(Sender<String>)
CurrentMonitor(Sender<Option<MonitorHandle>>)
PrimaryMonitor(Sender<Option<MonitorHandle>>)
MonitorFromPoint(Sender<Option<MonitorHandle>>, (f64, f64))
AvailableMonitors(Sender<Vec<MonitorHandle>>)
GtkWindow(Sender<GtkWindow>)
GtkBox(Sender<GtkBox>)
RawWindowHandle(Sender<Result<SendRawWindowHandle, HandleError>>)
Theme(Sender<Theme>)
IsEnabled(Sender<bool>)
Center
RequestUserAttention(Option<UserAttentionTypeWrapper>)
SetEnabled(bool)
SetResizable(bool)
SetMaximizable(bool)
SetMinimizable(bool)
SetClosable(bool)
SetTitle(String)
Maximize
Unmaximize
Minimize
Unminimize
Show
Hide
Close
Destroy
SetDecorations(bool)
SetShadow(bool)
SetAlwaysOnBottom(bool)
SetAlwaysOnTop(bool)
SetVisibleOnAllWorkspaces(bool)
SetContentProtected(bool)
SetSize(Size)
SetMinSize(Option<Size>)
SetMaxSize(Option<Size>)
SetSizeConstraints(WindowSizeConstraints)
SetPosition(Position)
SetFullscreen(bool)
SetFocus
SetIcon(Icon)
SetSkipTaskbar(bool)
SetCursorGrab(bool)
SetCursorVisible(bool)
SetCursorIcon(CursorIcon)
SetCursorPosition(Position)
SetIgnoreCursorEvents(bool)
SetProgressBar(ProgressBarState)
SetTitleBarStyle(TitleBarStyle)
SetTheme(Option<Theme>)
SetBackgroundColor(Option<Color>)
DragWindow
ResizeDragWindow(ResizeDirection)
RequestRedraw
Auto Trait Implementations§
impl Freeze for WindowMessage
impl !RefUnwindSafe for WindowMessage
impl Send for WindowMessage
impl !Sync for WindowMessage
impl Unpin for WindowMessage
impl !UnwindSafe for WindowMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more