#include #include #include #include #include #ifdef BUILD_OFD_MODE # include #endif #include #if __GNUC__ < 8 && __clang_major__ < 17 # include using namespace std::experimental::filesystem; #else # include using namespace std::filesystem; #endif #include #include #include #include #ifdef BUILD_TRANSLATIONS # include #endif #include #ifdef BUILD_EMAIL_MODE //placeholder #endif #include int main(int argc, char *argv[]) { curl_global_init(CURL_GLOBAL_ALL); std::string program_data_path = get_path_relative_to_home(".local/share/checks_parser"); create_directories(program_data_path); srand(time(0)); QApplication app(argc, argv); std::string settings_file_path = get_path_relative_to_home(".local/share/checks_parser/settings.json"); Settings s(settings_file_path); #ifdef BUILD_TRANSLATIONS QTranslator translator; QString lang = "en_US"; bool languageSettingPresent = false; languageSettingPresent = s.get_all_settings().find("language") != s.get_all_settings().end(); if (languageSettingPresent) { lang = QString::fromStdString(s.get_all_settings()["language"]); } else if (translator.load(":/translation/"+QLocale::system().name()+".qm")) { lang = QLocale::system().name(); } else { lang = QString::fromStdString("en_US"); } std::cout << QObject::tr("Using locale: ").toStdString() << lang.toStdString() << std::endl; translator.load(":/translation/" + lang + ".qm"); app.installTranslator(&translator); #endif MainWindow w; w.show(); // TODO: move to the window //Settings button setup // QPushButton *settingsButton = w.findChild("settings_button"); // QObject::connect(settingsButton, &QPushButton::clicked, [&]() { // SettingsDialog d; // d.show(); // d.exec(); // }); return app.exec(); }