qquickwindow.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtQuick module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  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 https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://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.LGPL3 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-3.0.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 (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QQUICKWINDOW_H
  40. #define QQUICKWINDOW_H
  41. #include <QtQuick/qtquickglobal.h>
  42. #include <QtCore/qmetatype.h>
  43. #include <QtGui/qopengl.h>
  44. #include <QtGui/qwindow.h>
  45. #include <QtGui/qevent.h>
  46. #include <QtQml/qqml.h>
  47. QT_BEGIN_NAMESPACE
  48. class QRunnable;
  49. class QQuickItem;
  50. class QSGTexture;
  51. class QInputMethodEvent;
  52. class QQuickWindowPrivate;
  53. class QQuickWindowAttached;
  54. class QOpenGLFramebufferObject;
  55. class QQmlIncubationController;
  56. class QInputMethodEvent;
  57. class QQuickCloseEvent;
  58. class QQuickRenderControl;
  59. class Q_QUICK_EXPORT QQuickWindow : public QWindow
  60. {
  61. Q_OBJECT
  62. Q_PRIVATE_PROPERTY(QQuickWindow::d_func(), QQmlListProperty<QObject> data READ data DESIGNABLE false)
  63. Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
  64. Q_PROPERTY(QQuickItem* contentItem READ contentItem CONSTANT)
  65. Q_PROPERTY(QQuickItem* activeFocusItem READ activeFocusItem NOTIFY activeFocusItemChanged REVISION 1)
  66. Q_CLASSINFO("DefaultProperty", "data")
  67. Q_DECLARE_PRIVATE(QQuickWindow)
  68. public:
  69. enum CreateTextureOption {
  70. TextureHasAlphaChannel = 0x0001,
  71. TextureHasMipmaps = 0x0002,
  72. TextureOwnsGLTexture = 0x0004,
  73. TextureCanUseAtlas = 0x0008,
  74. TextureIsOpaque = 0x0010
  75. };
  76. enum RenderStage {
  77. BeforeSynchronizingStage,
  78. AfterSynchronizingStage,
  79. BeforeRenderingStage,
  80. AfterRenderingStage,
  81. AfterSwapStage,
  82. NoStage
  83. };
  84. Q_DECLARE_FLAGS(CreateTextureOptions, CreateTextureOption)
  85. enum SceneGraphError {
  86. ContextNotAvailable = 1
  87. };
  88. Q_ENUM(SceneGraphError)
  89. explicit QQuickWindow(QWindow *parent = Q_NULLPTR);
  90. explicit QQuickWindow(QQuickRenderControl *renderControl);
  91. virtual ~QQuickWindow();
  92. QQuickItem *contentItem() const;
  93. QQuickItem *activeFocusItem() const;
  94. QObject *focusObject() const Q_DECL_OVERRIDE;
  95. QQuickItem *mouseGrabberItem() const;
  96. bool sendEvent(QQuickItem *, QEvent *);
  97. QImage grabWindow();
  98. void setRenderTarget(QOpenGLFramebufferObject *fbo);
  99. QOpenGLFramebufferObject *renderTarget() const;
  100. void setRenderTarget(uint fboId, const QSize &size);
  101. uint renderTargetId() const;
  102. QSize renderTargetSize() const;
  103. void resetOpenGLState();
  104. QQmlIncubationController *incubationController() const;
  105. #ifndef QT_NO_ACCESSIBILITY
  106. QAccessibleInterface *accessibleRoot() const Q_DECL_OVERRIDE;
  107. #endif
  108. // Scene graph specific functions
  109. QSGTexture *createTextureFromImage(const QImage &image) const;
  110. QSGTexture *createTextureFromImage(const QImage &image, CreateTextureOptions options) const;
  111. QSGTexture *createTextureFromId(uint id, const QSize &size, CreateTextureOptions options = CreateTextureOption()) const;
  112. void setClearBeforeRendering(bool enabled);
  113. bool clearBeforeRendering() const;
  114. void setColor(const QColor &color);
  115. QColor color() const;
  116. static bool hasDefaultAlphaBuffer();
  117. static void setDefaultAlphaBuffer(bool useAlpha);
  118. void setPersistentOpenGLContext(bool persistent);
  119. bool isPersistentOpenGLContext() const;
  120. void setPersistentSceneGraph(bool persistent);
  121. bool isPersistentSceneGraph() const;
  122. QOpenGLContext *openglContext() const;
  123. bool isSceneGraphInitialized() const;
  124. void scheduleRenderJob(QRunnable *job, RenderStage schedule);
  125. qreal effectiveDevicePixelRatio() const;
  126. Q_SIGNALS:
  127. void frameSwapped();
  128. Q_REVISION(2) void openglContextCreated(QOpenGLContext *context);
  129. void sceneGraphInitialized();
  130. void sceneGraphInvalidated();
  131. void beforeSynchronizing();
  132. Q_REVISION(2) void afterSynchronizing();
  133. void beforeRendering();
  134. void afterRendering();
  135. Q_REVISION(2) void afterAnimating();
  136. Q_REVISION(2) void sceneGraphAboutToStop();
  137. Q_REVISION(1) void closing(QQuickCloseEvent *close);
  138. void colorChanged(const QColor &);
  139. Q_REVISION(1) void activeFocusItemChanged();
  140. Q_REVISION(2) void sceneGraphError(QQuickWindow::SceneGraphError error, const QString &message);
  141. public Q_SLOTS:
  142. void update();
  143. void releaseResources();
  144. protected:
  145. QQuickWindow(QQuickWindowPrivate &dd, QWindow *parent = Q_NULLPTR);
  146. void exposeEvent(QExposeEvent *) Q_DECL_OVERRIDE;
  147. void resizeEvent(QResizeEvent *) Q_DECL_OVERRIDE;
  148. void showEvent(QShowEvent *) Q_DECL_OVERRIDE;
  149. void hideEvent(QHideEvent *) Q_DECL_OVERRIDE;
  150. // TODO Qt 6: reimplement QWindow::closeEvent to emit closing
  151. void focusInEvent(QFocusEvent *) Q_DECL_OVERRIDE;
  152. void focusOutEvent(QFocusEvent *) Q_DECL_OVERRIDE;
  153. bool event(QEvent *) Q_DECL_OVERRIDE;
  154. void keyPressEvent(QKeyEvent *) Q_DECL_OVERRIDE;
  155. void keyReleaseEvent(QKeyEvent *) Q_DECL_OVERRIDE;
  156. void mousePressEvent(QMouseEvent *) Q_DECL_OVERRIDE;
  157. void mouseReleaseEvent(QMouseEvent *) Q_DECL_OVERRIDE;
  158. void mouseDoubleClickEvent(QMouseEvent *) Q_DECL_OVERRIDE;
  159. void mouseMoveEvent(QMouseEvent *) Q_DECL_OVERRIDE;
  160. #ifndef QT_NO_WHEELEVENT
  161. void wheelEvent(QWheelEvent *) Q_DECL_OVERRIDE;
  162. #endif
  163. private Q_SLOTS:
  164. void maybeUpdate();
  165. void cleanupSceneGraph();
  166. void physicalDpiChanged();
  167. void handleScreenChanged(QScreen *screen);
  168. void setTransientParent_helper(QQuickWindow *window);
  169. void runJobsAfterSwap();
  170. private:
  171. friend class QQuickItem;
  172. friend class QQuickWidget;
  173. friend class QQuickRenderControl;
  174. friend class QQuickAnimatorController;
  175. Q_DISABLE_COPY(QQuickWindow)
  176. };
  177. QT_END_NAMESPACE
  178. Q_DECLARE_METATYPE(QQuickWindow *)
  179. #endif // QQUICKWINDOW_H