main.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. *openPilot Log - A FOSS Pilot Logbook Application
  3. *Copyright (C) 2020 Felix Turowsky
  4. *
  5. *This program is free software: you can redistribute it and/or modify
  6. *it under the terms of the GNU General Public License as published by
  7. *the Free Software Foundation, either version 3 of the License, or
  8. *(at your option) any later version.
  9. *
  10. *This program is distributed in the hope that it will be useful,
  11. *but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. *GNU General Public License for more details.
  14. *
  15. *You should have received a copy of the GNU General Public License
  16. *along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. #include "mainwindow.h"
  19. //#include <QCoreApplication>
  20. #include <QApplication>
  21. #include <QFile>
  22. #include <QTextStream>
  23. #include <QDir>
  24. #include <QPalette>
  25. #include <QColor>
  26. #include "dbman.cpp"
  27. #include "dbsettings.h"
  28. #include <QDebug>
  29. int selectedtheme = 1; //Variable to store theming information
  30. int main(int argc, char *argv[])
  31. {
  32. QCoreApplication::setOrganizationName("Fiffty50");
  33. QCoreApplication::setOrganizationDomain("f-cloud.ch");
  34. QCoreApplication::setApplicationName("openLog");
  35. QApplication openLog(argc, argv);
  36. db::connect(); //connect to the database
  37. //Theming with CSS inlcues QFile,QTextStream, QDir, themes folder and TARGET = flog, RESOURCES = themes/breeze.qrc in pro
  38. // credit: https://github.com/Alexhuszagh/BreezeStyleSheets
  39. selectedtheme = dbSettings::retreiveSetting(10).toInt();
  40. QDir::setCurrent("/themes");
  41. if (selectedtheme == 1){
  42. qDebug() << "Loading light theme";
  43. QFile file(":light.qss");
  44. file.open(QFile::ReadOnly | QFile::Text);
  45. QTextStream stream(&file);
  46. openLog.setStyleSheet(stream.readAll());
  47. }else if (selectedtheme == 2){
  48. qDebug() << "Loading dark theme";
  49. QFile file(":dark.qss");
  50. file.open(QFile::ReadOnly | QFile::Text);
  51. QTextStream stream(&file);
  52. openLog.setStyleSheet(stream.readAll());
  53. }
  54. MainWindow w;
  55. w.show();
  56. return openLog.exec();
  57. }