#include "mainwindow.h" #include "net/net.h" #include "settings/settings.h" #include "utils/utils.h" #include #ifdef BUILD_OFD_MODE # include # 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 #include #include #ifdef BUILD_EMAIL_TO_TEXT_MODE # include #endif #ifdef BUILD_OCR_MODE # include #endif #include #include #include static QWidget *loadUI(QWidget *parent, std::string filename) { QUiLoader loader; QFile file(QString::fromStdString(filename)); file.open(QIODevice::ReadOnly); return loader.load(&file, parent); } 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)); fetch_and_download_modules(); 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); QTranslator translator; QString lang = "en_US"; #ifdef BUILD_TRANSLATIONS 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 QWidget *window = new QWidget(); QStackedLayout *sceneLayout = new QStackedLayout; // Main Window setup QWidget *mainwindowscene = loadUI(window, ":/scenes/scenes/mainwindow.ui"); sceneLayout->addWidget(mainwindowscene); //Settings button setup QPushButton *settingsButton = ((MainWindow *)mainwindowscene)->findChild("settings_button"); QObject::connect(settingsButton, &QPushButton::clicked, [&]() { SettingsDialog d; d.show(); d.exec(); }); for (auto &btn : ((MainWindow *)mainwindowscene)->findChildren()) { if (btn->objectName() == "settings_button") continue; btn->hide(); } // Main Window buttons setup #ifdef BUILD_EMAIL_TO_TEXT_MODE QPushButton *text_from_email_button = ((MainWindow *)mainwindowscene)->findChild("text_from_email_button"); text_from_email_button->show(); EmailTextScene *emailTextScene = new EmailTextScene(); sceneLayout->addWidget(emailTextScene); QObject::connect(text_from_email_button, &QPushButton::clicked, [&]() { // Text from email scene int index = sceneLayout->indexOf(emailTextScene); sceneLayout->setCurrentIndex(index); sceneLayout->widget(index)->show(); }); #endif #ifdef BUILD_OCR_MODE QPushButton *ocr_button = ((MainWindow *)mainwindowscene)->findChild("ocr_button"); ocr_button->show(); OCRScene *ocrscene = new OCRScene(); sceneLayout->addWidget(ocrscene); QObject::connect(ocr_button, &QPushButton::clicked, [&]() { // OCR scene int index = sceneLayout->indexOf(ocrscene); sceneLayout->setCurrentIndex(index); sceneLayout->widget(index)->show(); }); #endif #ifdef BUILD_OFD_MODE QPushButton *ofd_button = ((MainWindow *)mainwindowscene)->findChild("ofd_button"); ofd_button->show(); OFDScene *ofdscene = new OFDScene(); sceneLayout->addWidget(ofdscene); QObject::connect(ofd_button, &QPushButton::clicked, [&]() { // OFD scene int index = sceneLayout->indexOf(ofdscene); sceneLayout->setCurrentIndex(index); sceneLayout->widget(index)->show(); }); #endif //Setting all back buttons for (uint32_t sceneIndex = 0; sceneIndex < sceneLayout->count(); sceneIndex ++) { auto scene = sceneLayout->widget(sceneIndex); QPushButton *back_button = scene->findChild("back_button"); if (back_button == nullptr) continue; QObject::connect(back_button, &QPushButton::clicked, [&]() { sceneLayout->setCurrentIndex(0); }); } window->setLayout(sceneLayout); window->show(); return app.exec(); }