Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qsgnode_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB)
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QSGNODE_P_H
5#define QSGNODE_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <private/qglobal_p.h>
19
20#include "qsgnode.h"
21
22QT_BEGIN_NAMESPACE
23
24class QSGNodePrivate
25{
26public:
27 QSGNodePrivate() {}
28 virtual ~QSGNodePrivate() {}
29
31 static void setDescription(QSGNode *node, const QString &description) {
32 node->d_ptr->descr= description;
33 }
34 static QString description(const QSGNode *node) {
35 return node->d_ptr->descr;
36 }
37 QString descr;
38#endif
39};
40
41
47
48
54
55QT_END_NAMESPACE
56
57#endif // QSGNODE_P_H
QDebug operator<<(QDebug d, const QSGRootNode *n)
Definition qsgnode.cpp:1539
QDebug operator<<(QDebug d, const QSGClipNode *n)
Definition qsgnode.cpp:1476
QDebug operator<<(QDebug d, const QSGNode *n)
Definition qsgnode.cpp:1556
QDebug operator<<(QDebug d, const QSGTransformNode *n)
Definition qsgnode.cpp:1497
void qsgnode_set_description(QSGNode *node, const QString &description)
Definition qsgnode.cpp:641
QDebug operator<<(QDebug d, const QSGOpacityNode *n)
Definition qsgnode.cpp:1520
static void qt_print_node_count()
Definition qsgnode.cpp:19
static QT_BEGIN_NAMESPACE int qt_node_count
Definition qsgnode.cpp:17
QDebug operator<<(QDebug d, const QSGGeometryNode *n)
Definition qsgnode.cpp:1425
const qreal OPACITY_THRESHOLD
Definition qsgnode.cpp:1301
#define QSG_RUNTIME_DESCRIPTION
Definition qsgnode.h:16