qwaylandwlshell.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2015 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 QWAYLANDWLSHELL_H
  37. #define QWAYLANDWLSHELL_H
  38. #include <QtWaylandCompositor/QWaylandCompositorExtension>
  39. #include <QtWaylandCompositor/QWaylandResource>
  40. #include <QtWaylandCompositor/QWaylandShellSurface>
  41. #include <QtCore/QSize>
  42. QT_BEGIN_NAMESPACE
  43. class QWaylandWlShellPrivate;
  44. class QWaylandWlShellSurfacePrivate;
  45. class QWaylandSurface;
  46. class QWaylandClient;
  47. class QWaylandInputDevice;
  48. class QWaylandOutput;
  49. class QWaylandSurfaceRole;
  50. class QWaylandWlShellSurface;
  51. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandWlShell : public QWaylandCompositorExtensionTemplate<QWaylandWlShell>
  52. {
  53. Q_OBJECT
  54. Q_DECLARE_PRIVATE(QWaylandWlShell)
  55. public:
  56. QWaylandWlShell();
  57. QWaylandWlShell(QWaylandCompositor *compositor);
  58. void initialize() Q_DECL_OVERRIDE;
  59. static const struct wl_interface *interface();
  60. static QByteArray interfaceName();
  61. Q_SIGNALS:
  62. void createShellSurface(QWaylandSurface *surface, const QWaylandResource &resource);
  63. void shellSurfaceCreated(QWaylandWlShellSurface *shellSurface);
  64. };
  65. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandWlShellSurface : public QWaylandShellSurfaceTemplate<QWaylandWlShellSurface>
  66. {
  67. Q_OBJECT
  68. Q_DECLARE_PRIVATE(QWaylandWlShellSurface)
  69. Q_PROPERTY(QWaylandSurface *surface READ surface NOTIFY surfaceChanged)
  70. Q_PROPERTY(QString title READ title NOTIFY titleChanged)
  71. Q_PROPERTY(QString className READ className NOTIFY classNameChanged)
  72. Q_PROPERTY(FocusPolicy focusPolicy READ focusPolicy NOTIFY focusPolicyChanged)
  73. public:
  74. enum FullScreenMethod {
  75. DefaultFullScreen,
  76. ScaleFullScreen,
  77. DriverFullScreen,
  78. FillFullScreen
  79. };
  80. Q_ENUM(FullScreenMethod);
  81. enum ResizeEdge {
  82. NoneEdge = 0,
  83. TopEdge = 1,
  84. BottomEdge = 2,
  85. LeftEdge = 4,
  86. TopLeftEdge = 5,
  87. BottomLeftEdge = 6,
  88. RightEdge = 8,
  89. TopRightEdge = 9,
  90. BottomRightEdge = 10
  91. };
  92. Q_ENUM(ResizeEdge);
  93. enum FocusPolicy{
  94. DefaultFocus,
  95. NoKeyboardFocus
  96. };
  97. Q_ENUM(FocusPolicy)
  98. QWaylandWlShellSurface();
  99. QWaylandWlShellSurface(QWaylandWlShell *shell, QWaylandSurface *surface, const QWaylandResource &resource);
  100. Q_INVOKABLE void initialize(QWaylandWlShell *shell, QWaylandSurface *surface, const QWaylandResource &resource);
  101. QString title() const;
  102. QString className() const;
  103. QWaylandSurface *surface() const;
  104. FocusPolicy focusPolicy() const;
  105. static const struct wl_interface *interface();
  106. static QByteArray interfaceName();
  107. static QWaylandSurfaceRole *role();
  108. static QWaylandWlShellSurface *fromResource(wl_resource *res);
  109. Q_INVOKABLE QSize sizeForResize(const QSizeF &size, const QPointF &delta, ResizeEdge edges);
  110. Q_INVOKABLE void sendConfigure(const QSize &size, ResizeEdge edges);
  111. Q_INVOKABLE void sendPopupDone();
  112. QWaylandQuickShellIntegration *createIntegration(QWaylandQuickShellSurfaceItem *item) Q_DECL_OVERRIDE;
  113. public Q_SLOTS:
  114. void ping();
  115. Q_SIGNALS:
  116. void surfaceChanged();
  117. void titleChanged();
  118. void classNameChanged();
  119. void focusPolicyChanged();
  120. void pong();
  121. void startMove(QWaylandInputDevice *inputDevice);
  122. void startResize(QWaylandInputDevice *inputDevice, ResizeEdge edges);
  123. void setDefaultToplevel();
  124. void setTransient(QWaylandSurface *parentSurface, const QPoint &relativeToParent, FocusPolicy focusPolicy);
  125. void setFullScreen(FullScreenMethod method, uint framerate, QWaylandOutput *output);
  126. void setPopup(QWaylandInputDevice *inputDevice, QWaylandSurface *parentSurface, const QPoint &relativeToParent);
  127. void setMaximized(QWaylandOutput *output);
  128. private:
  129. void initialize() override;
  130. };
  131. QT_END_NAMESPACE
  132. #endif /*QWAYLANDWLSHELL_H*/