main.cpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 <QDebug>
  27. int main(int argc, char *argv[])
  28. {
  29. QCoreApplication::setOrganizationName("Fiffty50");
  30. QCoreApplication::setOrganizationDomain("f-cloud.ch");
  31. QCoreApplication::setApplicationName("openLog");
  32. QApplication openLog(argc, argv);
  33. //Theming with CSS inlcues QFile,QTextStream, QDir, themes folder and TARGET = flog, RESOURCES = themes/breeze.qrc in pro
  34. // credit: https://github.com/Alexhuszagh/BreezeStyleSheets
  35. QDir::setCurrent("/themes");
  36. QFile file(":dark.qss");
  37. file.open(QFile::ReadOnly | QFile::Text);
  38. QTextStream stream(&file);
  39. openLog.setStyleSheet(stream.readAll());
  40. MainWindow w;
  41. w.show();
  42. return openLog.exec();
  43. }