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
|
/*
* Copyright (C) 2017-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "utils/Geometry.h"
#include <bitset>
#include <cstdint>
#include <wayland-client.hpp>
namespace KODI
{
namespace WINDOWING
{
namespace WAYLAND
{
class IShellSurfaceHandler;
/**
* Abstraction for shell surfaces to support multiple protocols
* such as wl_shell (for compatibility) and xdg_shell (for features)
*
* The interface itself is modeled after xdg_shell, so see there for the meaning
* of e.g. the surface states
*/
class IShellSurface
{
public:
// Not enum class since it must be used like a bitfield
enum State
{
STATE_MAXIMIZED = 0,
STATE_FULLSCREEN,
STATE_RESIZING,
STATE_ACTIVATED,
STATE_COUNT
};
using StateBitset = std::bitset<STATE_COUNT>;
static std::string StateToString(StateBitset state);
/**
* Initialize shell surface
*
* The event loop thread MUST NOT be running when this function is called.
* The difference to the constructor is that in this function callbacks may
* already be called.
*/
virtual void Initialize() = 0;
virtual void SetFullScreen(wayland::output_t const& output, float refreshRate) = 0;
virtual void SetWindowed() = 0;
virtual void SetMaximized() = 0;
virtual void UnsetMaximized() = 0;
virtual void SetMinimized() = 0;
virtual void SetWindowGeometry(CRectInt geometry) = 0;
virtual void AckConfigure(std::uint32_t serial) = 0;
virtual void StartMove(wayland::seat_t const& seat, std::uint32_t serial) = 0;
virtual void StartResize(wayland::seat_t const& seat, std::uint32_t serial, wayland::shell_surface_resize edge) = 0;
virtual void ShowShellContextMenu(wayland::seat_t const& seat, std::uint32_t serial, CPointInt position) = 0;
virtual ~IShellSurface() = default;
protected:
IShellSurface() noexcept = default;
private:
IShellSurface(IShellSurface const& other) = delete;
IShellSurface& operator=(IShellSurface const& other) = delete;
};
class IShellSurfaceHandler
{
public:
virtual void OnConfigure(std::uint32_t serial, CSizeInt size, IShellSurface::StateBitset state) = 0;
virtual void OnClose() = 0;
virtual ~IShellSurfaceHandler() = default;
};
}
}
}
|