-
Notifications
You must be signed in to change notification settings - Fork 17
/
IDEApplication.h
77 lines (61 loc) · 2.09 KB
/
IDEApplication.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
IDEApplication.h
This file is part of arduide, The Qt-based IDE for the open-source Arduino electronics prototyping platform.
Copyright (C) 2010-2016
Authors : Denis Martinez
Martin Peres
Copyright (C) 2011
Laurent Navet (translation support)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file IDEApplication.h
* \author Denis Martinez
* \date 2010-02-28
*/
#ifndef IDEAPPLICATION_H
#define IDEAPPLICATION_H
#include <QApplication>
#include <QTranslator>
#include <grantlee_core.h>
#include "gui/MainWindow.h"
#include "gui/FirstTimeWizard.h"
#include "env/ProjectHistory.h"
#include "env/Settings.h"
#include "IDEGlobal.h"
class QPluginLoader;
class IDE_EXPORT IDEApplication : public QApplication
{
public:
IDEApplication(int& argc, char **argv);
const QString &dataPath() { return mDataPath; }
MainWindow *mainWindow() { return mMainWindow; }
Grantlee::Engine *engine() { return mEngine; }
ProjectHistory *projectHistory() { return mProjectHistory; }
Settings *settings() { return mSettings; }
private:
void registerMetaTypes();
void initializeTemplates();
void initializeGui();
void initializeSettings();
void initializePlugins();
void initializeTranslator();
QString mDataPath;
MainWindow *mMainWindow;
Grantlee::Engine *mEngine;
QPluginLoader *mPluginLoader;
ProjectHistory *mProjectHistory;
Settings *mSettings;
QTranslator mTranslator;
};
#define ideApp (static_cast<IDEApplication *>(qApp))
#endif // IDEAPPLICATION_H