Add Qt screen widget

This commit is contained in:
wheremyfoodat
2023-09-30 13:21:27 +03:00
parent f98662e1bd
commit b8032c8286
4 changed files with 143 additions and 10 deletions

View File

@@ -1,12 +1,17 @@
#include <QApplication>
#include <QtWidgets>
#include "panda_qt/screen.hpp"
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
QWidget window;
window.resize(320, 240);
window.show();
window.setWindowTitle("Alber");
return app.exec();
QApplication app(argc, argv);
QWidget window;
window.resize(320, 240);
window.show();
window.setWindowTitle("Alber");
ScreenWidget screen(&window);
screen.show();
return app.exec();
}