1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
use wayland_client::protocol::{wl_output, wl_seat, wl_surface};
use wayland_client::Proxy;

use wayland_protocols::xdg_shell::client::{xdg_surface, xdg_toplevel, xdg_wm_base};

use wayland_client::protocol::wl_surface::RequestsTrait as WlSurfaceRequests;
use wayland_protocols::xdg_shell::client::xdg_surface::RequestsTrait as SurfaceRequests;
use wayland_protocols::xdg_shell::client::xdg_toplevel::RequestsTrait as ToplevelRequests;
use wayland_protocols::xdg_shell::client::xdg_wm_base::RequestsTrait as ShellRequests;

use super::{Event, ShellSurface};

pub(crate) struct Xdg {
    surface: Proxy<xdg_surface::XdgSurface>,
    toplevel: Proxy<xdg_toplevel::XdgToplevel>,
}

impl Xdg {
    pub(crate) fn create<Impl>(
        surface: &Proxy<wl_surface::WlSurface>,
        shell: &Proxy<xdg_wm_base::XdgWmBase>,
        mut implementation: Impl,
    ) -> Xdg
    where
        Impl: FnMut(Event) + Send + 'static,
    {
        let xdgs = shell
            .get_xdg_surface(surface, |xdgs| {
                xdgs.implement(
                    |evt, xdgs: Proxy<_>| match evt {
                        xdg_surface::Event::Configure { serial } => {
                            xdgs.ack_configure(serial);
                        }
                    },
                    (),
                )
            })
            .unwrap();
        let toplevel = xdgs
            .get_toplevel(|toplevel| {
                toplevel.implement(
                    move |evt, _| {
                        match evt {
                            xdg_toplevel::Event::Close => implementation(Event::Close),
                            xdg_toplevel::Event::Configure {
                                width,
                                height,
                                states,
                            } => {
                                use std::cmp::max;
                                let new_size = if width == 0 || height == 0 {
                                    // if either w or h is zero, then we get to choose our size
                                    None
                                } else {
                                    Some((max(width, 1) as u32, max(height, 1) as u32))
                                };
                                let view: &[u32] = unsafe {
                                    ::std::slice::from_raw_parts(
                                        states.as_ptr() as *const _,
                                        states.len() / 4,
                                    )
                                };
                                let states = view
                                    .iter()
                                    .cloned()
                                    .flat_map(xdg_toplevel::State::from_raw)
                                    .collect::<Vec<_>>();
                                implementation(Event::Configure { new_size, states });
                            }
                        }
                    },
                    (),
                )
            })
            .unwrap();
        surface.commit();
        Xdg {
            surface: xdgs,
            toplevel,
        }
    }
}

impl ShellSurface for Xdg {
    fn resize(&self, seat: &Proxy<wl_seat::WlSeat>, serial: u32, edges: xdg_toplevel::ResizeEdge) {
        self.toplevel.resize(seat, serial, edges as u32);
    }

    fn move_(&self, seat: &Proxy<wl_seat::WlSeat>, serial: u32) {
        self.toplevel._move(seat, serial);
    }

    fn set_title(&self, title: String) {
        self.toplevel.set_title(title);
    }

    fn set_app_id(&self, app_id: String) {
        self.toplevel.set_app_id(app_id);
    }

    fn set_fullscreen(&self, output: Option<&Proxy<wl_output::WlOutput>>) {
        self.toplevel.set_fullscreen(output)
    }

    fn unset_fullscreen(&self) {
        self.toplevel.unset_fullscreen();
    }

    fn set_maximized(&self) {
        self.toplevel.set_maximized();
    }

    fn unset_maximized(&self) {
        self.toplevel.unset_maximized();
    }

    fn set_minimized(&self) {
        self.toplevel.set_minimized();
    }

    fn set_geometry(&self, x: i32, y: i32, width: i32, height: i32) {
        self.surface.set_window_geometry(x, y, width, height);
    }

    fn set_min_size(&self, size: Option<(i32, i32)>) {
        if let Some((w, h)) = size {
            self.toplevel.set_min_size(w, h);
        } else {
            self.toplevel.set_min_size(0, 0);
        }
    }

    fn set_max_size(&self, size: Option<(i32, i32)>) {
        if let Some((w, h)) = size {
            self.toplevel.set_max_size(w, h);
        } else {
            self.toplevel.set_max_size(0, 0);
        }
    }

    fn get_xdg(&self) -> Option<&Proxy<xdg_toplevel::XdgToplevel>> {
        Some(&self.toplevel)
    }
}

impl Drop for Xdg {
    fn drop(&mut self) {
        self.toplevel.destroy();
        self.surface.destroy();
    }
}