use { crate::{ client::{Client, ClientError}, globals::{Global, GlobalName}, ifs::zxdg_output_v1::ZxdgOutputV1, leaks::Tracker, object::{Object, Version}, wire::{ZxdgOutputManagerV1Id, zxdg_output_manager_v1::*}, }, std::rc::Rc, thiserror::Error, }; pub struct ZxdgOutputManagerV1Global { name: GlobalName, } pub struct ZxdgOutputManagerV1 { pub id: ZxdgOutputManagerV1Id, pub client: Rc, pub version: Version, pub tracker: Tracker, } impl ZxdgOutputManagerV1Global { pub fn new(name: GlobalName) -> Self { Self { name } } fn bind_( self: Rc, id: ZxdgOutputManagerV1Id, client: &Rc, version: Version, ) -> Result<(), ZxdgOutputManagerV1Error> { let obj = Rc::new(ZxdgOutputManagerV1 { id, client: client.clone(), version, tracker: Default::default(), }); track!(client, obj); client.add_client_obj(&obj)?; Ok(()) } } impl ZxdgOutputManagerV1RequestHandler for ZxdgOutputManagerV1 { type Error = ZxdgOutputManagerV1Error; fn destroy(&self, _req: Destroy, _slf: &Rc) -> Result<(), Self::Error> { self.client.remove_obj(self)?; Ok(()) } fn get_xdg_output(&self, req: GetXdgOutput, _slf: &Rc) -> Result<(), Self::Error> { let output = self.client.lookup(req.output)?; let xdg_output = Rc::new(ZxdgOutputV1 { id: req.id, version: self.version, client: self.client.clone(), output: output.clone(), tracker: Default::default(), }); track!(self.client, xdg_output); self.client.add_client_obj(&xdg_output)?; xdg_output.send_updates(); output.xdg_outputs.set(req.id, xdg_output); Ok(()) } } global_base!( ZxdgOutputManagerV1Global, ZxdgOutputManagerV1, ZxdgOutputManagerV1Error ); impl Global for ZxdgOutputManagerV1Global { fn singleton(&self) -> bool { true } fn version(&self) -> u32 { 3 } } simple_add_global!(ZxdgOutputManagerV1Global); object_base! { self = ZxdgOutputManagerV1; version = self.version; } simple_add_obj!(ZxdgOutputManagerV1); impl Object for ZxdgOutputManagerV1 {} #[derive(Debug, Error)] pub enum ZxdgOutputManagerV1Error { #[error(transparent)] ClientError(Box), } efrom!(ZxdgOutputManagerV1Error, ClientError);