File indexing completed on 2024-09-29 03:37:45
0001 /* 0002 This file is part of the proxy model test suite. 0003 0004 SPDX-FileCopyrightText: 2009 Stephen Kelly <steveire@gmail.com> 0005 0006 SPDX-License-Identifier: LGPL-2.1-or-later 0007 */ 0008 0009 #ifndef PROXYMODELTESTWIDGET_H 0010 #define PROXYMODELTESTWIDGET_H 0011 0012 #include <QWidget> 0013 0014 class DynamicTreeModel; 0015 class ModelCommander; 0016 class QPushButton; 0017 0018 class ProxyModelTestWidget : public QWidget 0019 { 0020 Q_OBJECT 0021 public: 0022 explicit ProxyModelTestWidget(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags()); 0023 0024 private: 0025 DynamicTreeModel *m_rootModel; 0026 }; 0027 0028 #endif