1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef SURFACEGRAPH_H
#define SURFACEGRAPH_H
#include <QtCore/qobject.h>
#include <QtGraphsWidgets/q3dsurfacewidgetitem.h>
#include "surfacegraphmodifier.h"
#include "surfacegraphwidget.h"
class SurfaceGraph : public QObject
{
Q_OBJECT
public:
SurfaceGraph(QWidget *parent = nullptr);
void initialize();
QWidget *surfaceWidget() { return m_surfaceWidget; }
private:
SurfaceGraphModifier *m_modifier = nullptr;
SurfaceGraphWidget *m_surfaceGraphWidget = nullptr;
QWidget *m_surfaceWidget = nullptr;
};
#endif
|