Blame view

app/gui/oven_control/autocookselectionwindow.cpp 3.95 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
      "}");
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
46
      for (int idx = 0; idx < book.list.size(); idx++)
99b8066f4   김태훈   V0.1.1
47
      {
99b8066f4   김태훈   V0.1.1
48
49
50
51
52
53
54
          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   김태훈   자동 요리 관련 로직 전면 재작성
55
          pb->setText(book.list.at(idx));
99b8066f4   김태훈   V0.1.1
56
57
58
  
          sm->setMapping(pb, idx);
          connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
6f1aa03f6   김태훈   엔코더 구현
59
60
61
  
          if (idx == 0)
              firstEntry = pb;
99b8066f4   김태훈   V0.1.1
62
      }
bbd7d8f29   김태훈   버튼 음향 추가
63
64
65
  
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
6f1aa03f6   김태훈   엔코더 구현
66
67
  
      setFocus();
99b8066f4   김태훈   V0.1.1
68
69
70
71
72
  }
  
  AutoCookSelectionWindow::~AutoCookSelectionWindow()
  {
      delete ui;
99b8066f4   김태훈   V0.1.1
73
  }
6f1aa03f6   김태훈   엔코더 구현
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  void AutoCookSelectionWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000030:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
      case 0x01000032:    // Turn right
          onEncoderRight();
          break;
      }
  }
  
  void AutoCookSelectionWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000030:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
      case 0x01000032:    // Turn right
          onEncoderRight();
          break;
      }
  }
99b8066f4   김태훈   V0.1.1
108
109
  void AutoCookSelectionWindow::onCookSelected(int idx)
  {
e9e5be516   김태훈   창 전환 후 복귀했을 때 포커스...
110
      setFocus();
e00c6a2a9   김태훈   기능 추가 구현
111
112
113
114
115
      AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  }
d66d7f5b4   김태훈   GUI 버전 0.1.2
116
e00c6a2a9   김태훈   기능 추가 구현
117
118
  void AutoCookSelectionWindow::on_backButton_clicked()
  {
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
119
      close();
e00c6a2a9   김태훈   기능 추가 구현
120
121
122
123
124
125
126
127
128
129
130
  }
  
  void AutoCookSelectionWindow::on_configButton_clicked()
  {
      ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  
      MainWindow::jump(w);
  }
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
131
e00c6a2a9   김태훈   기능 추가 구현
132
133
134
  void AutoCookSelectionWindow::on_washButton_clicked()
  {
      WashWindow *w = new WashWindow(MainWindow::getInstance());
6f96c947a   김태훈   GUI 0.1.4
135
      w->setWindowModality(Qt::WindowModal);
99b8066f4   김태훈   V0.1.1
136
      w->showFullScreen();
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
137
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
138
139
  
      MainWindow::jump(w);
99b8066f4   김태훈   V0.1.1
140
  }
e00c6a2a9   김태훈   기능 추가 구현
141
  void AutoCookSelectionWindow::on_helpButton_clicked()
99b8066f4   김태훈   V0.1.1
142
  {
e00c6a2a9   김태훈   기능 추가 구현
143
99b8066f4   김태훈   V0.1.1
144
  }
6f1aa03f6   김태훈   엔코더 구현
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  
  void AutoCookSelectionWindow::onEncoderLeft()
  {
      QWidget *focused = focusWidget();
      if (focused == this || focused == firstEntry)
          ui->helpButton->setFocus();
      else
          focusPreviousChild();
  }
  
  void AutoCookSelectionWindow::onEncoderRight()
  {
      QWidget *focused = focusWidget();
      if (focused == this || focused == ui->helpButton)
          firstEntry->setFocus();
      else
          focusNextChild();
  }
  
  void AutoCookSelectionWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }