2015-03-07 23:52:03 +00:00
|
|
|
// QtLauncher.hxx - GUI launcher dialog using Qt5
|
|
|
|
//
|
|
|
|
// Written by James Turner, started December 2014.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2014 James Turner <zakalawe@mac.com>
|
|
|
|
//
|
|
|
|
// 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
#ifndef FG_QTLAUNCHER_HXX
|
|
|
|
#define FG_QTLAUNCHER_HXX
|
2014-12-26 12:20:51 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QScopedPointer>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QModelIndex>
|
2015-03-10 08:30:55 +00:00
|
|
|
#include <QTimer>
|
2014-12-26 12:20:51 +00:00
|
|
|
|
|
|
|
#include <Airports/airport.hxx>
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class Launcher;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AirportSearchModel;
|
|
|
|
class QModelIndex;
|
|
|
|
class AircraftProxyModel;
|
2015-03-11 23:20:18 +00:00
|
|
|
class AircraftItemModel;
|
2014-12-26 12:20:51 +00:00
|
|
|
class QCheckBox;
|
2015-03-12 13:29:06 +00:00
|
|
|
class CatalogListModel;
|
2014-12-26 12:20:51 +00:00
|
|
|
|
|
|
|
class QtLauncher : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QtLauncher();
|
|
|
|
virtual ~QtLauncher();
|
2015-03-06 18:52:06 +00:00
|
|
|
|
|
|
|
static void initApp(int argc, char** argv);
|
|
|
|
|
2014-12-26 12:20:51 +00:00
|
|
|
static bool runLauncherDialog();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onRun();
|
|
|
|
void onQuit();
|
|
|
|
|
|
|
|
void onSearchAirports();
|
|
|
|
|
|
|
|
void onAirportChanged();
|
|
|
|
|
|
|
|
void onAirportChoiceSelected(const QModelIndex& index);
|
|
|
|
void onAircraftSelected(const QModelIndex& index);
|
|
|
|
|
|
|
|
void onPopupAirportHistory();
|
|
|
|
void onPopupAircraftHistory();
|
|
|
|
|
|
|
|
void onEditRatingsFilter();
|
|
|
|
|
|
|
|
void updateAirportDescription();
|
|
|
|
void updateSettingsSummary();
|
|
|
|
|
|
|
|
void onAirportSearchComplete();
|
|
|
|
|
|
|
|
void onAddSceneryPath();
|
|
|
|
void onRemoveSceneryPath();
|
2015-01-07 11:30:44 +00:00
|
|
|
|
2015-03-11 23:20:18 +00:00
|
|
|
void onAddAircraftPath();
|
|
|
|
void onRemoveAircraftPath();
|
|
|
|
|
2015-03-12 13:29:06 +00:00
|
|
|
void onAddCatalog();
|
|
|
|
void onRemoveCatalog();
|
2015-03-11 23:20:18 +00:00
|
|
|
|
2015-01-07 11:30:44 +00:00
|
|
|
void onRembrandtToggled(bool b);
|
2015-03-17 22:10:49 +00:00
|
|
|
void onToggleTerrasync(bool enabled);
|
2015-03-10 08:30:55 +00:00
|
|
|
|
|
|
|
void onSubsytemIdleTimeout();
|
2015-03-17 22:10:49 +00:00
|
|
|
|
|
|
|
void onChangeDownloadDir();
|
|
|
|
void onClearDownloadDir();
|
2014-12-26 12:20:51 +00:00
|
|
|
private:
|
|
|
|
void setAirport(FGAirportRef ref);
|
|
|
|
void updateSelectedAircraft();
|
|
|
|
|
|
|
|
void restoreSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
|
|
|
QModelIndex proxyIndexForAircraftPath(QString path) const;
|
|
|
|
QModelIndex sourceIndexForAircraftPath(QString path) const;
|
|
|
|
|
|
|
|
void setEnableDisableOptionFromCheckbox(QCheckBox* cbox, QString name) const;
|
|
|
|
|
|
|
|
QScopedPointer<Ui::Launcher> m_ui;
|
|
|
|
AirportSearchModel* m_airportsModel;
|
|
|
|
AircraftProxyModel* m_aircraftProxy;
|
2015-03-11 23:20:18 +00:00
|
|
|
AircraftItemModel* m_aircraftModel;
|
2015-03-12 13:29:06 +00:00
|
|
|
CatalogListModel* m_catalogsModel;
|
|
|
|
|
2014-12-26 12:20:51 +00:00
|
|
|
FGAirportRef m_selectedAirport;
|
|
|
|
|
|
|
|
QString m_selectedAircraft;
|
|
|
|
QStringList m_recentAircraft,
|
|
|
|
m_recentAirports;
|
2015-03-17 22:10:49 +00:00
|
|
|
QString m_downloadDir;
|
2015-03-10 08:30:55 +00:00
|
|
|
QTimer* m_subsystemIdleTimer;
|
2014-12-26 12:20:51 +00:00
|
|
|
|
|
|
|
int m_ratingFilters[4];
|
|
|
|
};
|
2015-03-07 23:52:03 +00:00
|
|
|
|
|
|
|
#endif // of FG_QTLAUNCHER_HXX
|