f588aa273
김태훈
부가 기능 로직 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef FAVORITENAMEPOPUP_H
#define FAVORITENAMEPOPUP_H
#include <QWidget>
#include "cookhistory.h"
namespace Ui {
class FavoriteNamePopup;
}
class FavoriteNamePopup : public QWidget
{
Q_OBJECT
explicit FavoriteNamePopup(QWidget *parent);
public:
explicit FavoriteNamePopup(QWidget *parent, ManualCookSetting setting);
explicit FavoriteNamePopup(QWidget *parent, AutoCookSetting setting);
~FavoriteNamePopup();
|
f5634ecc7
김태훈
엔코더 구현
|
22
|
bool eventFilter(QObject *watched, QEvent *event);
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
23
24
25
|
protected:
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *event);
|
f588aa273
김태훈
부가 기능 로직 추가
|
26
27
28
29
30
31
|
private:
Ui::FavoriteNamePopup *ui;
enum { Manual, Auto } type;
ManualCookSetting manualSetting;
AutoCookSetting autoSetting;
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
32
33
34
35
36
|
QWidget *pushed = NULL;
void onEncoderLeft();
void onEncoderRight();
void onEncoderClicked(QWidget *clicked);
|
f5634ecc7
김태훈
엔코더 구현
|
37
|
QString lastLine;
|
f588aa273
김태훈
부가 기능 로직 추가
|
38
39
40
|
private slots:
void ok();
void cancel();
|
f5634ecc7
김태훈
엔코더 구현
|
41
|
void revert();
|
f588aa273
김태훈
부가 기능 로직 추가
|
42
43
44
45
46
|
void on_okButton_clicked();
void on_cancelButton_clicked();
};
#endif // FAVORITENAMEPOPUP_H
|