776411ce5
고영탁
설정 기능 5월 개발 범위 UI...
|
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
|
#ifndef CONFIGDUTYWASHDLG_H
#define CONFIGDUTYWASHDLG_H
#include <QDialog>
#include <QSignalMapper>
namespace Ui {
class ConfigDutyWashDlg;
}
class ConfigDutyWashDlg : public QDialog
{
Q_OBJECT
public:
explicit ConfigDutyWashDlg(QWidget *parent = 0);
~ConfigDutyWashDlg();
void reloadUi();
private slots:
void on_ctrBtnOk_clicked();
void on_ctrBtnCancel_clicked();
void onConfigBtnClicked(const int sel);
private:
Ui::ConfigDutyWashDlg *ui;
QSignalMapper *m_pSignalMapper;
int m_nCurSel;
};
#endif // CONFIGDUTYWASHDLG_H
|