Forgot files.

This commit is contained in:
Martin Rotter 2014-04-02 10:56:06 +02:00
parent 52c7082613
commit d26ad955b8
3 changed files with 54 additions and 0 deletions

11
src/gui/toolbareditor.cpp Normal file
View File

@ -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;
}

25
src/gui/toolbareditor.h Normal file
View File

@ -0,0 +1,25 @@
#ifndef TOOLBAREDITOR_H
#define TOOLBAREDITOR_H
#include <QDialog>
#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

18
src/gui/toolbareditor.ui Normal file
View File

@ -0,0 +1,18 @@
<ui version="4.0">
<class>ToolBarEditor</class>
<widget name="ToolBarEditor" class="QDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
</widget>
<resources/>
<connections/>
</ui>