1
0
forked from BRT/arc
arc/views/MyWindow.cpp
slava 504c6629ab Integrate threading and Tesseract OCR functionality
Added a background worker using QThread for device screening and integrated Tesseract OCR for text recognition from images. Refactored project structure, updated CMakeLists for Tesseract support, and adjusted .gitignore for build files.
2025-04-14 13:59:19 +07:00

7 lines
194 B
C++

#include "MyWindow.h"
#include <QPushButton>
MyWindow::MyWindow(QWidget *parent) : QMainWindow(parent) {
QPushButton* btn = new QPushButton("Hello Qt6!", this);
setCentralWidget(btn);
}