#[cfg(feature = "zbus")]
use crate::{
error::AtspiError,
events::{MessageConversion, MessageConversionExt},
ObjectRef,
};
use crate::{
events::{BusProperties, EventBodyOwned},
EventProperties,
};
use zbus_names::UniqueName;
use zvariant::ObjectPath;
#[derive(Debug, PartialEq, Clone, serde::Serialize, serde::Deserialize, Eq, Hash, Default)]
pub struct AbsEvent {
pub item: crate::events::ObjectRef,
pub x: i32,
pub y: i32,
}
#[derive(Debug, PartialEq, Clone, serde::Serialize, serde::Deserialize, Eq, Hash, Default)]
pub struct RelEvent {
pub item: crate::events::ObjectRef,
pub x: i32,
pub y: i32,
}
#[derive(Debug, PartialEq, Clone, serde::Serialize, serde::Deserialize, Eq, Hash, Default)]
pub struct ButtonEvent {
pub item: crate::events::ObjectRef,
pub detail: String,
pub mouse_x: i32,
pub mouse_y: i32,
}
impl BusProperties for AbsEvent {
const DBUS_MEMBER: &'static str = "Abs";
const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse";
const MATCH_RULE_STRING: &'static str =
"type='signal',interface='org.a11y.atspi.Event.Mouse',member='Abs'";
const REGISTRY_EVENT_STRING: &'static str = "Mouse:";
}
#[cfg(feature = "zbus")]
impl MessageConversion for AbsEvent {
type Body = EventBodyOwned;
fn from_message_unchecked_parts(item: ObjectRef, body: Self::Body) -> Result<Self, AtspiError> {
Ok(Self { item, x: body.detail1, y: body.detail2 })
}
fn from_message_unchecked(msg: &zbus::Message) -> Result<Self, AtspiError> {
let item = msg.try_into()?;
let body = msg.body();
let body: Self::Body = body.deserialize_unchecked()?;
Self::from_message_unchecked_parts(item, body)
}
fn body(&self) -> Self::Body {
let copy = self.clone();
copy.into()
}
}
impl BusProperties for RelEvent {
const DBUS_MEMBER: &'static str = "Rel";
const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse";
const MATCH_RULE_STRING: &'static str =
"type='signal',interface='org.a11y.atspi.Event.Mouse',member='Rel'";
const REGISTRY_EVENT_STRING: &'static str = "Mouse:";
}
#[cfg(feature = "zbus")]
impl MessageConversion for RelEvent {
type Body = EventBodyOwned;
fn from_message_unchecked_parts(item: ObjectRef, body: Self::Body) -> Result<Self, AtspiError> {
Ok(Self { item, x: body.detail1, y: body.detail2 })
}
fn from_message_unchecked(msg: &zbus::Message) -> Result<Self, AtspiError> {
let item = msg.try_into()?;
let body = msg.body();
let body: Self::Body = body.deserialize_unchecked()?;
Self::from_message_unchecked_parts(item, body)
}
fn body(&self) -> Self::Body {
let copy = self.clone();
copy.into()
}
}
impl BusProperties for ButtonEvent {
const DBUS_MEMBER: &'static str = "Button";
const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse";
const MATCH_RULE_STRING: &'static str =
"type='signal',interface='org.a11y.atspi.Event.Mouse',member='Button'";
const REGISTRY_EVENT_STRING: &'static str = "Mouse:";
}
#[cfg(feature = "zbus")]
impl MessageConversion for ButtonEvent {
type Body = EventBodyOwned;
fn from_message_unchecked_parts(item: ObjectRef, body: Self::Body) -> Result<Self, AtspiError> {
Ok(Self { item, detail: body.kind, mouse_x: body.detail1, mouse_y: body.detail2 })
}
fn from_message_unchecked(msg: &zbus::Message) -> Result<Self, AtspiError> {
let item = msg.try_into()?;
let body = msg.body();
let body: Self::Body = body.deserialize_unchecked()?;
Self::from_message_unchecked_parts(item, body)
}
fn body(&self) -> Self::Body {
let copy = self.clone();
copy.into()
}
}
event_test_cases!(AbsEvent);
impl_to_dbus_message!(AbsEvent);
impl_from_dbus_message!(AbsEvent);
impl_event_properties!(AbsEvent);
impl From<AbsEvent> for EventBodyOwned {
fn from(event: AbsEvent) -> Self {
EventBodyOwned { detail1: event.x, detail2: event.y, ..Default::default() }
}
}
event_test_cases!(RelEvent);
impl_to_dbus_message!(RelEvent);
impl_from_dbus_message!(RelEvent);
impl_event_properties!(RelEvent);
impl From<RelEvent> for EventBodyOwned {
fn from(event: RelEvent) -> Self {
EventBodyOwned { detail1: event.x, detail2: event.y, ..Default::default() }
}
}
event_test_cases!(ButtonEvent);
impl_to_dbus_message!(ButtonEvent);
impl_from_dbus_message!(ButtonEvent);
impl_event_properties!(ButtonEvent);
impl From<ButtonEvent> for EventBodyOwned {
fn from(event: ButtonEvent) -> Self {
EventBodyOwned {
kind: event.detail,
detail1: event.mouse_x,
detail2: event.mouse_y,
..Default::default()
}
}
}