Blame view

app/gui/oven_control/multicookautowindow.cpp 3.54 KB
2f6b55128   김태훈   다중 요리 구현
1
2
3
4
5
6
7
  #include "multicookautowindow.h"
  #include "ui_multicookautowindow.h"
  
  #include <QKeyEvent>
  
  #include "soundplayer.h"
  #include "confirmpopup.h"
1342af7b3   김태훈   도움말 버튼 연결
8
  #include "manualviewerdlg.h"
2f6b55128   김태훈   다중 요리 구현
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  
  MultiCookAutoWindow::MultiCookAutoWindow(QWidget *parent) :
      QMainWindow(parent),
      ui(new Ui::MultiCookAutoWindow)
  {
      ui->setupUi(this);
  
      ui->clockContainer->setParent(ui->upperStack);
      setAttribute(Qt::WA_DeleteOnClose);
  
      book = Q_NULLPTR;
  
      setFocus();
  }
  
  MultiCookAutoWindow::~MultiCookAutoWindow()
  {
      delete ui;
  }
  
  void MultiCookAutoWindow::setType(Define::CookType type)
  {
      ui->cookTypeIcon->setPixmap(Define::icon(type));
  }
  
  void MultiCookAutoWindow::setBook(MultiCookBook *book)
  {
      this->book = book;
  
      QSignalMapper *sm = new QSignalMapper(this);
      connect(sm, SIGNAL(mapped(int)), SLOT(select(int)));
  
      QFont font = this->font();
b3e47756e   김태훈   소스 파일 일괄 변경
42
      font.setPointSize(12);
2f6b55128   김태훈   다중 요리 구현
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
      font.setBold(true);
      font.setWeight(75);
  
      QLatin1String stylesheet("QPushButton {
  "
      "border-image: url(:/images/button/288.png);
  "
      "}
  "
      "QPushButton::pressed, QPushButton:focus {
  "
      "border-image: url(:/images/button/288_ov.png);
  "
      "}");
  
      QList<QString> list = book->names();
  
      QWidget *last = this;
      for (int idx = 0; idx < list.size(); idx++)
      {
b3e47756e   김태훈   소스 파일 일괄 변경
63
64
          int x = 14 + (idx % 3) * 353;
          int y = 738 + (idx / 3) * 96;
2f6b55128   김태훈   다중 요리 구현
65
66
  
          QPushButton *pb = new QPushButton(this);
b3e47756e   김태훈   소스 파일 일괄 변경
67
          pb->setGeometry(QRect(x, y, 345, 84));
2f6b55128   김태훈   다중 요리 구현
68
69
70
71
72
73
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
          pb->setFont(font);
          pb->setStyleSheet(stylesheet);
          pb->setText(list.at(idx));
  
          sm->setMapping(pb, idx);
          connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
  
          setTabOrder(last, pb);
  
          last = pb;
      }
  
      setTabOrder(last, ui->backButton);
      setTabOrder(ui->backButton, ui->helpButton);
  
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
  }
  
  void MultiCookAutoWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000032:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
      case 0x01000030:    // Turn right
          onEncoderRight();
          break;
      }
  }
  
  void MultiCookAutoWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000032:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
      case 0x01000030:    // Turn right
          onEncoderRight();
          break;
      }
  }
  
  void MultiCookAutoWindow::onEncoderLeft()
  {
      focusPreviousChild();
  }
  
  void MultiCookAutoWindow::onEncoderRight()
  {
      focusNextChild();
  }
  
  void MultiCookAutoWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }
  
  void MultiCookAutoWindow::select(int idx)
  {
      selectedIndex = idx;
  
      setFocus();
  
      ConfirmPopup *p = new ConfirmPopup(this, tr("다중 요리 목록에 추가하시겠습니까?"));
      p->showFullScreen();
  
      connect(p, SIGNAL(accepted()), SLOT(confirm()));
  }
  
  void MultiCookAutoWindow::confirm()
  {
      MultiAutoCook *cook = book->cook(selectedIndex);
      if (cook == Q_NULLPTR)
          return;
  
      emit selected(cook);
  }
  
  void MultiCookAutoWindow::on_backButton_clicked()
  {
      close();
  }
  
  void MultiCookAutoWindow::on_helpButton_clicked()
  {
1342af7b3   김태훈   도움말 버튼 연결
167
168
169
      ManualViewerDlg* dlg = new ManualViewerDlg(this);
      dlg->showFullScreen();
      dlg->raise();
2f6b55128   김태훈   다중 요리 구현
170
  }