pub type cef_mouse_event_t = _cef_mouse_event_t;Expand description
Structure representing mouse event information.
Aliased Type§
#[repr(C)]pub struct cef_mouse_event_t {
pub x: i32,
pub y: i32,
pub modifiers: u32,
}Fields§
§x: i32X coordinate relative to the left side of the view.
y: i32Y coordinate relative to the top side of the view.
modifiers: u32Bit flags describing any pressed modifier keys. See cef_event_flags_t for values.