add tools uis

This commit is contained in:
hm
2020-03-28 21:27:22 +08:00
parent c37d1076e9
commit 063f0c0f55
27 changed files with 585 additions and 49 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "Setting.h"
#include "ui_Setting.h"
Setting::Setting(QWidget *parent) :
QWidget(parent),
ui(new Ui::Setting)
{
ui->setupUi(this);
setWindowTitle(tr("Setting"));
}
Setting::~Setting()
{
delete ui;
}