#include "LauncherController.hxx" // Qt headers #include #include #include #include #include #include #include #include #include #include #include // simgear headers #include #include #include // FlightGear headers #include #include
#include #include
#include
#include
#include "version.h" #include "QtLauncher.hxx" #include "QmlAircraftInfo.hxx" #include "LauncherArgumentTokenizer.hxx" #include "PathUrlHelper.hxx" #include "PopupWindowTracker.hxx" #include "RecentAircraftModel.hxx" #include "RecentLocationsModel.hxx" #include "ThumbnailImageItem.hxx" #include "PreviewImageItem.hxx" #include "MPServersModel.h" #include "AircraftSearchFilterModel.hxx" #include "DefaultAircraftLocator.hxx" #include "LaunchConfig.hxx" #include "AircraftModel.hxx" #include "LocationController.hxx" #include "QmlPositioned.hxx" #include "PixmapImageItem.hxx" #include "AirportDiagram.hxx" #include "CarrierDiagram.hxx" #include "NavaidDiagram.hxx" #include "RouteDiagram.hxx" #include "QmlRadioButtonHelper.hxx" #include "UnitsModel.hxx" #include "NavaidSearchModel.hxx" #include "FlightPlanController.hxx" #include "ModelDataExtractor.hxx" #include "CarriersLocationModel.hxx" #include "SetupRootDialog.hxx" #include "HoverArea.hxx" using namespace simgear::pkg; LauncherController::LauncherController(QObject *parent, QWindow* window) : QObject(parent), m_window(window) { m_serversModel = new MPServersModel(this); m_location = new LocationController(this); m_locationHistory = new RecentLocationsModel(this); m_selectedAircraftInfo = new QmlAircraftInfo(this); m_config = new LaunchConfig(this); connect(m_config, &LaunchConfig::collect, this, &LauncherController::collectAircraftArgs); connect(m_config, &LaunchConfig::save, this, &LauncherController::saveAircraft); connect(m_config, &LaunchConfig::restore, this, &LauncherController::restoreAircraft); m_flightPlan = new FlightPlanController(this, m_config); m_location->setLaunchConfig(m_config); connect(m_location, &LocationController::descriptionChanged, this, &LauncherController::summaryChanged); initQML(); m_aircraftModel = new AircraftItemModel(this); m_installedAircraftModel = new AircraftProxyModel(this, m_aircraftModel); m_installedAircraftModel->setInstalledFilterEnabled(true); m_aircraftWithUpdatesModel = new AircraftProxyModel(this, m_aircraftModel); m_aircraftWithUpdatesModel->setInstalledFilterEnabled(true); m_aircraftWithUpdatesModel->setHaveUpdateFilterEnabled(true); m_browseAircraftModel = new AircraftProxyModel(this, m_aircraftModel); m_browseAircraftModel->setRatingFilterEnabled(true); m_aircraftSearchModel = new AircraftProxyModel(this, m_aircraftModel); m_favouriteAircraftModel = new AircraftProxyModel(this, m_aircraftModel); m_favouriteAircraftModel->setShowFavourites(true); m_aircraftHistory = new RecentAircraftModel(m_aircraftModel, this); connect(m_aircraftModel, &AircraftItemModel::aircraftInstallCompleted, this, &LauncherController::onAircraftInstalledCompleted); connect(m_aircraftModel, &AircraftItemModel::aircraftInstallFailed, this, &LauncherController::onAircraftInstallFailed); connect(LocalAircraftCache::instance(), &LocalAircraftCache::scanCompleted, this, &LauncherController::updateSelectedAircraft); QSettings settings; m_aircraftModel->setPackageRoot(globals->packageRoot()); m_aircraftGridMode = settings.value("aircraftGridMode").toBool(); m_subsystemIdleTimer = new QTimer(this); m_subsystemIdleTimer->setInterval(5); connect(m_subsystemIdleTimer, &QTimer::timeout, []() {globals->get_subsystem_mgr()->update(0.0);}); m_subsystemIdleTimer->start(); QRect winRect= settings.value("window-geometry").toRect(); if (winRect.isValid()) { m_window->setGeometry(winRect); } else { m_window->setWidth(600); m_window->setHeight(800); } if (settings.contains("window-state")) { const auto ws = static_cast(settings.value("window-state").toInt()); m_window->setWindowState(ws); } } void LauncherController::initQML() { qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "LauncherController", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "LocationController", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "FlightPlanController", "no"); qmlRegisterType("FlightGear.Launcher", 1, 0, "ArgumentTokenizer"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "QAIM", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "AircraftProxyModel", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "RecentAircraftModel", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "RecentLocationsModel", "no"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "LaunchConfig", "Singleton API"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "MPServers", "Singleton API"); qmlRegisterType("FlightGear", 1, 0, "NavaidSearch"); qmlRegisterType("FlightGear", 1, 0, "CarriersModel"); qmlRegisterUncreatableType("FlightGear", 1, 0, "Units", "Only for enum"); qmlRegisterType("FlightGear", 1, 0, "UnitsModel"); qmlRegisterType("FlightGear.Launcher", 1, 0, "FileDialog"); qmlRegisterType("FlightGear.Launcher", 1, 0, "AircraftInfo"); qmlRegisterType("FlightGear.Launcher", 1, 0, "PopupWindowTracker"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "LocalAircraftCache", "Aircraft cache"); qmlRegisterUncreatableType("FlightGear.Launcher", 1, 0, "AircraftModel", "Built-in model"); qmlRegisterType("FlightGear.Launcher", 1, 0, "ThumbnailImage"); qmlRegisterType("FlightGear.Launcher", 1, 0, "PreviewImage"); qmlRegisterType("FlightGear", 1, 0, "Positioned"); // this is a Q_GADGET, but we need to register it for use in return types, etc qRegisterMetaType(); qmlRegisterType("FlightGear", 1, 0, "PixmapImage"); qmlRegisterType("FlightGear", 1, 0, "AirportDiagram"); qmlRegisterType("FlightGear", 1, 0, "CarrierDiagram"); qmlRegisterType("FlightGear", 1, 0, "NavaidDiagram"); qmlRegisterType("FlightGear", 1, 0, "RouteDiagram"); qmlRegisterType("FlightGear", 1, 0, "RadioButtonGroup"); qmlRegisterType("FlightGear", 1, 0, "HoverArea"); qmlRegisterType("FlightGear", 1, 0, "ModelDataExtractor"); qmlRegisterSingletonType(QUrl("qrc:/qml/OverlayShared.qml"), "FlightGear", 1, 0, "OverlayShared"); QNetworkDiskCache* diskCache = new QNetworkDiskCache(this); SGPath cachePath = globals->get_fg_home() / "PreviewsCache"; diskCache->setCacheDirectory(QString::fromStdString(cachePath.utf8Str())); QNetworkAccessManager* netAccess = new QNetworkAccessManager(this); netAccess->setCache(diskCache); PreviewImageItem::setGlobalNetworkAccess(netAccess); } void LauncherController::setInAppMode() { m_inAppMode = true; m_keepRunningInAppMode = true; m_appModeResult = true; emit inAppChanged(); } bool LauncherController::keepRunningInAppMode() const { return m_keepRunningInAppMode; } bool LauncherController::inAppResult() const { return m_appModeResult; } void LauncherController::initialRestoreSettings() { m_selectedAircraft = m_aircraftHistory->mostRecent(); if (m_selectedAircraft.isEmpty()) { // select the default aircraft specified in defaults.xml flightgear::DefaultAircraftLocator da; if (da.foundPath().exists()) { m_selectedAircraft = QUrl::fromLocalFile(QString::fromStdString(da.foundPath().utf8Str())); qDebug() << "Restored default aircraft:" << m_selectedAircraft; } else { qWarning() << "Completely failed to find the default aircraft"; } } m_location->restoreSearchHistory(); QVariantMap currentLocation = m_locationHistory->mostRecent(); if (currentLocation.isEmpty()) { // use the default std::string defaultAirport = flightgear::defaultAirportICAO(); FGAirportRef apt = FGAirport::findByIdent(defaultAirport); if (apt) { currentLocation["location-id"] = static_cast(apt->guid()); currentLocation["location-apt-runway"] = "ACTIVE"; } // otherwise we failed to find the default airport in the nav-db :( } m_location->restoreLocation(currentLocation); emit selectedAircraftChanged(m_selectedAircraft); updateSelectedAircraft(); m_serversModel->requestRestore(); m_aircraftState = m_config->getValueForKey("", "selected-aircraft-state", QString()).toString(); emit selectedAircraftStateChanged(); emit summaryChanged(); } void LauncherController::saveSettings() { QSettings settings; settings.setValue("window-geometry", m_window->geometry()); if (m_window->windowState() != Qt::WindowNoState) { settings.setValue("window-state", m_window->windowState()); } m_config->saveConfigToINI(); m_aircraftHistory->saveToSettings(); m_locationHistory->saveToSettings(); } void LauncherController::collectAircraftArgs() { // aircraft if (!m_selectedAircraft.isEmpty()) { if (m_selectedAircraft.isLocalFile()) { QFileInfo setFileInfo(m_selectedAircraft.toLocalFile()); m_config->setArg("aircraft-dir", setFileInfo.dir().absolutePath()); QString setFile = setFileInfo.fileName(); Q_ASSERT(setFile.endsWith("-set.xml")); setFile.truncate(setFile.count() - 8); // drop the '-set.xml' portion m_config->setArg("aircraft", setFile); } else if (m_selectedAircraft.scheme() == "package") { // no need to set aircraft-dir, handled by the corresponding code // in fgInitAircraft m_config->setArg("aircraft", m_selectedAircraft.path()); } else { qWarning() << "unsupported aircraft launch URL" << m_selectedAircraft; } } if (m_selectedAircraftInfo->hasStates() && !m_aircraftState.isEmpty()) { QString state = m_aircraftState; if ((m_aircraftState == "auto") && !m_selectedAircraftInfo->haveExplicitAutoState()) { state = selectAircraftStateAutomatically(); #if QT_VERSION >= 0x050600 qInfo() << "doing launcher auto state selection, picked:" + state; #endif } if (!state.isEmpty()) { m_config->setArg("state", state); } } } void LauncherController::saveAircraft() { m_config->setValueForKey("", "selected-aircraft", m_selectedAircraft); if (!m_aircraftState.isEmpty()) { m_config->setValueForKey("", "selected-aircraft-state", m_aircraftState); } } void LauncherController::restoreAircraft() { m_selectedAircraft = m_config->getValueForKey("", "selected-aircraft", QUrl()).toUrl(); m_aircraftState = m_config->getValueForKey("", "selected-aircraft-state", QString()).toString(); emit selectedAircraftChanged(m_selectedAircraft); updateSelectedAircraft(); emit selectedAircraftStateChanged(); } void LauncherController::doRun() { flightgear::Options* opt = flightgear::Options::sharedInstance(); m_config->reset(); m_config->collect(); m_aircraftHistory->insert(m_selectedAircraft); QVariant locSet = m_location->saveLocation(); m_locationHistory->insert(locSet); // aircraft paths QSettings settings; QString downloadDir = settings.value("downloadSettings/downloadDir").toString(); if (!downloadDir.isEmpty()) { QDir d(downloadDir); if (!d.exists()) { int result = QMessageBox::question(nullptr, tr("Create download folder?"), tr("The selected location for downloads does not exist. (%1) Create it?").arg(downloadDir), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); if (result == QMessageBox::Cancel) { return; } if (result == QMessageBox::Yes) { d.mkpath(downloadDir); } } } if (settings.contains("restore-defaults-on-run")) { settings.remove("restore-defaults-on-run"); opt->addOption("restore-defaults", ""); } m_config->applyToOptions(); saveSettings(); } void LauncherController::doApply() { // aircraft if (!m_selectedAircraft.isEmpty()) { std::string aircraftPropValue, aircraftDir; if (m_selectedAircraft.isLocalFile()) { QFileInfo setFileInfo(m_selectedAircraft.toLocalFile()); QString setFile = setFileInfo.fileName(); Q_ASSERT(setFile.endsWith("-set.xml")); setFile.truncate(setFile.count() - 8); // drop the '-set.xml' portion aircraftDir = setFileInfo.dir().absolutePath().toStdString(); aircraftPropValue = setFile.toStdString(); } else if (m_selectedAircraft.scheme() == "package") { // no need to set aircraft-dir, handled by the corresponding code // in fgInitAircraft aircraftPropValue = m_selectedAircraft.path().toStdString(); } else { qWarning() << "unsupported aircraft launch URL" << m_selectedAircraft; } m_aircraftHistory->insert(m_selectedAircraft); globals->get_props()->setStringValue("/sim/aircraft", aircraftPropValue); globals->get_props()->setStringValue("/sim/aircraft-dir", aircraftDir); } m_location->setLocationProperties(); saveSettings(); } QString LauncherController::selectAircraftStateAutomatically() { if (!m_selectedAircraftInfo) return {}; if (m_location->isAirborneLocation() && m_selectedAircraftInfo->hasState("cruise")) { const double altitudeFt = m_location->altitude().convertToUnit(Units::FeetMSL).value; if (altitudeFt > 6000) { return "cruise"; } } if (m_location->isCarrier() && m_location->isAirborneLocation() && m_selectedAircraftInfo->hasState("carrier-approach")) { return "carrier-approach"; } if (m_location->isAirborneLocation() && m_selectedAircraftInfo->hasState("approach")) { return "approach"; } if (m_location->isParkedLocation()) { if (m_selectedAircraftInfo->hasState("parked")) { return "parked"; } if (m_selectedAircraftInfo->hasState("parking")) { return "parking"; } } if (m_location->isCarrier() && m_selectedAircraftInfo->hasState("carrier-take-off")) { return "carrier-take-off"; } if (m_selectedAircraftInfo->hasState("take-off")) { return "take-off"; } return {}; // failed to compute, give up } void LauncherController::maybeUpdateSelectedAircraft(QModelIndex index) { QUrl u = index.data(AircraftURIRole).toUrl(); if (u == m_selectedAircraft) { // potentially enable the run button now! updateSelectedAircraft(); } } void LauncherController::updateSelectedAircraft() { m_selectedAircraftInfo->setUri(m_selectedAircraft); QModelIndex index = m_aircraftModel->indexOfAircraftURI(m_selectedAircraft); if (index.isValid()) { // we have to default to unknown here, until we have an explicit // way to determine if it's a regular aircraft or not m_aircraftType = Unknown; if (index.data(AircraftIsHelicopterRole).toBool()) { m_aircraftType = Helicopter; } else if (index.data(AircraftIsSeaplaneRole).toBool()) { m_aircraftType = Seaplane; } } emit canFlyChanged(); } bool LauncherController::canFly() const { QModelIndex index = m_aircraftModel->indexOfAircraftURI(m_selectedAircraft); if (!index.isValid()) { return false; } int status = index.data(AircraftPackageStatusRole).toInt(); bool canRun = (status == LocalAircraftCache::PackageInstalled); return canRun; } void LauncherController::downloadDirChanged(QString path) { // this can get run if the UI is disabled, just bail out before doing // anything permanent. if (!m_config->enableDownloadDirUI()) { return; } // if the default dir is passed in, map that back to the empty string if (path == m_config->defaultDownloadDir()) { path.clear(); } auto options = flightgear::Options::sharedInstance(); if (options->valueForOption("download-dir") == path.toStdString()) { // this works because we propogate the value from QSettings to // the flightgear::Options object in runLauncherDialog() // so the options object always contains our current idea of this // value return; } if (!path.isEmpty()) { options->setOption("download-dir", path.toStdString()); } else { options->clearOption("download-dir"); } m_config->setValueForKey("", "download-dir", path); saveSettings(); flightgear::restartTheApp(); } QmlAircraftInfo *LauncherController::selectedAircraftInfo() const { return m_selectedAircraftInfo; } void LauncherController::restoreLocation(QVariant var) { m_location->restoreLocation(var.toMap()); } QUrl LauncherController::selectedAircraft() const { return m_selectedAircraft; } bool LauncherController::matchesSearch(QString term, QStringList keywords) const { Q_FOREACH(QString s, keywords) { if (s.contains(term, Qt::CaseInsensitive)) { return true; } } return false; } bool LauncherController::isSearchActive() const { return !m_settingsSearchTerm.isEmpty(); } QStringList LauncherController::settingsSummary() const { return m_settingsSummary; } QStringList LauncherController::environmentSummary() const { return m_environmentSummary; } void LauncherController::setSelectedAircraft(QUrl selectedAircraft) { if (m_selectedAircraft == selectedAircraft) return; m_selectedAircraft = selectedAircraft; m_aircraftState.clear(); updateSelectedAircraft(); emit selectedAircraftChanged(m_selectedAircraft); emit selectedAircraftStateChanged(); } void LauncherController::setSettingsSearchTerm(QString settingsSearchTerm) { if (m_settingsSearchTerm == settingsSearchTerm) return; m_settingsSearchTerm = settingsSearchTerm; emit searchChanged(); } void LauncherController::setSettingsSummary(QStringList settingsSummary) { if (m_settingsSummary == settingsSummary) return; m_settingsSummary = settingsSummary; emit summaryChanged(); } void LauncherController::setEnvironmentSummary(QStringList environmentSummary) { if (m_environmentSummary == environmentSummary) return; m_environmentSummary = environmentSummary; emit summaryChanged(); } void LauncherController::fly() { if (m_inAppMode) { doApply(); m_keepRunningInAppMode = false; m_appModeResult = true; } else { doRun(); qApp->exit(1); } } void LauncherController::quit() { if (m_inAppMode) { m_keepRunningInAppMode = false; m_appModeResult = false; } else { saveSettings(); qApp->exit(0); } } QStringList LauncherController::combinedSummary() const { return m_settingsSummary + m_environmentSummary; } simgear::pkg::PackageRef LauncherController::packageForAircraftURI(QUrl uri) const { if (uri.scheme() != "package") { qWarning() << "invalid URL scheme:" << uri; return simgear::pkg::PackageRef(); } QString ident = uri.path(); return globals->packageRoot()->getPackageById(ident.toStdString()); } bool LauncherController::validateMetarString(QString metar) { if (metar.isEmpty()) { return true; } try { std::string s = metar.toStdString(); SGMetar theMetar(s); } catch (sg_io_exception&) { return false; } return true; } void LauncherController::requestInstallUpdate(QUrl aircraftUri) { simgear::pkg::PackageRef pref = packageForAircraftURI(aircraftUri); if (pref) { if (pref->isInstalled()) { InstallRef install = pref->existingInstall(); if (install->hasUpdate()) { globals->packageRoot()->scheduleToUpdate(install); } } else { pref->install(); } } } void LauncherController::requestUninstall(QUrl aircraftUri) { simgear::pkg::PackageRef pref = packageForAircraftURI(aircraftUri); if (pref) { simgear::pkg::InstallRef i = pref->existingInstall(); if (i) { i->uninstall(); } } } void LauncherController::requestInstallCancel(QUrl aircraftUri) { simgear::pkg::PackageRef pref = packageForAircraftURI(aircraftUri); if (pref) { simgear::pkg::InstallRef i = pref->existingInstall(); if (i) { i->cancelDownload(); } } } void LauncherController::requestUpdateAllAircraft() { const auto pkgRoot = globals->packageRoot(); const PackageList& toBeUpdated = pkgRoot->packagesNeedingUpdate(); std::for_each(toBeUpdated.begin(), toBeUpdated.end(), [pkgRoot](PackageRef pkg) { const auto ins = pkg->install(); if (!pkgRoot->isInstallQueued(ins)) { pkgRoot->scheduleToUpdate(ins); } }); } void LauncherController::queryMPServers() { m_serversModel->refresh(); } QString LauncherController::versionString() const { return FLIGHTGEAR_VERSION; } RecentAircraftModel *LauncherController::aircraftHistory() { return m_aircraftHistory; } RecentLocationsModel *LauncherController::locationHistory() { return m_locationHistory; } void LauncherController::launchUrl(QUrl url) { QDesktopServices::openUrl(url); } QVariantList LauncherController::defaultSplashUrls() const { QVariantList urls; for (auto path : flightgear::defaultSplashScreenPaths()) { QUrl url = QUrl::fromLocalFile(QString::fromStdString(path)); urls.append(url); } return urls; } QVariant LauncherController::loadUISetting(QString name, QVariant defaultValue) const { QSettings settings; if (!settings.contains(name)) return defaultValue; return settings.value(name); } void LauncherController::saveUISetting(QString name, QVariant value) const { QSettings settings; settings.setValue(name, value); } void LauncherController::onAircraftInstalledCompleted(QModelIndex index) { maybeUpdateSelectedAircraft(index); } void LauncherController::onAircraftInstallFailed(QModelIndex index, QString errorMessage) { qWarning() << Q_FUNC_INFO << index.data(AircraftURIRole) << errorMessage; QMessageBox msg; msg.setWindowTitle(tr("Aircraft installation failed")); msg.setText(tr("An error occurred installing the aircraft %1: %2"). arg(index.data(Qt::DisplayRole).toString()).arg(errorMessage)); msg.addButton(QMessageBox::Ok); msg.exec(); maybeUpdateSelectedAircraft(index); } QPointF LauncherController::mapToGlobal(QQuickItem *item, const QPointF &pos) const { QPointF scenePos = item->mapToScene(pos); QQuickWindow* win = item->window(); return win->mapToGlobal(scenePos.toPoint()); } void LauncherController::requestRestoreDefaults() { QMessageBox mbox; mbox.setText(tr("Restore all settings to defaults?")); mbox.setInformativeText(tr("Restoring settings to their defaults may affect available add-ons such as scenery or aircraft.")); QPushButton* quitButton = mbox.addButton(tr("Restore and restart now"), QMessageBox::YesRole); mbox.addButton(QMessageBox::Cancel); mbox.setDefaultButton(QMessageBox::Cancel); mbox.setIconPixmap(QPixmap(":/app-icon-large")); mbox.exec(); if (mbox.clickedButton() != quitButton) { return; } { QSettings settings; settings.clear(); settings.setValue("restore-defaults-on-run", true); } flightgear::restartTheApp(); } void LauncherController::requestChangeDataPath() { QString currentLocText; QSettings settings; QString root = settings.value(SetupRootDialog::rootPathKey()).toString(); if (root.isNull()) { currentLocText = tr("Currently the built-in data files are being used"); } else { currentLocText = tr("Currently using location: %1").arg(root); } QMessageBox mbox; mbox.setText(tr("Change the data files used by FlightGear?")); mbox.setInformativeText(tr("FlightGear requires additional files to operate. " "(Also called the base package, or fg-data) " "You can restart FlightGear and choose a " "different data files location, or restore the default setting. %1").arg(currentLocText)); QPushButton* quitButton = mbox.addButton(tr("Restart FlightGear now"), QMessageBox::YesRole); mbox.addButton(QMessageBox::Cancel); mbox.setDefaultButton(QMessageBox::Cancel); mbox.setIconPixmap(QPixmap(":/app-icon-large")); mbox.exec(); if (mbox.clickedButton() != quitButton) { return; } SetupRootDialog::askRootOnNextLaunch(); flightgear::restartTheApp(); } void LauncherController::openConfig() { QString file = QFileDialog::getOpenFileName(nullptr, tr("Choose a saved configuration"), {}, "*.fglaunch"); if (file.isEmpty()) return; m_config->loadConfigFromFile(file); } void LauncherController::saveConfigAs() { QString file = QFileDialog::getSaveFileName(nullptr, tr("Save the current configuration"), {}, "*.fglaunch"); if (file.isEmpty()) return; if (!file.endsWith(".fglaunch")) { file += ".fglaunch"; } m_config->saveConfigToFile(file); } void LauncherController::setAircraftGridMode(bool aircraftGridMode) { if (m_aircraftGridMode == aircraftGridMode) return; QSettings settings; settings.setValue("aircraftGridMode", aircraftGridMode); m_aircraftGridMode = aircraftGridMode; emit aircraftGridModeChanged(m_aircraftGridMode); } void LauncherController::setMinWindowSize(QSize sz) { if (sz == m_minWindowSize) return; m_window->setMinimumSize(sz); emit minWindowSizeChanged(); } QUrl LauncherController::flyIconUrl() const { if (m_aircraftType == Helicopter) { return QUrl{"qrc:///svg/toolbox-fly-heli"}; } else if (m_selectedAircraftInfo) { if (m_selectedAircraftInfo->hasTag("spaceship")) { return QUrl{"qrc:///svg/toolbox-fly-alt"}; } } return QUrl{"qrc:///svg/toolbox-fly"}; }