92fef6124
고영탁
환경 설정 - 설정 UI 완료
|
1
2
3
4
5
|
#ifndef CONFIGTIMEFORMATDLG_H
#define CONFIGTIMEFORMATDLG_H
#include <QDialog>
#include <QSignalMapper>
|
40f5d047f
고영탁
엔코더 작업 진행 중
|
6
7
|
#include <QKeyEvent>
#include <QVector>
|
92fef6124
고영탁
환경 설정 - 설정 UI 완료
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
namespace Ui {
class ConfigTimeFormatDlg;
}
class ConfigTimeFormatDlg : public QDialog
{
Q_OBJECT
void reloadUi(void);
public:
explicit ConfigTimeFormatDlg(QWidget *parent = 0);
~ConfigTimeFormatDlg();
private slots:
void on_ctrBtnOk_clicked();
void on_ctrBtnCancel_clicked();
public slots:
void onConfigBtnClicked(const int sel);
|
40f5d047f
고영탁
엔코더 작업 진행 중
|
31
32
33
|
protected:
void keyReleaseEvent(QKeyEvent* event);
void keyPressEvent(QKeyEvent* event);
|
92fef6124
고영탁
환경 설정 - 설정 UI 완료
|
34
35
36
37
|
private:
Ui::ConfigTimeFormatDlg *ui;
QSignalMapper *m_pSignalMapper;
int m_nCurSel;
|
40f5d047f
고영탁
엔코더 작업 진행 중
|
38
|
QVector<QWidget*> m_vectorTabOrder;
|
92fef6124
고영탁
환경 설정 - 설정 UI 완료
|
39
40
41
|
};
#endif // CONFIGTIMEFORMATDLG_H
|