File indexing completed on 2023-09-24 04:09:50
0001 /* 0002 This file is part of the proxy model test suite. 0003 0004 SPDX-FileCopyrightText: 2015 Stephen Kelly <steveire@gmail.com> 0005 0006 SPDX-License-Identifier: LGPL-2.1-or-later 0007 */ 0008 0009 #ifndef SELECTIONINQML_WIDGET_H 0010 #define SELECTIONINQML_WIDGET_H 0011 0012 #include <QWidget> 0013 0014 class QTreeView; 0015 0016 class DynamicTreeModel; 0017 0018 class SelectionInQmlWidget : public QWidget 0019 { 0020 public: 0021 SelectionInQmlWidget(QWidget *parent = nullptr); 0022 0023 private: 0024 DynamicTreeModel *m_rootModel; 0025 }; 0026 0027 #endif