diff --git a/CMakeLists.txt b/CMakeLists.txt index 1463ffd..6e584aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,6 +13,10 @@ if (NOT (BUILD_EMAIL_TO_TEXT_MODE OR BUILD_OCR_MODE OR BUILD_OFD_LOCAL_QR_SCAN O return() endif() +if (BUILD_OFD_LOCAL_QR_SCAN OR BUILD_OFD_BINARYEYE_SCAN) + add_compile_definitions(BUILD_OFD_MODE) +endif() + if (BUILD_EMAIL_TO_TEXT_MODE) add_compile_definitions(BUILD_EMAIL_TO_TEXT_MODE) endif() @@ -68,9 +72,6 @@ if (BUILD_OFD_LOCAL_QR_SCAN OR BUILD_OFD_BINARYEYE_SCAN) list(APPEND TRANSLATION_SOURCES ofdscene.cpp ofdscene.h scenes/ofdscene.ui) endif() -message(STATUS ${TRANSLATION_SOURCES}) - - set(PROJECT_SOURCES goods/goods.h goods/goods.cpp check/check.h check/check.cpp @@ -146,9 +147,9 @@ endif() target_link_libraries(checks-parser PRIVATE Qt5::Widgets Qt5::UiTools) -# if (BUILD_OFD_LOCAL_QR_SCAN) +if (BUILD_OFD_LOCAL_QR_SCAN) target_include_directories(checks-parser PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/image_redactor) -# endif() +endif() set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER org.foxarmy.checks-parser) diff --git a/main.cpp b/main.cpp index 208dfa5..dcbb225 100644 --- a/main.cpp +++ b/main.cpp @@ -3,7 +3,10 @@ #include "settings/settings.h" #include "utils/utils.h" #include -#include +#ifdef BUILD_OFD_MODE +# include +# include +#endif #include #if __GNUC__ < 8 && __clang_major__ < 17 # include @@ -17,9 +20,12 @@ #include #include #include -#include -#include -#include +#ifdef BUILD_EMAIL_TO_TEXT_MODE +# include +#endif +#ifdef BUILD_OCR_MODE +# include +#endif #include #include @@ -66,37 +72,50 @@ int main(int argc, char *argv[]) { // Main Window setup QWidget *mainwindowscene = loadUI(window, ":/scenes/scenes/mainwindow.ui"); - // Main Window buttons setup - QPushButton *text_from_email_button = ((MainWindow *)mainwindowscene)->findChild("text_from_email_button"); - QPushButton *ocr_button = ((MainWindow *)mainwindowscene)->findChild("ocr_button"); - QPushButton *ofd_button = ((MainWindow *)mainwindowscene)->findChild("ofd_button"); + sceneLayout->addWidget(mainwindowscene); + for (auto btn : ((MainWindow *)mainwindowscene)->findChildren()) { + 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 - sceneLayout->setCurrentIndex(1); - sceneLayout->widget(1)->show(); + 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 - sceneLayout->setCurrentIndex(2); - sceneLayout->widget(2)->show(); + 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 - sceneLayout->setCurrentIndex(3); - sceneLayout->widget(3)->show(); + int index = sceneLayout->indexOf(ofdscene); + sceneLayout->setCurrentIndex(index); + sceneLayout->widget(index)->show(); }); - - EmailTextScene *emailTextScene = new EmailTextScene(); - OCRScene *ocrscene = new OCRScene(); - OFDScene *ofdscene = new OFDScene(); - - sceneLayout->addWidget(mainwindowscene); - sceneLayout->addWidget(emailTextScene); - sceneLayout->addWidget(ocrscene); - sceneLayout->addWidget(ofdscene); +#endif //Setting all back buttons for (uint32_t sceneIndex = 0; sceneIndex < sceneLayout->count(); sceneIndex ++) { @@ -110,98 +129,8 @@ int main(int argc, char *argv[]) { }); } - - window->setLayout(sceneLayout); window->show(); - app.exec(); - - return 0; - - // QApplication app(argc, argv); - - // QWidget *window = new QWidget; - // QStackedLayout *stackedLayout = new QStackedLayout; - - // QWidget *scene1 = new QWidget; - // QWidget *scene2 = new QWidget; - - // // Add some widgets to each scene - // QPushButton *button1 = new QPushButton("Switch to Scene 2"); - // scene1->setLayout(new QVBoxLayout); - // scene1->layout()->addWidget(button1); - - // QPushButton *button2 = new QPushButton("Switch to Scene 1"); - // scene2->setLayout(new QVBoxLayout); - // scene2->layout()->addWidget(button2); - - // // Add the scenes to the stacked layout - // stackedLayout->addWidget(scene1); - // stackedLayout->addWidget(scene2); - - // // Set the layout of the window - // window->setLayout(stackedLayout); - - // // Connect the buttons to switch scenes - // QObject::connect(button1, &QPushButton::clicked, [&]() { - // stackedLayout->setCurrentIndex(1); - // }); - - // QObject::connect(button2, &QPushButton::clicked, [&]() { - // stackedLayout->setCurrentIndex(0); - // }); - - // window->show(); - // app.exec(); - - // return 0; - 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); - - // std::string settings_file_path = - // get_path_relative_to_home(".local/share/checks_parser/settings.json"); - - // Settings s(settings_file_path); - Net n; - - Parser p; - std::vector stores_updates = p.check_updates(); - for (const std::string &update : stores_updates) { - std::cout << "Downloading " - << s.get_setting("stores_modules_url") + update << " to " - << get_path_relative_to_home(s.get_setting("stores_modules_dir") + - "/" + update) - << std::endl; - - n.get_file(s.get_setting("stores_modules_url") + "/" + update, - get_path_relative_to_home(s.get_setting("stores_modules_dir") + - "/" + update)); - } - - QApplication a(argc, argv); - - // QTranslator translator; - // QString lang = "en_US"; - - // if (s.get_all_settings().contains("language")) { - // 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 << "Using locale: " << lang.toStdString() << std::endl; - - // translator.load(":/translation/" + lang + ".qm"); - - // a.installTranslator(&translator); - MainWindow w; - w.update(); - w.show(); - - return a.exec(); + return app.exec(); } diff --git a/scenes/mainwindow.ui b/scenes/mainwindow.ui index 11127a6..152d9b6 100644 --- a/scenes/mainwindow.ui +++ b/scenes/mainwindow.ui @@ -33,6 +33,12 @@ + + + 0 + 0 + + Optical Character Recognition @@ -40,7 +46,7 @@ - + :/icons/assets/icons/OCR.svg:/icons/assets/icons/OCR.svg @@ -54,7 +60,7 @@ - + 0 0 @@ -69,7 +75,7 @@ - + :/icons/assets/icons/email-text.svg:/icons/assets/icons/email-text.svg @@ -97,11 +103,17 @@ + + + 0 + 0 + + - + :/icons/assets/icons/OFD.svg:/icons/assets/icons/OFD.svg @@ -116,6 +128,9 @@ - + + + + diff --git a/translations/en_US.ts b/translations/en_US.ts index 6163a79..392f975 100644 --- a/translations/en_US.ts +++ b/translations/en_US.ts @@ -27,43 +27,36 @@ EmailTextScene - Form - Form + Form Store type Store type - Check content - Check content + Check content - Parse - Parse + Parse - Store: - Store: + Store: - Back - Back + Back - An error has occured. Check was matched incorrectly. Vector sizes are different. Please, contact the developer. - An error has occured. Check was matched incorrectly. Vector sizes are different. Please, contact the developer. + An error has occured. Check was matched incorrectly. Vector sizes are different. Please, contact the developer. - Error in parsing - Error in parsing + Error in parsing @@ -211,12 +204,12 @@ Form - + Optical Character Recognition Optical Character Recognition - + Text from E-Mail Text from E-Mail diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index f093abd..933da9a 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -27,43 +27,36 @@ EmailTextScene - Form - Форма + Форма Store type Магазин - Check content - Контент чека + Контент чека - Parse - Парсить + Парсить - Store: - Магазин: + Магазин: - Back - Назад + Назад - An error has occured. Check was matched incorrectly. Vector sizes are different. Please, contact the developer. - Произошла ошибка. Чек был прочитан неверно. Размеры векторов различаются. Пожалуйста, сообщите об этом разработчику. + Произошла ошибка. Чек был прочитан неверно. Размеры векторов различаются. Пожалуйста, сообщите об этом разработчику. - Error in parsing - Ошибка в парсинге + Ошибка в парсинге @@ -211,12 +204,12 @@ Форма - + Optical Character Recognition Оптическое распознавание символов - + Text from E-Mail Текст из электронного письма