123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- *openPilotLog - A FOSS Pilot Logbook Application
- *Copyright (C) 2020-2021 Felix Turowsky
- *
- *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 3 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 <https://www.gnu.org/licenses/>.
- */
- #include "mainwindow.h"
- #include "src/opl.h"
- #include "src/functions/alog.h"
- #include "src/gui/dialogues/firstrundialog.h"
- #include "src/classes/arunguard.h"
- #include "src/database/adatabase.h"
- #include "src/classes/asettings.h"
- #include "src/classes/astandardpaths.h"
- #include "src/classes/asettings.h"
- #include "src/classes/astyle.h"
- #include "src/functions/alog.h"
- #include <QApplication>
- #include <QProcess>
- #include <QSettings>
- #include <QFileInfo>
- #include <QStandardPaths>
- #include <QDebug>
- #define APPNAME QStringLiteral("openPilotLog")
- #define ORGNAME QStringLiteral("opl")
- #define ORGDOMAIN QStringLiteral("https://github.com/fiffty-50/openpilotlog")
- void init()
- {
- LOG << "Setting up / verifying Application Directories...";
- if(AStandardPaths::setup()) {
- LOG << "Application Directories... verified";
- } else {
- LOG << "Unable to create directories.";
- }
- LOG << "Setting up logging facilities...";
- if(ALog::init(true)) {
- LOG << "Logging enabled.";
- } else {
- LOG << "Unable to initalise logging.";
- }
- LOG << "Reading Settings...";
- ASettings::setup();
- LOG << "Setting up application style...";
- AStyle::setup();
- }
- void firstRun()
- {
- if(FirstRunDialog().exec() == QDialog::Rejected){
- LOG << "Initial setup incomplete or unsuccessfull.";
- return;
- }
- ASettings::write(ASettings::Main::SetupComplete, true);
- LOG << "Initial Setup Completed successfully";
- }
- int main(int argc, char *argv[])
- {
- QApplication openPilotLog(argc, argv);
- QCoreApplication::setOrganizationName(ORGNAME);
- QCoreApplication::setOrganizationDomain(ORGDOMAIN);
- QCoreApplication::setApplicationName(APPNAME);
- // Check for another instance already running
- ARunGuard guard(QStringLiteral("opl_single_key"));
- if ( !guard.tryToRun() ){
- LOG << "Another Instance of openPilotLog is already running. Exiting.";
- return 0;
- }
- // Set Up the Application
- init();
- // Check for First Run and launch Setup Wizard
- if (!ASettings::read(ASettings::Main::SetupComplete).toBool())
- firstRun();
- // Create Main Window and set Window Icon acc. to Platform
- MainWindow w;
- #ifdef __linux__
- w.setWindowIcon(QIcon(Opl::Assets::ICON_APPICON_LINUX));
- #elif defined(_WIN32) || defined(_WIN64)
- w.setWindowIcon(QIcon(Opl::Assets::ICON_APPICON_WIN));
- #elif __APPLE__
- #include <TargetConditionals.h>
- #if TARGET_IPHONE_SIMULATOR
- // iOS Simulator
- #elif TARGET_OS_IPHONE
- // iOS device
- #elif TARGET_OS_MAC
- w.setWindowIcon(QIcon(Opl::Assets::ICON_APPICON_IOS));
- #else
- # error "Unknown Apple platform"
- #endif
- #endif
- //w.showMaximized();
- w.show();
- return openPilotLog.exec();
- }
|