[][src]Enum smithay_client_toolkit::pointer::AutoThemer

pub enum AutoThemer {
    Themed(ThemeManager),
    UnThemed,
}

Wrapper to gracefully handle a missing libwayland-cursor

This wrapper has the same API as ThemeManager, but will gracefully handle the case of a missing libwayland-cursor by doing nothing.

It is a convenience wrapper to handle systems where libwayland-client.so is available but not libwayland-cursor.so.

Variants

Themed(ThemeManager)

The theme could be loaded

UnThemed

libwayland-cursor.so is not available

Methods

impl AutoThemer[src]

pub fn init(
    name: Option<&str>,
    compositor: WlCompositor,
    shm: &WlShm
) -> AutoThemer
[src]

Load a system pointer theme

Will use the default theme of the system if name is None.

Falls back to UnThemed if libwayland-cursor is not available.

pub fn theme_pointer(&self, pointer: WlPointer) -> AutoPointer[src]

Wrap a pointer to theme it

pub fn theme_pointer_with_impl<Impl, UD>(
    &self,
    seat: &WlSeat,
    implementation: Impl,
    user_data: UD
) -> AutoPointer where
    Impl: FnMut(Event, AutoPointer) + 'static,
    UD: 'static, 
[src]

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 an AutoPointer wrapping your pointer, rather than a WlPointer.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.