summaryrefslogtreecommitdiffstats
path: root/examples/datavisualization/graphgallery/surfacegraph.h
blob: 92b448ad6d4b1c739e0063e4d777334e4eff2533 (plain)
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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef SURFACEGRAPH_H
#define SURFACEGRAPH_H

#include <QtCore/qobject.h>
#include <QtDataVisualization/q3dsurface.h>

class SurfaceGraph : public QObject
{
    Q_OBJECT
public:
    SurfaceGraph();
    ~SurfaceGraph();

    bool initialize();
    QWidget *surfaceWidget() { return m_surfaceWidget; }

private:
    Q3DSurface *m_surfaceGraph = nullptr;
    QWidget *m_container = nullptr;
    QWidget *m_surfaceWidget = nullptr;
};

#endif