qwaylandquickitem.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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 QWAYLANDSURFACEITEM_H
  37. #define QWAYLANDSURFACEITEM_H
  38. #include <QtWaylandCompositor/qwaylandexport.h>
  39. #include <QtQuick/QQuickItem>
  40. #include <QtQuick/qsgtexture.h>
  41. #include <QtQuick/qsgtextureprovider.h>
  42. #include <QtWaylandCompositor/qwaylandview.h>
  43. #include <QtWaylandCompositor/qwaylandquicksurface.h>
  44. Q_DECLARE_METATYPE(QWaylandQuickSurface*)
  45. QT_BEGIN_NAMESPACE
  46. class QWaylandInputDevice;
  47. class QWaylandQuickItemPrivate;
  48. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandQuickItem : public QQuickItem
  49. {
  50. Q_OBJECT
  51. Q_DECLARE_PRIVATE(QWaylandQuickItem)
  52. Q_PROPERTY(QWaylandView *view READ view CONSTANT)
  53. Q_PROPERTY(QWaylandCompositor *compositor READ compositor)
  54. Q_PROPERTY(QWaylandSurface *surface READ surface WRITE setSurface NOTIFY surfaceChanged)
  55. Q_PROPERTY(bool paintEnabled READ paintEnabled WRITE setPaintEnabled)
  56. Q_PROPERTY(bool touchEventsEnabled READ touchEventsEnabled WRITE setTouchEventsEnabled NOTIFY touchEventsEnabledChanged)
  57. Q_PROPERTY(QWaylandSurface::Origin origin READ origin NOTIFY originChanged)
  58. Q_PROPERTY(bool inputEventsEnabled READ inputEventsEnabled WRITE setInputEventsEnabled NOTIFY inputEventsEnabledChanged)
  59. Q_PROPERTY(bool focusOnClick READ focusOnClick WRITE setFocusOnClick NOTIFY focusOnClickChanged)
  60. Q_PROPERTY(bool sizeFollowsSurface READ sizeFollowsSurface WRITE setSizeFollowsSurface NOTIFY sizeFollowsSurfaceChanged)
  61. Q_PROPERTY(QObject *subsurfaceHandler READ subsurfaceHandler WRITE setSubsurfaceHandler NOTIFY subsurfaceHandlerChanged)
  62. public:
  63. QWaylandQuickItem(QQuickItem *parent = nullptr);
  64. ~QWaylandQuickItem();
  65. QWaylandCompositor *compositor() const;
  66. QWaylandView *view() const;
  67. QWaylandSurface *surface() const;
  68. void setSurface(QWaylandSurface *surface);
  69. QWaylandSurface::Origin origin() const;
  70. bool isTextureProvider() const Q_DECL_OVERRIDE;
  71. QSGTextureProvider *textureProvider() const Q_DECL_OVERRIDE;
  72. bool paintEnabled() const;
  73. bool touchEventsEnabled() const;
  74. void setTouchEventsEnabled(bool enabled);
  75. bool inputEventsEnabled() const;
  76. void setInputEventsEnabled(bool enabled);
  77. bool focusOnClick() const;
  78. void setFocusOnClick(bool focus);
  79. bool inputRegionContains(const QPointF &localPosition);
  80. bool sizeFollowsSurface() const;
  81. void setSizeFollowsSurface(bool sizeFollowsSurface);
  82. #ifndef QT_NO_IM
  83. QVariant inputMethodQuery(Qt::InputMethodQuery query) const Q_DECL_OVERRIDE;
  84. Q_INVOKABLE QVariant inputMethodQuery(Qt::InputMethodQuery query, QVariant argument) const;
  85. #endif
  86. QObject *subsurfaceHandler() const;
  87. void setSubsurfaceHandler(QObject*);
  88. protected:
  89. void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
  90. void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
  91. void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
  92. void hoverEnterEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
  93. void hoverMoveEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
  94. void hoverLeaveEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
  95. void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE;
  96. void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
  97. void keyReleaseEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
  98. void touchEvent(QTouchEvent *event) Q_DECL_OVERRIDE;
  99. void mouseUngrabEvent() Q_DECL_OVERRIDE;
  100. #ifndef QT_NO_IM
  101. void inputMethodEvent(QInputMethodEvent *event) Q_DECL_OVERRIDE;
  102. #endif
  103. virtual void surfaceChangedEvent(QWaylandSurface *newSurface, QWaylandSurface *oldSurface);
  104. public Q_SLOTS:
  105. virtual void takeFocus(QWaylandInputDevice *device = nullptr);
  106. void setPaintEnabled(bool paintEnabled);
  107. void raise();
  108. void lower();
  109. private Q_SLOTS:
  110. void surfaceMappedChanged();
  111. void handleSurfaceChanged();
  112. void parentChanged(QWaylandSurface *newParent, QWaylandSurface *oldParent);
  113. void updateSize();
  114. void updateBuffer(bool hasBuffer);
  115. void updateWindow();
  116. void beforeSync();
  117. void handleSubsurfaceAdded(QWaylandSurface *childSurface);
  118. void handleSubsurfacePosition(const QPoint &pos);
  119. #ifndef QT_NO_IM
  120. void updateInputMethod(Qt::InputMethodQueries queries);
  121. #endif
  122. Q_SIGNALS:
  123. void surfaceChanged();
  124. void touchEventsEnabledChanged();
  125. void originChanged();
  126. void surfaceDestroyed();
  127. void inputEventsEnabledChanged();
  128. void focusOnClickChanged();
  129. void mouseMove(const QPointF &windowPosition);
  130. void mouseRelease();
  131. void sizeFollowsSurfaceChanged();
  132. void subsurfaceHandlerChanged();
  133. protected:
  134. QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *) Q_DECL_OVERRIDE;
  135. QWaylandQuickItem(QWaylandQuickItemPrivate &dd, QQuickItem *parent = nullptr);
  136. };
  137. QT_END_NAMESPACE
  138. #endif