pub struct ZwpTabletV2 { /* private fields */ }
Expand description
graphics tablet device
The wp_tablet interface represents one graphics tablet device. The tablet interface itself does not generate events; all events are generated by wp_tablet_tool objects when in proximity above a tablet.
A tablet has a number of static characteristics, e.g. device name and pid/vid. These capabilities are sent in an event sequence after the wp_tablet_seat.tablet_added event. This initial event sequence is terminated by a wp_tablet.done event.
See also the Request enum for this interface.
Implementations§
Source§impl ZwpTabletV2
impl ZwpTabletV2
Sourcepub fn name(&self, name: String)
pub fn name(&self, name: String)
tablet device name
A descriptive name for the tablet device.
If the device has no descriptive name, this event is not sent.
This event is sent in the initial burst of events before the wp_tablet.done event.
Sourcepub fn id(&self, vid: u32, pid: u32)
pub fn id(&self, vid: u32, pid: u32)
tablet device vendor/product id
The vendor and product IDs for the tablet device.
The interpretation of the id depends on the wp_tablet.bustype. Prior to version v2 of this protocol, the id was implied to be a USB vendor and product ID. If no wp_tablet.bustype is sent, the ID is to be interpreted as USB vendor and product ID.
If the device has no vendor/product ID, this event is not sent. This can happen for virtual devices or non-USB devices, for instance.
This event is sent in the initial burst of events before the wp_tablet.done event.
Sourcepub fn path(&self, path: String)
pub fn path(&self, path: String)
path to the device
A system-specific device path that indicates which device is behind this wp_tablet. This information may be used to gather additional information about the device, e.g. through libwacom.
A device may have more than one device path. If so, multiple wp_tablet.path events are sent. A device may be emulated and not have a device path, and in that case this event will not be sent.
The format of the path is unspecified, it may be a device node, a sysfs path, or some other identifier. It is up to the client to identify the string provided.
This event is sent in the initial burst of events before the wp_tablet.done event.
Sourcepub fn done(&self)
pub fn done(&self)
tablet description events sequence complete
This event is sent immediately to signal the end of the initial burst of descriptive events. A client may consider the static description of the tablet to be complete and finalize initialization of the tablet.
Sourcepub fn removed(&self)
pub fn removed(&self)
tablet removed event
Sent when the tablet has been removed from the system. When a tablet is removed, some tools may be removed.
When this event is received, the client must wp_tablet.destroy the object.
Sourcepub fn bustype(&self, bustype: Bustype)
pub fn bustype(&self, bustype: Bustype)
tablet device bus type
The bustype argument is one of the BUS_ defines in the Linux kernel’s linux/input.h
If the device has no known bustype or the bustype cannot be queried, this event is not sent.
This event is sent in the initial burst of events before the wp_tablet.done event.
Trait Implementations§
Source§impl Borrow<ObjectId> for ZwpTabletV2
impl Borrow<ObjectId> for ZwpTabletV2
Source§impl Clone for ZwpTabletV2
impl Clone for ZwpTabletV2
Source§fn clone(&self) -> ZwpTabletV2
fn clone(&self) -> ZwpTabletV2
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ZwpTabletV2
impl Debug for ZwpTabletV2
Source§impl Hash for ZwpTabletV2
impl Hash for ZwpTabletV2
Source§impl PartialEq<Weak<ZwpTabletV2>> for ZwpTabletV2
impl PartialEq<Weak<ZwpTabletV2>> for ZwpTabletV2
Source§impl PartialEq for ZwpTabletV2
impl PartialEq for ZwpTabletV2
Source§impl Resource for ZwpTabletV2
impl Resource for ZwpTabletV2
Source§fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
Source§fn handle(&self) -> &WeakHandle
fn handle(&self) -> &WeakHandle
Source§fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
Source§fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
Source§fn parse_request(
conn: &DisplayHandle,
msg: Message<ObjectId, OwnedFd>,
) -> Result<(Self, Self::Request), DispatchError>
fn parse_request( conn: &DisplayHandle, msg: Message<ObjectId, OwnedFd>, ) -> Result<(Self, Self::Request), DispatchError>
Source§fn write_event<'a>(
&self,
conn: &DisplayHandle,
msg: Self::Event<'a>,
) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
fn write_event<'a>( &self, conn: &DisplayHandle, msg: Self::Event<'a>, ) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
Source§fn is_alive(&self) -> bool
fn is_alive(&self) -> bool
impl Eq for ZwpTabletV2
Auto Trait Implementations§
impl Freeze for ZwpTabletV2
impl !RefUnwindSafe for ZwpTabletV2
impl Send for ZwpTabletV2
impl Sync for ZwpTabletV2
impl Unpin for ZwpTabletV2
impl !UnwindSafe for ZwpTabletV2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.