Blame view

app/gui/oven_control/cookpanelbutton.cpp 2.13 KB
b85726132   김태훈   부가 기능 UI 추가
1
2
  #include "cookpanelbutton.h"
  #include "ui_cookpanelbutton.h"
bbd7d8f29   김태훈   버튼 음향 추가
3
  #include "soundplayer.h"
f588aa273   김태훈   부가 기능 로직 추가
4
5
6
  #include "manualcooksettingwidget.h"
  
  CookPanelButton::CookPanelButton(CookRecord record, QWidget *parent) :
b85726132   김태훈   부가 기능 UI 추가
7
      QWidget(parent),
f588aa273   김태훈   부가 기능 로직 추가
8
9
      record(record),
      ui(new Ui::CookPanelButton),
382b586e9   김태훈   프로그래밍 모드 임시 구현
10
11
      rendered(false),
      longPressEnabled(false)
b85726132   김태훈   부가 기능 UI 추가
12
13
  {
      ui->setupUi(this);
f588aa273   김태훈   부가 기능 로직 추가
14
15
  
      setText(record.name);
bbd7d8f29   김태훈   버튼 음향 추가
16
17
18
  
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
382b586e9   김태훈   프로그래밍 모드 임시 구현
19
20
21
22
  
      longPressedTimer.setSingleShot(true);
      longPressedTimer.setInterval(2000);
      connect(&longPressedTimer, SIGNAL(timeout()), SLOT(emitLongPressed()));
b85726132   김태훈   부가 기능 UI 추가
23
24
25
26
27
28
29
30
31
32
33
  }
  
  CookPanelButton::~CookPanelButton()
  {
      delete ui;
  }
  
  void CookPanelButton::setText(QString text)
  {
      ui->pushButton->setText(text);
  }
f588aa273   김태훈   부가 기능 로직 추가
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  
  void CookPanelButton::showInfo()
  {
      if (!rendered)
      {
          QPixmap p = CookHistory::render(record);
  
          label = new QLabel(this);
          label->setPixmap(p);
          label->setGeometry((width() - p.width()) / 2, 65, p.width(), p.height());
      }
  
      label->show();
      setMinimumHeight(ui->pushButton->height() + label->height());
  }
  
  void CookPanelButton::hideInfo()
  {
      label->hide();
      setMinimumHeight(ui->pushButton->height());
  }
  
  void CookPanelButton::focusBar()
  {
      ui->pushButton->setFocus();
  }
  
  void CookPanelButton::focusInfoButton()
  {
      ui->showInfoButton->setFocus();
  }
  
  void CookPanelButton::focusDeleteButton()
  {
      ui->deleteButton->setFocus();
  }
382b586e9   김태훈   프로그래밍 모드 임시 구현
70
71
72
73
74
75
76
77
78
79
  void CookPanelButton::setLongPressEnabled(bool enabled)
  {
      longPressEnabled = enabled;
  }
  
  void CookPanelButton::emitLongPressed()
  {
      emitted = true;
      emit longPressed(this);
  }
f588aa273   김태훈   부가 기능 로직 추가
80
382b586e9   김태훈   프로그래밍 모드 임시 구현
81
  void CookPanelButton::on_showInfoButton_clicked()
f588aa273   김태훈   부가 기능 로직 추가
82
83
84
85
86
87
  {
      emit infoClicked(this);
  }
  
  void CookPanelButton::on_pushButton_clicked()
  {
382b586e9   김태훈   프로그래밍 모드 임시 구현
88
89
      if (longPressEnabled && emitted)
          return;
f588aa273   김태훈   부가 기능 로직 추가
90
91
92
93
94
95
96
      CookHistory::start(record, parentWidget());
  }
  
  void CookPanelButton::on_deleteButton_clicked()
  {
      emit deleteClicked(this);
  }
382b586e9   김태훈   프로그래밍 모드 임시 구현
97
98
99
100
101
102
103
104
105
106
107
  
  void CookPanelButton::on_pushButton_pressed()
  {
      longPressedTimer.start();
      emitted = false;
  }
  
  void CookPanelButton::on_pushButton_released()
  {
      longPressedTimer.stop();
  }