Struct ImGuiPlatformIO

Source
#[repr(C)]
pub struct ImGuiPlatformIO {
Show 39 fields pub Platform_GetClipboardTextFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext) -> *const c_char>, pub Platform_SetClipboardTextFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, text: *const c_char)>, pub Platform_ClipboardUserData: *mut c_void, pub Platform_OpenInShellFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, path: *const c_char) -> bool>, pub Platform_OpenInShellUserData: *mut c_void, pub Platform_SetImeDataFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, viewport: *mut ImGuiViewport, data: *mut ImGuiPlatformImeData)>, pub Platform_ImeUserData: *mut c_void, pub Platform_LocaleDecimalPoint: ImWchar, pub Renderer_TextureMaxWidth: c_int, pub Renderer_TextureMaxHeight: c_int, pub Renderer_RenderState: *mut c_void, pub Platform_CreateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_DestroyWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_ShowWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_SetWindowPos: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, pos: ImVec2)>, pub Platform_GetWindowPos: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>, pub Platform_SetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, size: ImVec2)>, pub Platform_GetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>, pub Platform_GetWindowFramebufferScale: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>, pub Platform_SetWindowFocus: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_GetWindowFocus: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> bool>, pub Platform_GetWindowMinimized: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> bool>, pub Platform_SetWindowTitle: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, str_: *const c_char)>, pub Platform_SetWindowAlpha: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, alpha: f32)>, pub Platform_UpdateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_RenderWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>, pub Platform_SwapBuffers: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>, pub Platform_GetWindowDpiScale: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> f32>, pub Platform_OnChangedViewport: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Platform_GetWindowWorkAreaInsets: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec4>, pub Platform_CreateVkSurface: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, vk_inst: ImU64, vk_allocators: *const c_void, out_vk_surface: *mut ImU64) -> c_int>, pub Renderer_CreateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Renderer_DestroyWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>, pub Renderer_SetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, size: ImVec2)>, pub Renderer_RenderWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>, pub Renderer_SwapBuffers: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>, pub Monitors: ImVector<ImGuiPlatformMonitor>, pub Textures: ImVector<*mut ImTextureData>, pub Viewports: ImVector<*mut ImGuiViewport>,
}

Fields§

§Platform_GetClipboardTextFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext) -> *const c_char>§Platform_SetClipboardTextFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, text: *const c_char)>§Platform_ClipboardUserData: *mut c_void§Platform_OpenInShellFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, path: *const c_char) -> bool>§Platform_OpenInShellUserData: *mut c_void§Platform_SetImeDataFn: Option<unsafe extern "C" fn(ctx: *mut ImGuiContext, viewport: *mut ImGuiViewport, data: *mut ImGuiPlatformImeData)>§Platform_ImeUserData: *mut c_void§Platform_LocaleDecimalPoint: ImWchar§Renderer_TextureMaxWidth: c_int§Renderer_TextureMaxHeight: c_int§Renderer_RenderState: *mut c_void§Platform_CreateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_DestroyWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_ShowWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_SetWindowPos: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, pos: ImVec2)>§Platform_GetWindowPos: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>§Platform_SetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, size: ImVec2)>§Platform_GetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>§Platform_GetWindowFramebufferScale: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec2>§Platform_SetWindowFocus: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_GetWindowFocus: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> bool>§Platform_GetWindowMinimized: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> bool>§Platform_SetWindowTitle: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, str_: *const c_char)>§Platform_SetWindowAlpha: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, alpha: f32)>§Platform_UpdateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_RenderWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>§Platform_SwapBuffers: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>§Platform_GetWindowDpiScale: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> f32>§Platform_OnChangedViewport: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Platform_GetWindowWorkAreaInsets: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport) -> ImVec4>§Platform_CreateVkSurface: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, vk_inst: ImU64, vk_allocators: *const c_void, out_vk_surface: *mut ImU64) -> c_int>§Renderer_CreateWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Renderer_DestroyWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport)>§Renderer_SetWindowSize: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, size: ImVec2)>§Renderer_RenderWindow: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>§Renderer_SwapBuffers: Option<unsafe extern "C" fn(vp: *mut ImGuiViewport, render_arg: *mut c_void)>§Monitors: ImVector<ImGuiPlatformMonitor>§Textures: ImVector<*mut ImTextureData>§Viewports: ImVector<*mut ImGuiViewport>

Implementations§

Source§

impl ImGuiPlatformIO

Source

pub unsafe fn new() -> Self

Trait Implementations§

Source§

impl Debug for ImGuiPlatformIO

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> 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, 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.