From 247a25c8ecaa8e6496ea1f35c0c7d4eb1154a0a9 Mon Sep 17 00:00:00 2001 From: Treeki Date: Wed, 15 Aug 2012 16:25:15 +0200 Subject: the beginnings of a very, very unfinished pane editor --- lspaneeditor.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 lspaneeditor.h (limited to 'lspaneeditor.h') 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 +#include +#include +#include +#include +#include + +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 -- cgit v1.2.3