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 
27 #ifdef UNITY8_ENABLE_TOUCH_EMULATION
28 #include "MouseTouchAdaptor.h"
29 #endif
30 
31 #include "SecondaryWindow.h"
32 #include "ShellView.h"
33 
34 class ShellApplication : public QGuiApplication
35 {
36  Q_OBJECT
37 public:
38  ShellApplication(int & argc, char ** argv, bool isMirServer);
39  virtual ~ShellApplication();
40 
41  void destroyResources();
42 public Q_SLOTS:
43  // called by qtmir
44  void onScreenAboutToBeRemoved(QScreen *screen);
45 
46 private Q_SLOTS:
47  void onScreenAdded(QScreen*);
48 
49 private:
50  void setupQmlEngine(bool isMirServer);
51  QString m_deviceName;
52  ApplicationArguments m_qmlArgs;
53  ShellView *m_shellView{nullptr};
54  SecondaryWindow *m_secondaryWindow{nullptr};
55 
56  #ifdef UNITY8_ENABLE_TOUCH_EMULATION
57  MouseTouchAdaptor *m_mouseTouchAdaptor{nullptr};
58  #endif
59 
60  QQmlEngine *m_qmlEngine{nullptr};
61 };
62 
63 #endif // SHELLAPPLICATION_H