1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use serde::{Deserialize, Serialize};

/// Struct which holds information about whether the window is focused.
/// Written to by MouseFocusUpdateSystem
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub struct WindowFocus {
    /// If true then the window is actively focused.
    pub is_focused: bool,
}

impl WindowFocus {
    /// Builds a new WindowFocus resource.
    pub fn new() -> WindowFocus {
        WindowFocus { is_focused: true }
    }
}

/// Resource indicating if the mouse should be grabbed and hidden by the CursorHideSystem
/// when the window is focused.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub struct HideCursor {
    /// If true this system will take control of the cursor.
    pub hide: bool,
}

impl Default for HideCursor {
    fn default() -> Self {
        HideCursor { hide: true }
    }
}