Blame view

app/gui/oven_control/programmingautoselectionwindow.cpp 4.04 KB
382b586e9   김태훈   프로그래밍 모드 임시 구현
1
2
3
4
  #include "programmingautoselectionwindow.h"
  #include "ui_programmingautoselectionwindow.h"
  
  #include <QSignalMapper>
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
5
  #include <QKeyEvent>
382b586e9   김태훈   프로그래밍 모드 임시 구현
6
7
8
  
  #include "soundplayer.h"
  #include "programmingautoconfigwindow.h"
95a9aa99d   김태훈   기능 보충 구현
9
10
  #include "configwindow.h"
  #include "mainwindow.h"
1342af7b3   김태훈   도움말 버튼 연결
11
  #include "manualviewerdlg.h"
382b586e9   김태훈   프로그래밍 모드 임시 구현
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
  
  ProgrammingAutoSelectionWindow::ProgrammingAutoSelectionWindow(QWidget *parent, Define::CookType type) :
      QMainWindow(parent),
      ui(new Ui::ProgrammingAutoSelectionWindow),
      type(type)
  {
      ui->setupUi(this);
  
      ui->clockContainer->setParent(ui->upperStack);
      setAttribute(Qt::WA_DeleteOnClose);
  
      ui->cookTypeIcon->setPixmap(Define::icon(type));
  
      book = CookBook(type);
  
      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 {\
      border-image: url(:/images/button/288.png);\
  }\
51175dd1a   김태훈   엔코더 구현
40
  QPushButton:pressed, QPushButton:focus {\
382b586e9   김태훈   프로그래밍 모드 임시 구현
41
42
      border-image: url(:/images/button/288_ov.png);\
  }");
51175dd1a   김태훈   엔코더 구현
43
      QWidget *last = this;
382b586e9   김태훈   프로그래밍 모드 임시 구현
44
45
46
47
48
49
50
51
52
53
54
55
56
      for (int idx = 0; idx < book.list.size(); idx++)
      {
          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);
          pb->setText(book.list.at(idx));
  
          sm->setMapping(pb, idx);
          connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
51175dd1a   김태훈   엔코더 구현
57
58
59
60
  
          setTabOrder(last, pb);
  
          last = pb;
382b586e9   김태훈   프로그래밍 모드 임시 구현
61
      }
51175dd1a   김태훈   엔코더 구현
62
63
64
65
      setTabOrder(last, ui->backButton);
      setTabOrder(ui->backButton, ui->configButton);
      setTabOrder(ui->configButton, ui->helpButton);
      setTabOrder(ui->helpButton, ui->okButton);
382b586e9   김태훈   프로그래밍 모드 임시 구현
66
67
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
51175dd1a   김태훈   엔코더 구현
68
69
  
      setFocus();
382b586e9   김태훈   프로그래밍 모드 임시 구현
70
71
72
73
74
75
  }
  
  ProgrammingAutoSelectionWindow::~ProgrammingAutoSelectionWindow()
  {
      delete ui;
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
76
77
78
79
  void ProgrammingAutoSelectionWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
80
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
81
82
83
84
85
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
86
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
87
88
89
90
91
92
93
94
95
          onEncoderRight();
          break;
      }
  }
  
  void ProgrammingAutoSelectionWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
96
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
97
98
99
100
101
102
103
104
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
105
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
106
107
108
109
110
111
112
          onEncoderRight();
          break;
      }
  }
  
  void ProgrammingAutoSelectionWindow::onEncoderLeft()
  {
51175dd1a   김태훈   엔코더 구현
113
      focusPreviousChild();
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
114
115
116
117
  }
  
  void ProgrammingAutoSelectionWindow::onEncoderRight()
  {
51175dd1a   김태훈   엔코더 구현
118
      focusNextChild();
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
119
120
121
122
  }
  
  void ProgrammingAutoSelectionWindow::onEncoderClicked(QWidget *clicked)
  {
51175dd1a   김태훈   엔코더 구현
123
124
125
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
126
  }
382b586e9   김태훈   프로그래밍 모드 임시 구현
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  void ProgrammingAutoSelectionWindow::onCookSelected(int idx)
  {
      ProgrammingAutoConfigWindow *w = new ProgrammingAutoConfigWindow(this, book.get(idx));
      connect(w, SIGNAL(added()), SIGNAL(added()));
      connect(w, SIGNAL(added()), SLOT(hide()));
      connect(w, SIGNAL(added()), SLOT(close()));
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  }
  
  void ProgrammingAutoSelectionWindow::on_backButton_clicked()
  {
      close();
  }
  
  void ProgrammingAutoSelectionWindow::on_configButton_clicked()
  {
95a9aa99d   김태훈   기능 보충 구현
145
146
147
148
      ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
382b586e9   김태훈   프로그래밍 모드 임시 구현
149
95a9aa99d   김태훈   기능 보충 구현
150
      MainWindow::jump(w);
382b586e9   김태훈   프로그래밍 모드 임시 구현
151
152
153
154
  }
  
  void ProgrammingAutoSelectionWindow::on_helpButton_clicked()
  {
1342af7b3   김태훈   도움말 버튼 연결
155
156
157
      ManualViewerDlg* dlg = new ManualViewerDlg(this);
      dlg->showFullScreen();
      dlg->raise();
382b586e9   김태훈   프로그래밍 모드 임시 구현
158
159
160
161
162
163
164
  }
  
  void ProgrammingAutoSelectionWindow::on_okButton_clicked()
  {
      emit added();
      close();
  }