[−][src]Struct smithay_client_toolkit::pointer::ThemeManager
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
Implementations
impl ThemeManager
[src]
pub fn init(
name: Option<&str>,
compositor: WlCompositor,
shm: &WlShm
) -> Result<ThemeManager, ()>
[src]
name: Option<&str>,
compositor: WlCompositor,
shm: &WlShm
) -> Result<ThemeManager, ()>
Load a system pointer theme
Will use the default theme of the system if name is None
or XCURSOR_THEME
is unset.
The size of the theme is controlled by XCURSOR_SIZE
environment variable.
Fails if libwayland-cursor
is not available.
pub fn theme_pointer(&self, pointer: WlPointer) -> ThemedPointer
[src]
Wrap a pointer to theme it
pub fn theme_pointer_with_impl<Impl, UD>(
&self,
seat: &WlSeat,
implementation: Impl,
user_data: UD
) -> ThemedPointer where
Impl: FnMut(Event, ThemedPointer) + 'static,
UD: 'static,
[src]
&self,
seat: &WlSeat,
implementation: Impl,
user_data: UD
) -> ThemedPointer where
Impl: FnMut(Event, ThemedPointer) + 'static,
UD: '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 WlPointer
.
Auto Trait Implementations
impl !RefUnwindSafe for ThemeManager
impl Send for ThemeManager
impl Sync for ThemeManager
impl Unpin for ThemeManager
impl !UnwindSafe for ThemeManager
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,