qwaylandxdgshell.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: http://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtWaylandCompositor module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL3$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see http://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at http://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or later as published by the Free
  28. ** Software Foundation and appearing in the file LICENSE.GPL included in
  29. ** the packaging of this file. Please review the following information to
  30. ** ensure the GNU General Public License version 2.0 requirements will be
  31. ** met: http://www.gnu.org/licenses/gpl-2.0.html.
  32. **
  33. ** $QT_END_LICENSE$
  34. **
  35. ****************************************************************************/
  36. #ifndef QWAYLANDXDGSHELL_H
  37. #define QWAYLANDXDGSHELL_H
  38. #include <QtWaylandCompositor/QWaylandCompositorExtension>
  39. #include <QtWaylandCompositor/QWaylandResource>
  40. #include <QtWaylandCompositor/QWaylandShellSurface>
  41. #include <QtCore/QRect>
  42. struct wl_resource;
  43. QT_BEGIN_NAMESPACE
  44. class QWaylandXdgShellPrivate;
  45. class QWaylandXdgSurface;
  46. class QWaylandXdgSurfacePrivate;
  47. class QWaylandXdgPopup;
  48. class QWaylandXdgPopupPrivate;
  49. class QWaylandSurface;
  50. class QWaylandSurfaceRole;
  51. class QWaylandInputDevice;
  52. class QWaylandOutput;
  53. class QWaylandClient;
  54. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandXdgShell : public QWaylandCompositorExtensionTemplate<QWaylandXdgShell>
  55. {
  56. Q_OBJECT
  57. Q_DECLARE_PRIVATE(QWaylandXdgShell)
  58. public:
  59. QWaylandXdgShell();
  60. QWaylandXdgShell(QWaylandCompositor *compositor);
  61. void initialize() Q_DECL_OVERRIDE;
  62. static const struct wl_interface *interface();
  63. static QByteArray interfaceName();
  64. public Q_SLOTS:
  65. uint ping(QWaylandClient *client);
  66. void closeAllPopups();
  67. Q_SIGNALS:
  68. void createXdgSurface(QWaylandSurface *surface, const QWaylandResource &resource);
  69. void xdgSurfaceCreated(QWaylandXdgSurface *xdgSurface);
  70. void xdgPopupCreated(QWaylandXdgPopup *xdgPopup);
  71. void createXdgPopup(QWaylandSurface *surface, QWaylandSurface *parent, QWaylandInputDevice *seat, const QPoint &position, const QWaylandResource &resource);
  72. void pong(uint serial);
  73. private Q_SLOTS:
  74. void handleDefaultInputDeviceChanged(QWaylandInputDevice *newDevice, QWaylandInputDevice *oldDevice);
  75. void handleFocusChanged(QWaylandSurface *newSurface, QWaylandSurface *oldSurface);
  76. };
  77. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandXdgSurface : public QWaylandShellSurfaceTemplate<QWaylandXdgSurface>
  78. {
  79. Q_OBJECT
  80. Q_DECLARE_PRIVATE(QWaylandXdgSurface)
  81. Q_PROPERTY(QWaylandSurface *surface READ surface NOTIFY surfaceChanged)
  82. Q_PROPERTY(QWaylandXdgSurface *parentSurface READ parentSurface NOTIFY parentSurfaceChanged)
  83. Q_PROPERTY(QString title READ title NOTIFY titleChanged)
  84. Q_PROPERTY(QString appId READ appId NOTIFY appIdChanged)
  85. Q_PROPERTY(QRect windowGeometry READ windowGeometry NOTIFY windowGeometryChanged)
  86. Q_PROPERTY(QList<int> states READ statesAsInts NOTIFY statesChanged)
  87. Q_PROPERTY(bool maximized READ maximized NOTIFY maximizedChanged)
  88. Q_PROPERTY(bool fullscreen READ fullscreen NOTIFY fullscreenChanged)
  89. Q_PROPERTY(bool resizing READ resizing NOTIFY resizingChanged)
  90. Q_PROPERTY(bool activated READ activated NOTIFY activatedChanged)
  91. public:
  92. enum State : uint {
  93. MaximizedState = 1,
  94. FullscreenState = 2,
  95. ResizingState = 3,
  96. ActivatedState = 4
  97. };
  98. Q_ENUM(State)
  99. enum ResizeEdge : uint {
  100. NoneEdge = 0,
  101. TopEdge = 1,
  102. BottomEdge = 2,
  103. LeftEdge = 4,
  104. TopLeftEdge = 5,
  105. BottomLeftEdge = 6,
  106. RightEdge = 8,
  107. TopRightEdge = 9,
  108. BottomRightEdge = 10
  109. };
  110. Q_ENUM(ResizeEdge)
  111. QWaylandXdgSurface();
  112. QWaylandXdgSurface(QWaylandXdgShell* xdgShell, QWaylandSurface *surface, const QWaylandResource &resource);
  113. Q_INVOKABLE void initialize(QWaylandXdgShell* xdgShell, QWaylandSurface *surface, const QWaylandResource &resource);
  114. QString title() const;
  115. QString appId() const;
  116. QRect windowGeometry() const;
  117. QVector<uint> states() const;
  118. bool maximized() const;
  119. bool fullscreen() const;
  120. bool resizing() const;
  121. bool activated() const;
  122. QWaylandSurface *surface() const;
  123. QWaylandXdgSurface *parentSurface() const;
  124. static const struct wl_interface *interface();
  125. static QByteArray interfaceName();
  126. static QWaylandSurfaceRole *role();
  127. static QWaylandXdgSurface *fromResource(::wl_resource *resource);
  128. Q_INVOKABLE QSize sizeForResize(const QSizeF &size, const QPointF &delta, ResizeEdge edge);
  129. Q_INVOKABLE uint sendConfigure(const QSize &size, const QVector<uint> &states);
  130. Q_INVOKABLE uint sendConfigure(const QSize &size, const QVector<State> &states);
  131. Q_INVOKABLE void sendClose();
  132. Q_INVOKABLE uint requestMaximized(const QSize &size);
  133. Q_INVOKABLE uint requestUnMaximized(const QSize &size = QSize(0, 0));
  134. Q_INVOKABLE uint requestFullscreen(const QSize &size);
  135. Q_INVOKABLE uint requestResizing(const QSize &maxSize);
  136. QWaylandQuickShellIntegration *createIntegration(QWaylandQuickShellSurfaceItem *item) Q_DECL_OVERRIDE;
  137. Q_SIGNALS:
  138. void surfaceChanged();
  139. void titleChanged();
  140. void windowGeometryChanged();
  141. void appIdChanged();
  142. void parentSurfaceChanged();
  143. void statesChanged();
  144. void maximizedChanged();
  145. void fullscreenChanged();
  146. void resizingChanged();
  147. void activatedChanged();
  148. void showWindowMenu(QWaylandInputDevice *inputDevice, const QPoint &localSurfacePosition);
  149. void startMove(QWaylandInputDevice *inputDevice);
  150. void startResize(QWaylandInputDevice *inputDevice, ResizeEdge edges);
  151. void setMaximized();
  152. void unsetMaximized();
  153. void setFullscreen(QWaylandOutput *output);
  154. void unsetFullscreen();
  155. void setMinimized();
  156. void ackConfigure(uint serial);
  157. private:
  158. void initialize() override;
  159. QList<int> statesAsInts() const;
  160. private Q_SLOTS:
  161. void handleSurfaceSizeChanged();
  162. };
  163. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandXdgPopup : public QWaylandCompositorExtensionTemplate<QWaylandXdgPopup>
  164. {
  165. Q_OBJECT
  166. Q_DECLARE_PRIVATE(QWaylandXdgPopup)
  167. Q_PROPERTY(QWaylandSurface *surface READ surface NOTIFY surfaceChanged)
  168. Q_PROPERTY(QWaylandSurface *parentSurface READ parentSurface NOTIFY parentSurfaceChanged)
  169. public:
  170. QWaylandXdgPopup();
  171. QWaylandXdgPopup(QWaylandXdgShell *xdgShell, QWaylandSurface *surface, QWaylandSurface *parentSurface, const QWaylandResource &resource);
  172. Q_INVOKABLE void initialize(QWaylandXdgShell *shell, QWaylandSurface *surface,
  173. QWaylandSurface *parentSurface, const QWaylandResource &resource);
  174. QWaylandSurface *surface() const;
  175. QWaylandSurface *parentSurface() const;
  176. static const struct wl_interface *interface();
  177. static QByteArray interfaceName();
  178. static QWaylandSurfaceRole *role();
  179. static QWaylandXdgPopup *fromResource(::wl_resource *resource);
  180. Q_INVOKABLE void sendPopupDone();
  181. Q_SIGNALS:
  182. void surfaceChanged();
  183. void parentSurfaceChanged();
  184. private:
  185. void initialize() override;
  186. };
  187. QT_END_NAMESPACE
  188. #endif /*QWAYLANDXDGSHELL_H*/