Lomiri
Loading...
Searching...
No Matches
LomiriApplication.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 LOMIRIAPPLICATION_H
18#define LOMIRIAPPLICATION_H
19
20#include <QGuiApplication>
21#include <QQmlApplicationEngine>
22#include <QQuickView>
23#include <QScopedPointer>
24
25#include "ApplicationArguments.h"
26
27#ifdef LOMIRI_ENABLE_TOUCH_EMULATION
28#include "MouseTouchAdaptor.h"
29#endif
30
31#include <qtmir/mirserverapplication.h>
32
33class LomiriApplication : public qtmir::MirServerApplication
34{
35 Q_OBJECT
36public:
37 LomiriApplication(int & argc, char ** argv);
38 virtual ~LomiriApplication();
39
40 void destroyResources();
41
42private:
43 void setupQmlEngine();
44 ApplicationArguments m_qmlArgs;
45
46 #ifdef LOMIRI_ENABLE_TOUCH_EMULATION
47 MouseTouchAdaptor *m_mouseTouchAdaptor{nullptr};
48 #endif
49
50 QQmlEngine *m_qmlEngine{nullptr};
51};
52
53#endif // LOMIRIAPPLICATION_H