blob: e7035f111c85220fde4227e2d2e5518823a2e27d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <gui/notepad.hpp>
#include <gui/components/UIPaneFrame.hpp>
//#include <gui/components/UIGrid.hpp>
Notepad::Notepad(QWidget *parent) :
QMainWindow(parent)
{
UIPaneFrame *frame = new UIPaneFrame(this);
this->setCentralWidget(frame);
// resize(1024, 768);
// uigrid::UIGrid *grid = new uigrid::UIGrid(this);
// setCentralWidget(grid);
}
Notepad::~Notepad()
{
}
|