http模块有问题,需要修改
This commit is contained in:
47
core_form/frmsetting/frmsetting.h
Normal file
47
core_form/frmsetting/frmsetting.h
Normal file
@@ -0,0 +1,47 @@
|
||||
#ifndef FRMSETTING_H
|
||||
#define FRMSETTING_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "fileconfigdecode.h"
|
||||
#include "serversetting.h"
|
||||
#include "tchttpservice.h"
|
||||
// 开机自启动
|
||||
// 域名/地址
|
||||
// 端口
|
||||
// 上传前重命名
|
||||
// 时间戳重命名
|
||||
// 上传后复制URL
|
||||
|
||||
#define OPENQSS "QLabel{color:#409EFF;}"
|
||||
#define CLOSEQSS "QLabel{color:#FFFFFF;}"
|
||||
|
||||
namespace Ui {
|
||||
class FrmSetting;
|
||||
}
|
||||
|
||||
class FrmSetting : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FrmSetting(FileConfigDecode* fileConfig, QWidget *parent = nullptr);
|
||||
~FrmSetting();
|
||||
|
||||
private:
|
||||
|
||||
void initForm();
|
||||
void initWidget();
|
||||
|
||||
private slots:
|
||||
void schRenameSlot(bool checked);
|
||||
void schAutoSetup(bool checked);
|
||||
void schTimeRename(bool checked);
|
||||
void schEnableSsl(bool checked);
|
||||
|
||||
private:
|
||||
Ui::FrmSetting *ui;
|
||||
FileConfigDecode* fileConfig = nullptr;
|
||||
ServerSetting* serversetting;
|
||||
};
|
||||
|
||||
#endif // FRMSETTING_H
|
||||
Reference in New Issue
Block a user