Skip to main content

tm_os_window_api

Struct tm_os_window_api 

Source
#[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

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl Copy for tm_os_window_api

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.