qwaylandsurface.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2014-2015 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
  4. ** Copyright (C) 2015 The Qt Company Ltd.
  5. ** Contact: http://www.qt.io/licensing/
  6. **
  7. ** This file is part of the QtWaylandCompositor module of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL3$
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see http://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at http://www.qt.io/contact-us.
  17. **
  18. ** GNU Lesser General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU Lesser
  20. ** General Public License version 3 as published by the Free Software
  21. ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU Lesser General Public License version 3 requirements
  24. ** will be met: https://www.gnu.org/licenses/lgpl.html.
  25. **
  26. ** GNU General Public License Usage
  27. ** Alternatively, this file may be used under the terms of the GNU
  28. ** General Public License version 2.0 or later as published by the Free
  29. ** Software Foundation and appearing in the file LICENSE.GPL included in
  30. ** the packaging of this file. Please review the following information to
  31. ** ensure the GNU General Public License version 2.0 requirements will be
  32. ** met: http://www.gnu.org/licenses/gpl-2.0.html.
  33. **
  34. ** $QT_END_LICENSE$
  35. **
  36. ****************************************************************************/
  37. #ifndef QWAYLANDSURFACE_H
  38. #define QWAYLANDSURFACE_H
  39. #include <QtWaylandCompositor/qwaylandexport.h>
  40. #include <QtWaylandCompositor/qwaylandcompositorextension.h>
  41. #include <QtWaylandCompositor/qwaylandclient.h>
  42. #include <QtCore/QScopedPointer>
  43. #include <QtGui/QImage>
  44. #include <QtGui/QWindow>
  45. #include <QtCore/QVariantMap>
  46. struct wl_client;
  47. struct wl_resource;
  48. QT_BEGIN_NAMESPACE
  49. class QTouchEvent;
  50. class QWaylandClient;
  51. class QWaylandSurfacePrivate;
  52. class QWaylandCompositor;
  53. class QWaylandBufferRef;
  54. class QWaylandView;
  55. class QWaylandSurfaceOp;
  56. class QWaylandInputMethodControl;
  57. class QWaylandSurfaceRole
  58. {
  59. public:
  60. QWaylandSurfaceRole(const QByteArray &n) : m_name(n) {}
  61. const QByteArray name() { return m_name; }
  62. private:
  63. QByteArray m_name;
  64. };
  65. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandSurface : public QWaylandObject
  66. {
  67. Q_OBJECT
  68. Q_DECLARE_PRIVATE(QWaylandSurface)
  69. Q_PROPERTY(QWaylandClient *client READ client CONSTANT)
  70. Q_PROPERTY(QSize size READ size NOTIFY sizeChanged)
  71. Q_PROPERTY(int bufferScale READ bufferScale NOTIFY bufferScaleChanged)
  72. Q_PROPERTY(Qt::ScreenOrientation contentOrientation READ contentOrientation NOTIFY contentOrientationChanged)
  73. Q_PROPERTY(QWaylandSurface::Origin origin READ origin NOTIFY originChanged)
  74. Q_PROPERTY(bool isMapped READ isMapped NOTIFY mappedChanged)
  75. Q_PROPERTY(bool cursorSurface READ isCursorSurface WRITE markAsCursorSurface)
  76. public:
  77. enum Origin {
  78. OriginTopLeft,
  79. OriginBottomLeft
  80. };
  81. Q_ENUM(Origin)
  82. QWaylandSurface();
  83. QWaylandSurface(QWaylandCompositor *compositor, QWaylandClient *client, uint id, int version);
  84. virtual ~QWaylandSurface();
  85. Q_INVOKABLE void initialize(QWaylandCompositor *compositor, QWaylandClient *client, uint id, int version);
  86. bool isInitialized() const;
  87. QWaylandClient *client() const;
  88. struct wl_client *waylandClient() const { return client()->client(); }
  89. bool setRole(QWaylandSurfaceRole *role, wl_resource *errorResource, uint32_t errorCode);
  90. QWaylandSurfaceRole *role() const;
  91. bool isMapped() const;
  92. QSize size() const;
  93. int bufferScale() const;
  94. Qt::ScreenOrientation contentOrientation() const;
  95. Origin origin() const;
  96. QWaylandCompositor *compositor() const;
  97. bool inputRegionContains(const QPoint &p) const;
  98. Q_INVOKABLE void destroy();
  99. Q_INVOKABLE bool isDestroyed() const;
  100. Q_INVOKABLE void frameStarted();
  101. Q_INVOKABLE void sendFrameCallbacks();
  102. QWaylandView *throttlingView() const;
  103. void setThrottlingView(QWaylandView *view);
  104. QList<QWaylandView *> views() const;
  105. static QWaylandSurface *fromResource(::wl_resource *resource);
  106. struct wl_resource *resource() const;
  107. void markAsCursorSurface(bool cursorSurface);
  108. bool isCursorSurface() const;
  109. QWaylandInputMethodControl *inputMethodControl() const;
  110. public Q_SLOTS:
  111. void updateSelection();
  112. protected:
  113. QWaylandSurface(QWaylandSurfacePrivate &dptr);
  114. Q_SIGNALS:
  115. void mappedChanged();
  116. void damaged(const QRegion &rect);
  117. void parentChanged(QWaylandSurface *newParent, QWaylandSurface *oldParent);
  118. void childAdded(QWaylandSurface *child);
  119. void sizeChanged();
  120. void bufferScaleChanged();
  121. void offsetForNextFrame(const QPoint &offset);
  122. void contentOrientationChanged();
  123. void surfaceDestroyed();
  124. void originChanged();
  125. void subsurfacePositionChanged(const QPoint &position);
  126. void subsurfacePlaceAbove(QWaylandSurface *sibling);
  127. void subsurfacePlaceBelow(QWaylandSurface *sibling);
  128. void configure(bool hasBuffer);
  129. void redraw();
  130. };
  131. QT_END_NAMESPACE
  132. #endif // QWAYLANDSURFACE_H