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.
7 lines
194 B
C++
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);
|
|
} |