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 + + + + +