2024-05-28 06:32:52 +00:00
|
|
|
// Copyright (C) 2024 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
#ifndef SCATTERGRAPHWIDGET_H
|
|
|
|
|
#define SCATTERGRAPHWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include <QtGraphsWidgets/q3dscatterwidgetitem.h>
|
2024-08-06 10:30:05 +00:00
|
|
|
#include <QtQuickWidgets/qquickwidget.h>
|
2024-05-28 06:32:52 +00:00
|
|
|
|
|
|
|
|
class ScatterGraphWidget : public QQuickWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2025-05-09 07:37:43 +00:00
|
|
|
Q_DISABLE_COPY_MOVE(ScatterGraphWidget)
|
|
|
|
|
|
2024-05-28 06:32:52 +00:00
|
|
|
ScatterGraphWidget();
|
|
|
|
|
~ScatterGraphWidget();
|
|
|
|
|
void initialize();
|
|
|
|
|
|
|
|
|
|
Q3DScatterWidgetItem *scatterGraph() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Q3DScatterWidgetItem *m_scatterGraph = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // SCATTERGRAPHWIDGET_H
|