Initial commit

This commit is contained in:
Robert 2020-09-24 19:06:57 +02:00
parent 70e0a1729e
commit 5c2d5f5454
11 changed files with 279 additions and 0 deletions

12
src/MainWindow.cpp Normal file
View file

@ -0,0 +1,12 @@
#include "MainWindow.hpp"
#include "Screen.hpp"
MainWindow::MainWindow(QWidget* parent) :
QMainWindow(parent)
{
ui.setupUi(this);
Screen* screen = new Screen(this);
ui.layout->addWidget(screen, 0, 0);
}