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
|
/*
* Copyright © 2018 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: William Wold <william.wold@canonical.com>
*/
#ifndef WLCS_XDG_SHELL_STABLE_H
#define WLCS_XDG_SHELL_STABLE_H
#include "in_process_server.h"
#include "generated/xdg-shell-client.h"
#include "wl_interface_descriptor.h"
#include "wl_handle.h"
#include <gmock/gmock.h>
namespace wlcs
{
WLCS_CREATE_INTERFACE_DESCRIPTOR(xdg_wm_base)
class XdgSurfaceStable
{
public:
XdgSurfaceStable(wlcs::Client& client, wlcs::Surface& surface);
XdgSurfaceStable(XdgSurfaceStable const&) = delete;
XdgSurfaceStable& operator=(XdgSurfaceStable const&) = delete;
~XdgSurfaceStable();
MOCK_METHOD(void, configure, (uint32_t serial));
operator xdg_surface*() const {return shell_surface;}
private:
xdg_surface* shell_surface;
};
class XdgToplevelStable
{
public:
struct State
{
State(int32_t width, int32_t height, struct wl_array *states);
int width;
int height;
bool maximized;
bool fullscreen;
bool resizing;
bool activated;
};
XdgToplevelStable(XdgSurfaceStable& shell_surface_);
XdgToplevelStable(XdgToplevelStable const&) = delete;
XdgToplevelStable& operator=(XdgToplevelStable const&) = delete;
~XdgToplevelStable();
MOCK_METHOD(void, configure, (int32_t width, int32_t height, wl_array* states));
MOCK_METHOD(void, close, ());
MOCK_METHOD(void, configure_bounds, (int32_t width, int32_t height));
MOCK_METHOD(void, wm_capabilities, (wl_array* capabilities));
operator xdg_toplevel*() const {return toplevel;}
XdgSurfaceStable* const shell_surface;
xdg_toplevel* toplevel;
};
class XdgPositionerStable
{
public:
XdgPositionerStable(wlcs::Client& client);
~XdgPositionerStable();
operator xdg_positioner*() const {return positioner;}
auto setup_default(std::pair<int, int> size) -> XdgPositionerStable&;
private:
xdg_positioner* const positioner;
};
class XdgPopupStable
{
public:
XdgPopupStable(
XdgSurfaceStable& shell_surface_,
std::optional<XdgSurfaceStable*> parent,
XdgPositionerStable& positioner);
XdgPopupStable(XdgPopupStable const&) = delete;
XdgPopupStable& operator=(XdgPopupStable const&) = delete;
~XdgPopupStable();
MOCK_METHOD(void, configure, (int32_t x, int32_t y, int32_t width, int32_t height));
MOCK_METHOD(void, done, ());
MOCK_METHOD(void, repositioned, (uint32_t token));
operator xdg_popup*() const {return popup;}
XdgSurfaceStable* const shell_surface;
xdg_popup* const popup;
std::vector<std::function<void(int32_t, int32_t, int32_t, int32_t)>> configure_notifiers;
std::vector<std::function<void()>> popup_done_notifiers;
};
}
#endif // WLCS_XDG_SHELL_STABLE_H
|