]> git.mxchange.org Git - flightgear.git/blob - src/GUI/QtLauncher.hxx
Hacking on the delegate height.
[flightgear.git] / src / GUI / QtLauncher.hxx
1 // QtLauncher.hxx - GUI launcher dialog using Qt5
2 //
3 // Written by James Turner, started December 2014.
4 //
5 // Copyright (C) 2014 James Turner <zakalawe@mac.com>
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef FG_QTLAUNCHER_HXX
22 #define FG_QTLAUNCHER_HXX
23
24 #include <QDialog>
25 #include <QScopedPointer>
26 #include <QStringList>
27 #include <QModelIndex>
28 #include <QTimer>
29
30 #include <Airports/airport.hxx>
31
32 namespace Ui
33 {
34     class Launcher;
35 }
36
37 class AirportSearchModel;
38 class QModelIndex;
39 class AircraftProxyModel;
40 class AircraftItemModel;
41 class QCheckBox;
42 class CatalogListModel;
43
44 class QtLauncher : public QDialog
45 {
46     Q_OBJECT
47 public:
48     QtLauncher();
49     virtual ~QtLauncher();
50
51     static void initApp(int argc, char** argv);
52
53     static bool runLauncherDialog();
54
55 private slots:
56     void onRun();
57     void onQuit();
58
59     void onSearchAirports();
60
61     void onAirportChanged();
62
63     void onAirportChoiceSelected(const QModelIndex& index);
64     void onAircraftSelected(const QModelIndex& index);
65
66     void onPopupAirportHistory();
67     void onPopupAircraftHistory();
68
69     void onOpenCustomAircraftDir();
70
71     void onEditRatingsFilter();
72
73     void updateAirportDescription();
74     void updateSettingsSummary();
75
76     void onAirportSearchComplete();
77
78     void onAddSceneryPath();
79     void onRemoveSceneryPath();
80
81     void onAddAircraftPath();
82     void onRemoveAircraftPath();
83
84     void onAddCatalog();
85     void onRemoveCatalog();
86
87     void onRembrandtToggled(bool b);
88
89     void onSubsytemIdleTimeout();
90 private:
91     void setAirport(FGAirportRef ref);
92     void updateSelectedAircraft();
93
94     void restoreSettings();
95     void saveSettings();
96     
97     QModelIndex proxyIndexForAircraftPath(QString path) const;
98     QModelIndex sourceIndexForAircraftPath(QString path) const;
99
100     void setEnableDisableOptionFromCheckbox(QCheckBox* cbox, QString name) const;
101
102     QScopedPointer<Ui::Launcher> m_ui;
103     AirportSearchModel* m_airportsModel;
104     AircraftProxyModel* m_aircraftProxy;
105     AircraftItemModel* m_aircraftModel;
106     CatalogListModel* m_catalogsModel;
107
108     FGAirportRef m_selectedAirport;
109
110     QString m_selectedAircraft;
111     QStringList m_recentAircraft,
112         m_recentAirports;
113     QString m_customAircraftDir;
114     QTimer* m_subsystemIdleTimer;
115
116     int m_ratingFilters[4];
117 };
118
119 #endif // of FG_QTLAUNCHER_HXX