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
qsgcurveabstractnode_p.h
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QSGCURVEABSTRACTNODE_P_H
6#define QSGCURVEABSTRACTNODE_P_H
7
8#include <QtGui/qcolor.h>
9#include <QtQuick/qsgnode.h>
10
11//
12// W A R N I N G
13// -------------
14//
15// This file is not part of the Qt API. It exists for the convenience
16// of a number of Qt sources files. This header file may change from
17// version to version without notice, or even be removed.
18//
19// We mean it.
20//
21
22QT_BEGIN_NAMESPACE
23
24class QSGCurveAbstractNode : public QSGGeometryNode
25{
26public:
27 virtual void setColor(QColor col) = 0;
28 virtual void cookGeometry() = 0;
29 virtual void setUseStandardDerivatives(bool useStandardDerivatives) = 0;
30 bool isDebugNode = false;
31};
32
34
35#endif // QSGCURVEABSTRACTNODE_P_H
Combined button and popup list for selecting options.