Blame view

app/gui/oven_control/autocookselectionwindow.cpp 3.9 KB
99b8066f4   김태훈   V0.1.1
1
2
3
4
  #include "autocookselectionwindow.h"
  #include "ui_autocookselectionwindow.h"
  
  #include <QSignalMapper>
6f96c947a   김태훈   GUI 0.1.4
5
  #include <QtDebug>
6f1aa03f6   김태훈   엔코더 구현
6
  #include <QKeyEvent>
99b8066f4   김태훈   V0.1.1
7
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
8
  #include "autocookconfigwindow.h"
bbd7d8f29   김태훈   버튼 음향 추가
9
  #include "soundplayer.h"
e00c6a2a9   김태훈   기능 추가 구현
10
11
12
  #include "configwindow.h"
  #include "washwindow.h"
  #include "mainwindow.h"
99b8066f4   김태훈   V0.1.1
13
3f52600cc   김태훈   소스 코드 구조 개선
14
  AutoCookSelectionWindow::AutoCookSelectionWindow(QWidget *parent, Define::CookType type) :
99b8066f4   김태훈   V0.1.1
15
16
      QMainWindow(parent),
      ui(new Ui::AutoCookSelectionWindow),
3f52600cc   김태훈   소스 코드 구조 개선
17
      type(type), autoCookWindowOpened(false)
99b8066f4   김태훈   V0.1.1
18
19
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
20
      ui->clockContainer->setParent(ui->upperStack);
99b8066f4   김태훈   V0.1.1
21
      setAttribute(Qt::WA_DeleteOnClose);
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
22
      ui->cookTypeIcon->setPixmap(Define::icon(type));
99b8066f4   김태훈   V0.1.1
23
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
24
      book = CookBook(type);
99b8066f4   김태훈   V0.1.1
25
26
27
28
29
30
31
32
33
34
35
36
  
      QSignalMapper *sm = new QSignalMapper(this);
      connect(sm, SIGNAL(mapped(int)), SLOT(onCookSelected(int)));
  
      QFont font;
      font.setFamily(QStringLiteral("Roboto"));
      font.setPointSize(10);
      font.setBold(true);
      font.setWeight(75);
  
      QLatin1String stylesheet("QPushButton {
  "
05f2a7552   김태훈   image 관리 구조 변경
37
38
      "border-image: url(:/images/button/288.png);
  "
99b8066f4   김태훈   V0.1.1
39
40
      "}
  "
6f1aa03f6   김태훈   엔코더 구현
41
42
      "QPushButton::pressed, QPushButton:focus {
  "
05f2a7552   김태훈   image 관리 구조 변경
43
44
      "border-image: url(:/images/button/288_ov.png);
  "
99b8066f4   김태훈   V0.1.1
45
      "}");
f6a046019   김태훈   엔코더 로직 개선
46
      QWidget *last = this;
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
47
      for (int idx = 0; idx < book.list.size(); idx++)
99b8066f4   김태훈   V0.1.1
48
      {
99b8066f4   김태훈   V0.1.1
49
50
51
52
53
54
55
          int x = 12 + (idx % 3) * 294;
          int y = 615 + (idx / 3) * 80;
  
          QPushButton *pb = new QPushButton(this);
          pb->setGeometry(QRect(x, y, 288, 70));
          pb->setFont(font);
          pb->setStyleSheet(stylesheet);
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
56
          pb->setText(book.list.at(idx));
99b8066f4   김태훈   V0.1.1
57
58
59
  
          sm->setMapping(pb, idx);
          connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
6f1aa03f6   김태훈   엔코더 구현
60
f6a046019   김태훈   엔코더 로직 개선
61
62
63
          setTabOrder(last, pb);
  
          last = pb;
99b8066f4   김태훈   V0.1.1
64
      }
bbd7d8f29   김태훈   버튼 음향 추가
65
f6a046019   김태훈   엔코더 로직 개선
66
67
68
69
      setTabOrder(last, ui->backButton);
      setTabOrder(ui->backButton, ui->configButton);
      setTabOrder(ui->configButton, ui->washButton);
      setTabOrder(ui->washButton, ui->helpButton);
bbd7d8f29   김태훈   버튼 음향 추가
70
71
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
6f1aa03f6   김태훈   엔코더 구현
72
73
  
      setFocus();
99b8066f4   김태훈   V0.1.1
74
75
76
77
78
  }
  
  AutoCookSelectionWindow::~AutoCookSelectionWindow()
  {
      delete ui;
99b8066f4   김태훈   V0.1.1
79
  }
6f1aa03f6   김태훈   엔코더 구현
80
81
82
83
  void AutoCookSelectionWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
84
      case 0x01000032:    // Turn left
6f1aa03f6   김태훈   엔코더 구현
85
86
87
88
89
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
90
      case 0x01000030:    // Turn right
6f1aa03f6   김태훈   엔코더 구현
91
92
93
94
95
96
97
98
99
          onEncoderRight();
          break;
      }
  }
  
  void AutoCookSelectionWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
100
      case 0x01000032:    // Turn left
6f1aa03f6   김태훈   엔코더 구현
101
102
103
104
105
106
107
108
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
109
      case 0x01000030:    // Turn right
6f1aa03f6   김태훈   엔코더 구현
110
111
112
113
          onEncoderRight();
          break;
      }
  }
99b8066f4   김태훈   V0.1.1
114
115
  void AutoCookSelectionWindow::onCookSelected(int idx)
  {
e9e5be516   김태훈   창 전환 후 복귀했을 때 포커스...
116
      setFocus();
e00c6a2a9   김태훈   기능 추가 구현
117
118
119
120
121
      AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  }
d66d7f5b4   김태훈   GUI 버전 0.1.2
122
e00c6a2a9   김태훈   기능 추가 구현
123
124
  void AutoCookSelectionWindow::on_backButton_clicked()
  {
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
125
      close();
e00c6a2a9   김태훈   기능 추가 구현
126
127
128
129
130
131
132
133
134
135
136
  }
  
  void AutoCookSelectionWindow::on_configButton_clicked()
  {
      ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  
      MainWindow::jump(w);
  }
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
137
e00c6a2a9   김태훈   기능 추가 구현
138
139
140
  void AutoCookSelectionWindow::on_washButton_clicked()
  {
      WashWindow *w = new WashWindow(MainWindow::getInstance());
6f96c947a   김태훈   GUI 0.1.4
141
      w->setWindowModality(Qt::WindowModal);
99b8066f4   김태훈   V0.1.1
142
      w->showFullScreen();
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
143
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
144
145
  
      MainWindow::jump(w);
99b8066f4   김태훈   V0.1.1
146
  }
e00c6a2a9   김태훈   기능 추가 구현
147
  void AutoCookSelectionWindow::on_helpButton_clicked()
99b8066f4   김태훈   V0.1.1
148
  {
e00c6a2a9   김태훈   기능 추가 구현
149
99b8066f4   김태훈   V0.1.1
150
  }
6f1aa03f6   김태훈   엔코더 구현
151
152
153
  
  void AutoCookSelectionWindow::onEncoderLeft()
  {
f6a046019   김태훈   엔코더 로직 개선
154
      focusPreviousChild();
6f1aa03f6   김태훈   엔코더 구현
155
156
157
158
  }
  
  void AutoCookSelectionWindow::onEncoderRight()
  {
f6a046019   김태훈   엔코더 로직 개선
159
      focusNextChild();
6f1aa03f6   김태훈   엔코더 구현
160
161
162
163
164
165
166
167
  }
  
  void AutoCookSelectionWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }