Struct smithay_client_toolkit::pointer::ThemeManager [−][src]
pub struct ThemeManager { /* fields omitted */ }Wrapper managing a system theme for pointer images
You can use it to initialize new pointers in order to theme them.
Is is also clone-able in case you need to handle several pointer theming from different places.
Note that it is however not Send nor Sync
Methods
impl ThemeManager[src]
impl ThemeManagerpub fn init(
name: Option<&str>,
compositor: Proxy<WlCompositor>,
shm: Proxy<WlShm>
) -> Result<ThemeManager, ()>[src]
pub fn init(
name: Option<&str>,
compositor: Proxy<WlCompositor>,
shm: Proxy<WlShm>
) -> Result<ThemeManager, ()>Load a system pointer theme
Will use the default theme of the system if name is None.
Fails if libwayland-cursor is not available.
pub fn theme_pointer(&self, pointer: Proxy<WlPointer>) -> ThemedPointer[src]
pub fn theme_pointer(&self, pointer: Proxy<WlPointer>) -> ThemedPointerWrap a pointer to theme it
pub fn theme_pointer_with_impl<Impl>(
&self,
pointer: NewProxy<WlPointer>,
implementation: Impl
) -> ThemedPointer where
Impl: Implementation<ThemedPointer, Event> + Send + 'static, [src]
pub fn theme_pointer_with_impl<Impl>(
&self,
pointer: NewProxy<WlPointer>,
implementation: Impl
) -> ThemedPointer where
Impl: Implementation<ThemedPointer, Event> + Send + 'static, Initialize a new pointer as a ThemedPointer with an adapter implementation
You need to provide an implementation as if implementing a wl_pointer, but
it will receive as meta argument a ThemedPointer wrapping your pointer,
rather than a Proxy<WlPointer>.
pub unsafe fn theme_pointer_with_nonsend_impl<Impl>(
&self,
pointer: NewProxy<WlPointer>,
implementation: Impl,
token: &QueueToken
) -> ThemedPointer where
Impl: Implementation<ThemedPointer, Event> + Send + 'static, [src]
pub unsafe fn theme_pointer_with_nonsend_impl<Impl>(
&self,
pointer: NewProxy<WlPointer>,
implementation: Impl,
token: &QueueToken
) -> ThemedPointer where
Impl: Implementation<ThemedPointer, Event> + Send + 'static, Initialize a new pointer as a ThemedPointer with an adapter implementation
Like theme_pointer_with_impl but allows you to have a non-Send implementation.
Unsafe for the same reasons as NewProxy::implement_nonsend.
Auto Trait Implementations
impl Send for ThemeManager
impl Send for ThemeManagerimpl Sync for ThemeManager
impl Sync for ThemeManager