Enum AppCommand
pub enum AppCommand {
OpenWindow(Window, Box<dyn FnMut() -> Box<dyn AnyView<()>> + Send>),
CloseWindow(WindowId),
DragWindow(WindowId),
Quit,
}
Expand description
Commands that can be sent to the application.
§Example
fn ui() -> impl View {
// Here we create a button that quits the application when clicked.
on_click(
button(text("Quit")),
|cx, _| cx.cmd(AppCommand::Quit),
)
}
Variants§
OpenWindow(Window, Box<dyn FnMut() -> Box<dyn AnyView<()>> + Send>)
Open a new window.
CloseWindow(WindowId)
Close a window.
DragWindow(WindowId)
Drag a window.
Quit
Quit the application.
Implementations§
§impl AppCommand
impl AppCommand
pub fn open_window<V>(
window: Window,
view: impl FnMut() -> V + Send + 'static,
) -> AppCommandwhere
V: View + 'static,
pub fn open_window<V>(
window: Window,
view: impl FnMut() -> V + Send + 'static,
) -> AppCommandwhere
V: View + 'static,
Convenience method to open a window with a view.
Note that V
must implement View<()>
, and therefore cannot access the data of the
application. If you need to access the data, you can implement an AppDelegate
instead.
§Example
fn ui() -> impl View {
// Here we create a button that opens a new window when clicked.
on_click(
button(text("Open new window")),
|cx, _| {
let window = Window::new()
.title("New window");
cx.cmd(AppCommand::open_window(window, popup));
},
)
}
fn popup() -> impl View {
text("Hello, world!")
}
Auto Trait Implementations§
impl Freeze for AppCommand
impl !RefUnwindSafe for AppCommand
impl Send for AppCommand
impl !Sync for AppCommand
impl Unpin for AppCommand
impl !UnwindSafe for AppCommand
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