#[repr(C)]pub struct tm_os_window_api {Show 22 fields
pub create_window: Option<unsafe extern "C" fn(title: *const c_char, rect: tm_rect_t, style_flags: tm_os_window_style, center_display: *const tm_display_o) -> *mut tm_window_o>,
pub update_window: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_update_result_t>,
pub wait: Option<unsafe extern "C" fn()>,
pub destroy_window: Option<unsafe extern "C" fn(window: *mut tm_window_o)>,
pub set_rect: Option<unsafe extern "C" fn(window: *mut tm_window_o, rect: tm_rect_t)>,
pub rect: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_rect_t>,
pub dpi_scale_factor: Option<unsafe extern "C" fn(window: *const tm_window_o) -> f32>,
pub adjust_rect: Option<unsafe extern "C" fn(rect: tm_rect_t, dpi_scale_factor: f32, arg1: tm_os_window_adjust_rect) -> tm_rect_t>,
pub set_size: Option<unsafe extern "C" fn(window: *mut tm_window_o, width: f32, height: f32)>,
pub set_client_titlebar_area: Option<unsafe extern "C" fn(window: *mut tm_window_o, left_margin: f32, right_margin: f32)>,
pub has_user_requested_close: Option<unsafe extern "C" fn(window: *mut tm_window_o, reset: bool) -> bool>,
pub set_cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor_mode)>,
pub cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor_mode>,
pub set_cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor)>,
pub cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor>,
pub dropped_files: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> *const tm_os_dropped_file_t>,
pub status: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_status_t>,
pub platform_data: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_window_platform_data_o>,
pub window_from_point: Option<unsafe extern "C" fn(pos: tm_vec2_t) -> *mut tm_window_o>,
pub set_focus: Option<unsafe extern "C" fn(window: *mut tm_window_o)>,
pub set_window_state: Option<unsafe extern "C" fn(window: *mut tm_window_o, state: tm_os_window_state)>,
pub set_title: Option<unsafe extern "C" fn(window: *mut tm_window_o, title: *const c_char)>,
}Fields§
§create_window: Option<unsafe extern "C" fn(title: *const c_char, rect: tm_rect_t, style_flags: tm_os_window_style, center_display: *const tm_display_o) -> *mut tm_window_o>§update_window: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_update_result_t>§wait: Option<unsafe extern "C" fn()>§destroy_window: Option<unsafe extern "C" fn(window: *mut tm_window_o)>§set_rect: Option<unsafe extern "C" fn(window: *mut tm_window_o, rect: tm_rect_t)>§rect: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_rect_t>§dpi_scale_factor: Option<unsafe extern "C" fn(window: *const tm_window_o) -> f32>§adjust_rect: Option<unsafe extern "C" fn(rect: tm_rect_t, dpi_scale_factor: f32, arg1: tm_os_window_adjust_rect) -> tm_rect_t>§set_size: Option<unsafe extern "C" fn(window: *mut tm_window_o, width: f32, height: f32)>§set_client_titlebar_area: Option<unsafe extern "C" fn(window: *mut tm_window_o, left_margin: f32, right_margin: f32)>§has_user_requested_close: Option<unsafe extern "C" fn(window: *mut tm_window_o, reset: bool) -> bool>§set_cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor_mode)>§cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor_mode>§set_cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor)>§cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor>§dropped_files: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> *const tm_os_dropped_file_t>§status: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_status_t>§platform_data: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_window_platform_data_o>§window_from_point: Option<unsafe extern "C" fn(pos: tm_vec2_t) -> *mut tm_window_o>§set_focus: Option<unsafe extern "C" fn(window: *mut tm_window_o)>§set_window_state: Option<unsafe extern "C" fn(window: *mut tm_window_o, state: tm_os_window_state)>§set_title: Option<unsafe extern "C" fn(window: *mut tm_window_o, title: *const c_char)>Trait Implementations§
Source§impl Clone for tm_os_window_api
impl Clone for tm_os_window_api
Source§fn clone(&self) -> tm_os_window_api
fn clone(&self) -> tm_os_window_api
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for tm_os_window_api
Auto Trait Implementations§
impl Freeze for tm_os_window_api
impl RefUnwindSafe for tm_os_window_api
impl Send for tm_os_window_api
impl Sync for tm_os_window_api
impl Unpin for tm_os_window_api
impl UnsafeUnpin for tm_os_window_api
impl UnwindSafe for tm_os_window_api
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more