| 1 | // Copyright (C) 2023 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | // |
| 5 | // W A R N I N G |
| 6 | // ------------- |
| 7 | // |
| 8 | // This file is not part of the QtGraphs API. It exists purely as an |
| 9 | // implementation detail. This header file may change from version to |
| 10 | // version without notice, or even be removed. |
| 11 | // |
| 12 | // We mean it. |
| 13 | |
| 14 | #ifndef SURFACEITEMMODELHANDLER_P_H |
| 15 | #define SURFACEITEMMODELHANDLER_P_H |
| 16 | |
| 17 | #include "abstractitemmodelhandler_p.h" |
| 18 | #include "qitemmodelsurfacedataproxy_p.h" |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | class SurfaceItemModelHandler : public AbstractItemModelHandler |
| 23 | { |
| 24 | Q_OBJECT |
| 25 | public: |
| 26 | SurfaceItemModelHandler(QItemModelSurfaceDataProxy *proxy, QObject *parent = 0); |
| 27 | ~SurfaceItemModelHandler() override; |
| 28 | |
| 29 | public Q_SLOTS: |
| 30 | void handleDataChanged(const QModelIndex &topLeft, |
| 31 | const QModelIndex &bottomRight, |
| 32 | const QList<int> &roles = QList<int>()) override; |
| 33 | |
| 34 | protected: |
| 35 | void resolveModel() override; |
| 36 | |
| 37 | QItemModelSurfaceDataProxy *m_proxy; // Not owned |
| 38 | QSurfaceDataArray m_proxyArray; |
| 39 | int m_xPosRole; |
| 40 | int m_yPosRole; |
| 41 | int m_zPosRole; |
| 42 | QRegularExpression m_xPosPattern; |
| 43 | QRegularExpression m_yPosPattern; |
| 44 | QRegularExpression m_zPosPattern; |
| 45 | QString m_xPosReplace; |
| 46 | QString m_yPosReplace; |
| 47 | QString m_zPosReplace; |
| 48 | bool m_haveXPosPattern; |
| 49 | bool m_haveYPosPattern; |
| 50 | bool m_haveZPosPattern; |
| 51 | }; |
| 52 | |
| 53 | QT_END_NAMESPACE |
| 54 | |
| 55 | #endif |
| 56 |
