| 1 | // Copyright (C) 2016 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 | |
| 4 | // |
| 5 | // W A R N I N G |
| 6 | // ------------- |
| 7 | // |
| 8 | // This file is not part of the Qt API. It exists for the convenience |
| 9 | // of Qt Designer. This header file may change from version to version |
| 10 | // without notice, or even be removed. |
| 11 | // |
| 12 | // We mean it. |
| 13 | // |
| 14 | |
| 15 | #ifndef QTGROUPBOXPROPERTYBROWSER_H |
| 16 | #define QTGROUPBOXPROPERTYBROWSER_H |
| 17 | |
| 18 | #include "qtpropertybrowser_p.h" |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | class QtGroupBoxPropertyBrowserPrivate; |
| 23 | |
| 24 | class QtGroupBoxPropertyBrowser : public QtAbstractPropertyBrowser |
| 25 | { |
| 26 | Q_OBJECT |
| 27 | public: |
| 28 | QtGroupBoxPropertyBrowser(QWidget *parent = 0); |
| 29 | ~QtGroupBoxPropertyBrowser(); |
| 30 | |
| 31 | protected: |
| 32 | void itemInserted(QtBrowserItem *item, QtBrowserItem *afterItem) override; |
| 33 | void itemRemoved(QtBrowserItem *item) override; |
| 34 | void itemChanged(QtBrowserItem *item) override; |
| 35 | |
| 36 | private: |
| 37 | QScopedPointer<QtGroupBoxPropertyBrowserPrivate> d_ptr; |
| 38 | Q_DECLARE_PRIVATE(QtGroupBoxPropertyBrowser) |
| 39 | Q_DISABLE_COPY_MOVE(QtGroupBoxPropertyBrowser) |
| 40 | }; |
| 41 | |
| 42 | QT_END_NAMESPACE |
| 43 | |
| 44 | #endif |
| 45 |
