qsgnode.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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 QSGNODE_H
  40. #define QSGNODE_H
  41. #include <QtQuick/qsggeometry.h>
  42. #include <QtGui/QMatrix4x4>
  43. #include <float.h>
  44. QT_BEGIN_NAMESPACE
  45. #ifndef QT_NO_DEBUG
  46. #define QSG_RUNTIME_DESCRIPTION
  47. #endif
  48. class QSGAbstractRenderer;
  49. class QSGRenderer;
  50. class QSGNode;
  51. class QSGRootNode;
  52. class QSGGeometryNode;
  53. class QSGTransformNode;
  54. class QSGClipNode;
  55. class QSGNodePrivate;
  56. class QSGBasicGeometryNodePrivate;
  57. class QSGGeometryNodePrivate;
  58. namespace QSGBatchRenderer {
  59. class Renderer;
  60. class Updater;
  61. }
  62. class Q_QUICK_EXPORT QSGNode
  63. {
  64. public:
  65. enum NodeType {
  66. BasicNodeType,
  67. GeometryNodeType,
  68. TransformNodeType,
  69. ClipNodeType,
  70. OpacityNodeType,
  71. #ifndef qdoc
  72. RootNodeType,
  73. RenderNodeType
  74. #endif
  75. };
  76. enum Flag {
  77. // Lower 16 bites reserved for general node
  78. OwnedByParent = 0x0001,
  79. UsePreprocess = 0x0002,
  80. // 0x00ff0000 bits reserved for node subclasses
  81. // QSGBasicGeometryNode
  82. OwnsGeometry = 0x00010000,
  83. OwnsMaterial = 0x00020000,
  84. OwnsOpaqueMaterial = 0x00040000,
  85. // Uppermost 8 bits are reserved for internal use.
  86. #ifndef qdoc
  87. IsVisitableNode = 0x01000000
  88. #else
  89. InternalReserved = 0x01000000
  90. #endif
  91. };
  92. Q_DECLARE_FLAGS(Flags, Flag)
  93. enum DirtyStateBit {
  94. DirtySubtreeBlocked = 0x0080,
  95. DirtyMatrix = 0x0100,
  96. DirtyNodeAdded = 0x0400,
  97. DirtyNodeRemoved = 0x0800,
  98. DirtyGeometry = 0x1000,
  99. DirtyMaterial = 0x2000,
  100. DirtyOpacity = 0x4000,
  101. #ifndef qdoc
  102. DirtyForceUpdate = 0x8000,
  103. DirtyUsePreprocess = UsePreprocess,
  104. DirtyPropagationMask = DirtyMatrix
  105. | DirtyNodeAdded
  106. | DirtyOpacity
  107. | DirtyForceUpdate
  108. #endif
  109. };
  110. Q_DECLARE_FLAGS(DirtyState, DirtyStateBit)
  111. QSGNode();
  112. virtual ~QSGNode();
  113. QSGNode *parent() const { return m_parent; }
  114. void removeChildNode(QSGNode *node);
  115. void removeAllChildNodes();
  116. void prependChildNode(QSGNode *node);
  117. void appendChildNode(QSGNode *node);
  118. void insertChildNodeBefore(QSGNode *node, QSGNode *before);
  119. void insertChildNodeAfter(QSGNode *node, QSGNode *after);
  120. void reparentChildNodesTo(QSGNode *newParent);
  121. int childCount() const;
  122. QSGNode *childAtIndex(int i) const;
  123. QSGNode *firstChild() const { return m_firstChild; }
  124. QSGNode *lastChild() const { return m_lastChild; }
  125. QSGNode *nextSibling() const { return m_nextSibling; }
  126. QSGNode* previousSibling() const { return m_previousSibling; }
  127. inline NodeType type() const { return m_type; }
  128. QT_DEPRECATED void clearDirty() { }
  129. void markDirty(DirtyState bits);
  130. QT_DEPRECATED DirtyState dirtyState() const { return Q_NULLPTR; }
  131. virtual bool isSubtreeBlocked() const;
  132. Flags flags() const { return m_nodeFlags; }
  133. void setFlag(Flag, bool = true);
  134. void setFlags(Flags, bool = true);
  135. virtual void preprocess() { }
  136. protected:
  137. QSGNode(NodeType type);
  138. QSGNode(QSGNodePrivate &dd, NodeType type);
  139. private:
  140. friend class QSGRootNode;
  141. friend class QSGBatchRenderer::Renderer;
  142. friend class QSGRenderer;
  143. void init();
  144. void destroy();
  145. QSGNode *m_parent;
  146. NodeType m_type;
  147. QSGNode *m_firstChild;
  148. QSGNode *m_lastChild;
  149. QSGNode *m_nextSibling;
  150. QSGNode *m_previousSibling;
  151. int m_subtreeRenderableCount;
  152. Flags m_nodeFlags;
  153. DirtyState m_dirtyState; // Obsolete, remove in Qt 6
  154. protected:
  155. friend class QSGNodePrivate;
  156. QScopedPointer<QSGNodePrivate> d_ptr;
  157. };
  158. void Q_QUICK_EXPORT qsgnode_set_description(QSGNode *node, const QString &description);
  159. class Q_QUICK_EXPORT QSGBasicGeometryNode : public QSGNode
  160. {
  161. public:
  162. ~QSGBasicGeometryNode();
  163. void setGeometry(QSGGeometry *geometry);
  164. const QSGGeometry *geometry() const { return m_geometry; }
  165. QSGGeometry *geometry() { return m_geometry; }
  166. const QMatrix4x4 *matrix() const { return m_matrix; }
  167. const QSGClipNode *clipList() const { return m_clip_list; }
  168. protected:
  169. QSGBasicGeometryNode(NodeType type);
  170. QSGBasicGeometryNode(QSGBasicGeometryNodePrivate &dd, NodeType type);
  171. private:
  172. friend class QSGNodeUpdater;
  173. friend class QSGBatchRenderer::Updater;
  174. QSGGeometry *m_geometry;
  175. int m_reserved_start_index;
  176. int m_reserved_end_index;
  177. const QMatrix4x4 *m_matrix;
  178. const QSGClipNode *m_clip_list;
  179. };
  180. class QSGMaterial;
  181. class Q_QUICK_EXPORT QSGGeometryNode : public QSGBasicGeometryNode
  182. {
  183. public:
  184. QSGGeometryNode();
  185. ~QSGGeometryNode();
  186. void setMaterial(QSGMaterial *material);
  187. QSGMaterial *material() const { return m_material; }
  188. void setOpaqueMaterial(QSGMaterial *material);
  189. QSGMaterial *opaqueMaterial() const { return m_opaque_material; }
  190. QSGMaterial *activeMaterial() const;
  191. void setRenderOrder(int order);
  192. int renderOrder() const { return m_render_order; }
  193. void setInheritedOpacity(qreal opacity);
  194. qreal inheritedOpacity() const { return m_opacity; }
  195. protected:
  196. QSGGeometryNode(QSGGeometryNodePrivate &dd);
  197. private:
  198. friend class QSGNodeUpdater;
  199. int m_render_order;
  200. QSGMaterial *m_material;
  201. QSGMaterial *m_opaque_material;
  202. qreal m_opacity;
  203. };
  204. class Q_QUICK_EXPORT QSGClipNode : public QSGBasicGeometryNode
  205. {
  206. public:
  207. QSGClipNode();
  208. ~QSGClipNode();
  209. void setIsRectangular(bool rectHint);
  210. bool isRectangular() const { return m_is_rectangular; }
  211. void setClipRect(const QRectF &);
  212. QRectF clipRect() const { return m_clip_rect; }
  213. private:
  214. uint m_is_rectangular : 1;
  215. uint m_reserved : 31;
  216. QRectF m_clip_rect;
  217. };
  218. class Q_QUICK_EXPORT QSGTransformNode : public QSGNode
  219. {
  220. public:
  221. QSGTransformNode();
  222. ~QSGTransformNode();
  223. void setMatrix(const QMatrix4x4 &matrix);
  224. const QMatrix4x4 &matrix() const { return m_matrix; }
  225. void setCombinedMatrix(const QMatrix4x4 &matrix);
  226. const QMatrix4x4 &combinedMatrix() const { return m_combined_matrix; }
  227. private:
  228. QMatrix4x4 m_matrix;
  229. QMatrix4x4 m_combined_matrix;
  230. };
  231. class Q_QUICK_EXPORT QSGRootNode : public QSGNode
  232. {
  233. public:
  234. QSGRootNode();
  235. ~QSGRootNode();
  236. private:
  237. void notifyNodeChange(QSGNode *node, DirtyState state);
  238. friend class QSGAbstractRenderer;
  239. friend class QSGNode;
  240. friend class QSGGeometryNode;
  241. QList<QSGAbstractRenderer *> m_renderers;
  242. };
  243. class Q_QUICK_EXPORT QSGOpacityNode : public QSGNode
  244. {
  245. public:
  246. QSGOpacityNode();
  247. ~QSGOpacityNode();
  248. void setOpacity(qreal opacity);
  249. qreal opacity() const { return m_opacity; }
  250. void setCombinedOpacity(qreal opacity);
  251. qreal combinedOpacity() const { return m_combined_opacity; }
  252. bool isSubtreeBlocked() const;
  253. private:
  254. qreal m_opacity;
  255. qreal m_combined_opacity;
  256. };
  257. class Q_QUICK_EXPORT QSGNodeVisitor {
  258. public:
  259. virtual ~QSGNodeVisitor();
  260. protected:
  261. virtual void enterTransformNode(QSGTransformNode *) {}
  262. virtual void leaveTransformNode(QSGTransformNode *) {}
  263. virtual void enterClipNode(QSGClipNode *) {}
  264. virtual void leaveClipNode(QSGClipNode *) {}
  265. virtual void enterGeometryNode(QSGGeometryNode *) {}
  266. virtual void leaveGeometryNode(QSGGeometryNode *) {}
  267. virtual void enterOpacityNode(QSGOpacityNode *) {}
  268. virtual void leaveOpacityNode(QSGOpacityNode *) {}
  269. virtual void visitNode(QSGNode *n);
  270. virtual void visitChildren(QSGNode *n);
  271. };
  272. #ifndef QT_NO_DEBUG_STREAM
  273. Q_QUICK_EXPORT QDebug operator<<(QDebug, const QSGNode *n);
  274. Q_QUICK_EXPORT QDebug operator<<(QDebug, const QSGGeometryNode *n);
  275. Q_QUICK_EXPORT QDebug operator<<(QDebug, const QSGTransformNode *n);
  276. Q_QUICK_EXPORT QDebug operator<<(QDebug, const QSGOpacityNode *n);
  277. Q_QUICK_EXPORT QDebug operator<<(QDebug, const QSGRootNode *n);
  278. #endif
  279. Q_DECLARE_OPERATORS_FOR_FLAGS(QSGNode::DirtyState)
  280. Q_DECLARE_OPERATORS_FOR_FLAGS(QSGNode::Flags)
  281. QT_END_NAMESPACE
  282. #endif // QSGNODE_H