summaryrefslogtreecommitdiff
path: root/lspaneeditor.h
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-08-15 16:25:15 +0200
committerTreeki <treeki@gmail.com>2012-08-15 16:25:15 +0200
commit247a25c8ecaa8e6496ea1f35c0c7d4eb1154a0a9 (patch)
tree63a8c844f4c4c490cb9a53137352d3a19a74884a /lspaneeditor.h
parentb3e58ec4a57f1cefe34438943b963f86dbf40b72 (diff)
downloadLayoutStudio-247a25c8ecaa8e6496ea1f35c0c7d4eb1154a0a9.tar.gz
LayoutStudio-247a25c8ecaa8e6496ea1f35c0c7d4eb1154a0a9.zip
the beginnings of a very, very unfinished pane editor
Diffstat (limited to 'lspaneeditor.h')
-rw-r--r--lspaneeditor.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/lspaneeditor.h b/lspaneeditor.h
new file mode 100644
index 0000000..92233cc
--- /dev/null
+++ b/lspaneeditor.h
@@ -0,0 +1,30 @@
+#ifndef LSPANEEDITOR_H
+#define LSPANEEDITOR_H
+
+#include <QWidget>
+#include <QGridLayout>
+#include <QTabWidget>
+#include <QMenu>
+#include <QToolButton>
+#include <QLabel>
+
+class LSPaneEditor : public QWidget {
+ Q_OBJECT
+public:
+ explicit LSPaneEditor(QWidget *parent = 0);
+
+private:
+ QLabel *m_headingLabel;
+ QTabWidget *m_tabs;
+
+ QToolButton *m_addChildButton;
+ QMenu *m_addChildMenu;
+ QToolButton *m_removeButton;
+
+signals:
+
+public slots:
+
+};
+
+#endif // LSPANEEDITOR_H