Home
last modified time | relevance | path

Searched refs:CursorKind (Results 1 – 2 of 2) sorted by relevance

/StarryEngine/starry_server/src/core/
H A Dmod.rs11 window_manager::{window_manager, CursorKind, WindowManager},
38 pub cursors: RefCell<BTreeMap<CursorKind, Image>>,
45 cursors.insert(CursorKind::None, Image::new(0, 0)); in new()
47 CursorKind::Normal, in new()
H A Dwindow_manager.rs32 pub enum CursorKind { enum
68 pub cursor_i: Cell<CursorKind>,
85 cursor_i: Cell::new(CursorKind::Normal), in new()
224 let /*mut*/ new_cursor = CursorKind::Normal; in handle_mouse_update_event()
251 fn update_cursor(&self, x: i32, y: i32, kind: CursorKind) { in update_cursor() argument