From c543117ff43c63a053ea786ed606398ac4687494 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Tue, 4 Mar 2014 12:59:32 +0000 Subject: added source code git-svn-id: file:///var/local/svn/basicwriter@12 daaaf23c-2e50-4459-9457-1e69db5a47bf --- src/gui/notepad.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/gui/notepad.cpp (limited to 'src/gui/notepad.cpp') diff --git a/src/gui/notepad.cpp b/src/gui/notepad.cpp new file mode 100644 index 0000000..e7035f1 --- /dev/null +++ b/src/gui/notepad.cpp @@ -0,0 +1,19 @@ +#include + +#include +//#include + +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() +{ + +} -- cgit v1.2.3