add enhancements tab files
This commit is contained in:
parent
650fe6447d
commit
da83430a68
|
@ -0,0 +1,14 @@
|
|||
#include "configure_enhancements.h"
|
||||
#include "ui_configure_enhancements.h"
|
||||
|
||||
ConfigureEnhancements::ConfigureEnhancements(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::ConfigureEnhancements)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
ConfigureEnhancements::~ConfigureEnhancements()
|
||||
{
|
||||
delete ui;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef CONFIGURE_ENHANCEMENTS_H
|
||||
#define CONFIGURE_ENHANCEMENTS_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class ConfigureEnhancements;
|
||||
}
|
||||
|
||||
class ConfigureEnhancements : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureEnhancements(QWidget *parent = nullptr);
|
||||
~ConfigureEnhancements();
|
||||
|
||||
private:
|
||||
Ui::ConfigureEnhancements *ui;
|
||||
};
|
||||
|
||||
#endif // CONFIGURE_ENHANCEMENTS_H
|
|
@ -0,0 +1,21 @@
|
|||
<ui version="4.0">
|
||||
<author/>
|
||||
<comment/>
|
||||
<exportmacro/>
|
||||
<class>ConfigureEnhancements</class>
|
||||
<widget name="ConfigureEnhancements" class="QWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
</widget>
|
||||
<pixmapfunction/>
|
||||
<connections/>
|
||||
</ui>
|
Reference in New Issue