summaryrefslogtreecommitdiff
path: root/src/gui/notepad.cpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2014-03-04 12:59:32 +0000
committerandreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf>2014-03-04 12:59:32 +0000
commitc543117ff43c63a053ea786ed606398ac4687494 (patch)
treebf13926dff41782831fbf5fc37c274f09f7a0360 /src/gui/notepad.cpp
added source code
git-svn-id: file:///var/local/svn/basicwriter@12 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src/gui/notepad.cpp')
-rw-r--r--src/gui/notepad.cpp19
1 files changed, 19 insertions, 0 deletions
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 <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()
+{
+
+}