382b586e9
김태훈
프로그래밍 모드 임시 구현
|
1
2
3
4
5
6
7
8
9
|
#ifndef PROGRAMMINGAUTOCONFIGWINDOW_H
#define PROGRAMMINGAUTOCONFIGWINDOW_H
#include <QMainWindow>
#include <QPushButton>
#include <QLabel>
#include <QSlider>
#include "cookbook.h"
|
935b853a4
김태훈
새 슬라이더 적용
|
10
|
#include "slider.h"
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
11
12
13
14
15
16
17
18
19
20
21
22
|
namespace Ui {
class ProgrammingAutoConfigWindow;
}
class ProgrammingAutoConfigWindow : public QMainWindow
{
Q_OBJECT
public:
explicit ProgrammingAutoConfigWindow(QWidget *parent, Cook cook);
~ProgrammingAutoConfigWindow();
|
51175dd1a
김태훈
엔코더 구현
|
23
|
bool eventFilter(QObject *watched, QEvent *event);
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
24
25
26
|
protected:
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *event);
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
27
28
29
30
31
32
33
34
35
|
private:
Ui::ProgrammingAutoConfigWindow *ui;
Cook cook;
struct ConfigWidget {
QPushButton *button;
QLabel *minimum;
QLabel *maximum;
QLabel *current;
|
935b853a4
김태훈
새 슬라이더 적용
|
36
|
Slider *slider;
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
37
38
39
|
};
QList<ConfigWidget> configWidgets;
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
40
41
42
43
44
|
QWidget *pushed = NULL;
void onEncoderLeft();
void onEncoderRight();
void onEncoderClicked(QWidget *clicked);
|
51175dd1a
김태훈
엔코더 구현
|
45
|
QTimer afterThreeSecsTimer;
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
46
47
48
49
|
private slots:
void setupUi();
void updateView();
void updateConfig();
|
51175dd1a
김태훈
엔코더 구현
|
50
|
void afterThreeSecs();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
51
52
53
54
55
56
57
58
|
void on_backButton_clicked();
void on_configButton_clicked();
void on_helpButton_clicked();
void on_okButton_clicked();
|
51175dd1a
김태훈
엔코더 구현
|
59
60
61
62
63
64
65
66
67
|
void on_configButton_1_clicked();
void on_configButton_2_clicked();
void on_configButton_3_clicked();
void on_configButton_4_clicked();
void on_configButton_5_clicked();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
68
69
70
71
72
|
signals:
void added();
};
#endif // PROGRAMMINGAUTOCONFIGWINDOW_H
|