Unity 8
ShellApplication.h
1 /*
2  * Copyright (C) 2015 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef SHELLAPPLICATION_H
18 #define SHELLAPPLICATION_H
19 
20 #include <QGuiApplication>
21 #include <QQmlEngine>
22 #include <QQuickView>
23 #include <QScopedPointer>
24 
25 #include "ApplicationArguments.h"
26 #include "MouseTouchAdaptor.h"
27 #include "SecondaryWindow.h"
28 #include "ShellView.h"
29 
30 class ShellApplication : public QGuiApplication
31 {
32  Q_OBJECT
33 public:
34  ShellApplication(int & argc, char ** argv, bool isMirServer);
35  virtual ~ShellApplication();
36 
37  void destroyResources();
38 public Q_SLOTS:
39  // called by qtmir
40  void onScreenAboutToBeRemoved(QScreen *screen);
41 
42 private Q_SLOTS:
43  void onScreenAdded(QScreen*);
44 
45 private:
46  void setupQmlEngine(bool isMirServer);
47  QString m_deviceName;
48  ApplicationArguments m_qmlArgs;
49  ShellView *m_shellView;
50  SecondaryWindow *m_secondaryWindow;
51  MouseTouchAdaptor *m_mouseTouchAdaptor;
52  QQmlEngine *m_qmlEngine;
53 };
54 
55 #endif // SHELLAPPLICATION_H