File indexing completed on 2024-06-30 05:06:32

0001 /*
0002     SPDX-FileCopyrightText: 2010 Stephen Kelly <steveire@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QMainWindow>
0010 
0011 namespace Akonadi
0012 {
0013 class EntityTreeModel;
0014 }
0015 
0016 class FakeServerData;
0017 
0018 class MainWindow : public QMainWindow
0019 {
0020     Q_OBJECT
0021 public:
0022     MainWindow(QWidget *parent = nullptr, Qt::WindowFlags flags = {});
0023 
0024 private Q_SLOTS:
0025     void moveCollection();
0026 
0027 private:
0028     FakeServerData *m_serverData = nullptr;
0029     Akonadi::EntityTreeModel *m_model = nullptr;
0030 };