From d26ad955b8613fe3c9863d6d75d759b53b7f38fe Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Wed, 2 Apr 2014 10:56:06 +0200 Subject: [PATCH] Forgot files. --- src/gui/toolbareditor.cpp | 11 +++++++++++ src/gui/toolbareditor.h | 25 +++++++++++++++++++++++++ src/gui/toolbareditor.ui | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 src/gui/toolbareditor.cpp create mode 100644 src/gui/toolbareditor.h create mode 100644 src/gui/toolbareditor.ui diff --git a/src/gui/toolbareditor.cpp b/src/gui/toolbareditor.cpp new file mode 100644 index 000000000..d81116f78 --- /dev/null +++ b/src/gui/toolbareditor.cpp @@ -0,0 +1,11 @@ +#include "gui/toolbareditor.h" + + +ToolBarEditor::ToolBarEditor(QWidget *parent) + : QDialog(parent), m_ui(new Ui::ToolBarEditor) { + m_ui->setupUi(this); +} + +ToolBarEditor::~ToolBarEditor() { + delete m_ui; +} diff --git a/src/gui/toolbareditor.h b/src/gui/toolbareditor.h new file mode 100644 index 000000000..68ff2ec55 --- /dev/null +++ b/src/gui/toolbareditor.h @@ -0,0 +1,25 @@ +#ifndef TOOLBAREDITOR_H +#define TOOLBAREDITOR_H + +#include + +#include "ui_toolbareditor.h" + +namespace Ui { + class ToolBarEditor; +} + +// TODO: dialog pro úpravu prirazeneho toolbaru. +class ToolBarEditor : public QDialog { + Q_OBJECT + + public: + // Constructors and destructors. + explicit ToolBarEditor(QWidget *parent = 0); + virtual ~ToolBarEditor(); + + private: + Ui::ToolBarEditor *m_ui; +}; + +#endif // TOOLBAREDITOR_H diff --git a/src/gui/toolbareditor.ui b/src/gui/toolbareditor.ui new file mode 100644 index 000000000..507456ee6 --- /dev/null +++ b/src/gui/toolbareditor.ui @@ -0,0 +1,18 @@ + + ToolBarEditor + + + + 0 + 0 + 400 + 300 + + + + Dialog + + + + +