Struct ytesrev::window::WindowManagerSettings[][src]

pub struct WindowManagerSettings {
    pub windows: Vec<(String, WindowSettings)>,
    pub event_step_rule: Box<Fn(Event) -> bool>,
    pub quit_rule: Box<Fn(Event) -> bool>,
}

Settings for the manager in general

Fields

Title and settings of each window

What events should make the presentation step forward? Default: The space button or mouse press

At what event should the presentation quit? Default: On escape or the window is closed.

Auto Trait Implementations