forked from KengoSawa2/RapidCopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainsettingdialog.h
55 lines (43 loc) · 1.27 KB
/
mainsettingdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* ========================================================================
Project Name : Fast/Force copy file and directory
Create : 2016-02-28(Sun)
Copyright : Kengo Sawatsu
Reference :
======================================================================== */
#ifndef MAINSETTINGDIALOG_H
#define MAINSETTINGDIALOG_H
#include <QDialog>
#include <tlib.h>
#include <osl.h>
#include <cfg.h>
struct VerifyInfo {
UINT resId;
TDigest::Type type;
};
namespace Ui {
class mainsettingDialog;
}
class mainsettingDialog : public QDialog
{
Q_OBJECT
public:
explicit mainsettingDialog(QWidget *parent = 0,Cfg *cfg_pt = NULL);
~mainsettingDialog();
private:
Ui::mainsettingDialog *ui;
int SetSpeedLevelLabel(int level = -1);
protected:
Cfg *cfg;
VerifyInfo *verifyInfo;
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_general_optionlist_currentRowChanged(int changedrowindex);
BOOL SetData();
BOOL GetData();
void on_slider_Speed_valueChanged(int value);
void on_checkBox_Filelog_stateChanged(int arg1);
void on_lineEdit_Iomax_textChanged(const QString &arg1);
void on_lineEdit_aionum_textChanged(const QString &arg1);
};
#endif // MAINSETTINGDIALOG_H