Trait sourceview5::prelude::SeatExt
source · pub trait SeatExt: IsA<Seat> + Sealed + 'static {
// Provided methods
fn capabilities(&self) -> SeatCapabilities { ... }
fn devices(&self, capabilities: SeatCapabilities) -> Vec<Device> { ... }
fn display(&self) -> Display { ... }
fn keyboard(&self) -> Option<Device> { ... }
fn pointer(&self) -> Option<Device> { ... }
fn tools(&self) -> Vec<DeviceTool> { ... }
fn connect_device_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Device) + 'static { ... }
fn connect_device_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Device) + 'static { ... }
fn connect_tool_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DeviceTool) + 'static { ... }
fn connect_tool_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DeviceTool) + 'static { ... }
}
Provided Methods§
fn capabilities(&self) -> SeatCapabilities
fn devices(&self, capabilities: SeatCapabilities) -> Vec<Device>
fn display(&self) -> Display
fn keyboard(&self) -> Option<Device>
fn pointer(&self) -> Option<Device>
fn tools(&self) -> Vec<DeviceTool>
fn connect_device_added<F>(&self, f: F) -> SignalHandlerId
fn connect_device_removed<F>(&self, f: F) -> SignalHandlerId
fn connect_tool_added<F>(&self, f: F) -> SignalHandlerId
fn connect_tool_removed<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.