summaryrefslogtreecommitdiff
path: root/lspaneeditor.h
diff options
context:
space:
mode:
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