Initial commit
This commit is contained in:
parent
70e0a1729e
commit
5c2d5f5454
11 changed files with 279 additions and 0 deletions
12
src/MainWindow.cpp
Normal file
12
src/MainWindow.cpp
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue