1
0
Fork 0
forked from wry/wry

autocommit 2022-02-05 18:14:24 CET

This commit is contained in:
Julian Orth 2022-02-05 18:14:24 +01:00
parent 2d8b3a200e
commit 3a4ae99b9a
71 changed files with 1626 additions and 1306 deletions

View file

@ -4,7 +4,7 @@ use crate::client::Client;
use crate::globals::{Global, GlobalName};
use crate::ifs::wl_region::WlRegion;
use crate::ifs::wl_surface::WlSurface;
use crate::object::{Interface, Object, ObjectId};
use crate::object::{Interface, Object};
use crate::utils::buffd::MsgParser;
use std::rc::Rc;
pub use types::*;
@ -18,7 +18,7 @@ pub struct WlCompositorGlobal {
name: GlobalName,
}
pub struct WlCompositorObj {
pub struct WlCompositor {
id: WlCompositorId,
client: Rc<Client>,
_version: u32,
@ -35,7 +35,7 @@ impl WlCompositorGlobal {
client: &Rc<Client>,
version: u32,
) -> Result<(), WlCompositorError> {
let obj = Rc::new(WlCompositorObj {
let obj = Rc::new(WlCompositor {
id,
client: client.clone(),
_version: version,
@ -45,7 +45,7 @@ impl WlCompositorGlobal {
}
}
impl WlCompositorObj {
impl WlCompositor {
fn create_surface(&self, parser: MsgParser<'_, '_>) -> Result<(), CreateSurfaceError> {
let surface: CreateSurface = self.client.parse(self, parser)?;
let surface = Rc::new(WlSurface::new(surface.id, &self.client));
@ -59,19 +59,6 @@ impl WlCompositorObj {
self.client.add_client_obj(&region)?;
Ok(())
}
fn handle_request_(
&self,
request: u32,
parser: MsgParser<'_, '_>,
) -> Result<(), WlCompositorError> {
match request {
CREATE_SURFACE => self.create_surface(parser)?,
CREATE_REGION => self.create_region(parser)?,
_ => unreachable!(),
}
Ok(())
}
}
bind!(WlCompositorGlobal);
@ -94,18 +81,19 @@ impl Global for WlCompositorGlobal {
}
}
handle_request!(WlCompositorObj);
simple_add_global!(WlCompositorGlobal);
impl Object for WlCompositorObj {
fn id(&self) -> ObjectId {
self.id.into()
}
object_base! {
WlCompositor, WlCompositorError;
fn interface(&self) -> Interface {
Interface::WlCompositor
}
CREATE_SURFACE => create_surface,
CREATE_REGION => create_region,
}
impl Object for WlCompositor {
fn num_requests(&self) -> u32 {
CREATE_REGION + 1
}
}
simple_add_obj!(WlCompositor);