Forgot files.
This commit is contained in:
parent
52c7082613
commit
d26ad955b8
11
src/gui/toolbareditor.cpp
Normal file
11
src/gui/toolbareditor.cpp
Normal 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
25
src/gui/toolbareditor.h
Normal 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
18
src/gui/toolbareditor.ui
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user