Skip to main content

orinium_browser/browser/core/
command.rs

1#[derive(Debug, Clone)]
2pub enum BrowserCommand {
3    None,
4    Exit,
5    RequestRedraw,
6    RenameWindowTitle,
7    OpenNewWindow,
8    /// Enables or disables OS IME input near the last click position.
9    SetImeAllowed {
10        allowed: bool,
11        position: (f64, f64),
12    },
13}