Home
last modified time | relevance | path

Searched defs:GuiWindow (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/crosvm/gpu_display/src/gpu_display_win/
H A Dmouse_input_manager.rs105 _window: &GuiWindow, in new()
137 pub fn handle_raw_input_event(&mut self, window: &GuiWindow, input_lparam: HRAWINPUT) { in handle_raw_input_event()
214 fn process_valid_raw_input_mouse(&mut self, window: &GuiWindow, raw_input: &RAWINPUT) { in process_valid_raw_input_mouse()
296 window: &GuiWindow, in handle_multi_touch_finger()
335 window: &GuiWindow, in handle_mouse_move()
348 fn adjust_capture_on_mouse_button(&self, down: bool, window: &GuiWindow) { in adjust_capture_on_mouse_button()
371 window: &GuiWindow, in handle_mouse_button_left()
388 fn handle_mouse_button_right(&mut self, window: &GuiWindow, down: bool) { in handle_mouse_button_right()
398 fn handle_mouse_button_middle(&mut self, window: &GuiWindow, down: bool) { in handle_mouse_button_middle()
408 fn handle_mouse_button_forward(&mut self, window: &GuiWindow, down: bool) { in handle_mouse_button_forward()
[all …]
H A Dsurface.rs75 #[allow(unused)] window: &GuiWindow, in update_virtual_display_projection()
141 window: &GuiWindow, in new()
202 window: &GuiWindow, in handle_key_event()
220 fn set_mouse_mode(&mut self, window: &GuiWindow, mouse_mode: MouseMode) { in set_mouse_mode()
227 window: &GuiWindow, in update_host_viewport_size()
265 fn on_message_dispatcher_attached(&mut self, window: &GuiWindow) { in on_message_dispatcher_attached()
280 window: &GuiWindow, in handle_window_message()
318 window: &GuiWindow, in handle_general_message()
345 window: &GuiWindow, in handle_window_pos_message()
364 fn on_host_viewport_change(&mut self, window: &GuiWindow, l_param: LPARAM) { in on_host_viewport_change()
H A Dkeyboard_input_manager.rs51 pub fn handle_window_message(&self, window: &GuiWindow, message: &WindowMessage) { in handle_window_message()
67 pub fn handle_guest_event(&self, window: &GuiWindow, event: virtio_input_event) { in handle_guest_event()
78 fn handle_window_activate(&self, window: &GuiWindow, is_activated: bool) { in handle_window_activate()
91 window: &GuiWindow, in handle_host_key_event()
107 fn sync_key_states(&self, window: &GuiWindow) { in sync_key_states()
132 fn release_any_down_keys(&self, window: &GuiWindow) { in release_any_down_keys()
182 fn press_and_release_key(&self, window: &GuiWindow, key: u16) { in press_and_release_key()
194 window: &GuiWindow, in dispatch_linux_key_event()
H A Dwindow.rs311 pub struct GuiWindow { struct
317 impl GuiWindow { argument
768 impl BasicWindow for GuiWindow { implementation
H A Dwindow_manager.rs22 _window: &GuiWindow, in new()
36 pub fn handle_display_change(&mut self, _window: &GuiWindow) {} in handle_display_change()
38 pub fn handle_window_pos_message(&mut self, _window: &GuiWindow, _message: &WindowPosMessage) {} in handle_window_pos_message()
H A Dwindow_message_dispatcher.rs76 window: &GuiWindow, in dispatch()
196 gui_windows: Vec<GuiWindow>, in new()
H A Dwindow_procedure_thread.rs160 impl RegisterWindowClass for GuiWindow { implementation
543 unsafe fn create_windows(max_num_windows: u32) -> Result<(MessageOnlyWindow, Vec<GuiWindow>)> { in create_windows()
H A Dwindow_message_processor.rs134 pub fn window(&self) -> &GuiWindow { in window()