123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /*
- *openPilot Log - A FOSS Pilot Logbook Application
- *Copyright (C) 2020 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/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/astyle.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")
- int main(int argc, char *argv[])
- {
- QApplication openPilotLog(argc, argv);
- QCoreApplication::setOrganizationName(ORGNAME);
- QCoreApplication::setOrganizationDomain(ORGDOMAIN);
- QCoreApplication::setApplicationName(APPNAME);
- AStandardPaths::setup();
- AStandardPaths::scan_dirs();
- if(!AStandardPaths::validate_dirs()){
- DEB << "Standard paths not valid.";
- return 1;
- }
- ASettings::setup();
- aDB()->connect();
- if (!ASettings::read(ASettings::Setup::SetupComplete).toBool()) {
- FirstRunDialog dialog;
- if(dialog.exec() == QDialog::Rejected){
- DEB "First run not accepted. Exiting.";
- return 1;
- }
- ASettings::write(ASettings::Setup::SetupComplete, true);
- DEB << "Wrote setup_commplete?";
- // qApp->quit();
- // QProcess::startDetached(qApp->arguments()[0], qApp->arguments());
- }
- AStyle::setup();
- //Theming
- // switch (ASettings::read(ASettings::Main::Theme).toInt()) {
- // case 1:{
- // DEB << "main :: Loading light theme";
- // QFile file(":light.qss");
- // file.open(QFile::ReadOnly | QFile::Text);
- // QTextStream stream(&file);
- // openPilotLog.setStyleSheet(stream.readAll());
- // break;
- // }
- // case 2:{
- // DEB << "Loading dark theme";
- // QFile file(":dark.qss");
- // file.open(QFile::ReadOnly | QFile::Text);
- // QTextStream stream(&file);
- // openPilotLog.setStyleSheet(stream.readAll());
- // break;
- // }
- // default:
- // break;
- // }
- //sqlite does not deal well with multiple connections, ensure only one instance is running
- ARunGuard guard(QStringLiteral("opl_single_key"));
- if ( !guard.tryToRun() ){
- DEB << "Another Instance is already running. Exiting.";
- return 2;
- }
- MainWindow w;
- //w.showMaximized();
- w.show();
- return openPilotLog.exec();
- }
|