Blame view

app/gui/oven_control/operationtimeparts.cpp 3.14 KB
6a965b9f1   고영탁   엔지니어 모드 2차 구현
1
2
3
4
  #include <qdebug.h>
  #include "operationtimeparts.h"
  #include "ui_operationtimeparts.h"
  #include "ovenstatics.h"
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
5
  #include "soundplayer.h"
6a965b9f1   고영탁   엔지니어 모드 2차 구현
6
14a73498f   김태훈   소스 코드 정리
7
  OperationTimeParts::OperationTimeParts(QWidget *parent) :
6a965b9f1   고영탁   엔지니어 모드 2차 구현
8
      QMainWindow(parent),
14a73498f   김태훈   소스 코드 정리
9
      ui(new Ui::OperationTimeParts)
6a965b9f1   고영탁   엔지니어 모드 2차 구현
10
11
  {
      int i=0;
42410a75c   김태훈   오타 수정
12
      OvenStatistics* ovs = OvenStatistics::getInstance();
eea7d3d59   김태훈   Segmentation Faul...
13
6a965b9f1   고영탁   엔지니어 모드 2차 구현
14
      ui->setupUi(this);
eea7d3d59   김태훈   Segmentation Faul...
15
16
      ui->clockContainer->setParent(ui->upperStack);
      setAttribute(Qt::WA_DeleteOnClose);
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
17
18
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
      m_arrTimeLabels[0] = ui->m_ctrlLbListTime_1;
      m_arrTimeLabels[1] = ui->m_ctrlLbListTime_2;
      m_arrTimeLabels[2] = ui->m_ctrlLbListTime_3;
      m_arrTimeLabels[3] = ui->m_ctrlLbListTime_4;
      m_arrTimeLabels[4] = ui->m_ctrlLbListTime_5;
      m_arrTimeLabels[5] = ui->m_ctrlLbListTime_6;
      m_arrTimeLabels[6] = ui->m_ctrlLbListTime_7;
      m_arrTimeLabels[7] = ui->m_ctrlLbListTime_8;
      m_arrTimeLabels[8] = ui->m_ctrlLbListTime_9;
      m_arrTimeLabels[9] = ui->m_ctrlLbListTime_10;
      m_arrTimeLabels[10] = ui->m_ctrlLbListTime_11;
  
      m_arrResetBtn[0] = ui->btnReset_1;
      m_arrResetBtn[1] = ui->btnReset_2;
      m_arrResetBtn[2] = ui->btnReset_3;
      m_arrResetBtn[3] = ui->btnReset_4;
      m_arrResetBtn[4] = ui->btnReset_5;
      m_arrResetBtn[5] = ui->btnReset_6;
      m_arrResetBtn[6] = ui->btnReset_7;
      m_arrResetBtn[7] = ui->btnReset_8;
      m_arrResetBtn[8] = ui->btnReset_9;
      m_arrResetBtn[9] = ui->btnReset_10;
      m_arrResetBtn[10] = ui->btnReset_11;
  
  
      m_btnGrops = new QButtonGroup();
  
      for(i=0;i<OPERATION_TIME_CONTROL_MAX;i++){
          m_btnGrops->addButton(m_arrResetBtn[i],i);
      }
  
      connect(m_btnGrops,SIGNAL(buttonClicked(int)),this,SLOT(on_btnResets_clicked(int)));
  
      if(ovs != NULL){
          for( i =0;i<OPERATION_TIME_PARTS_MAX_ITEM;i++){
              if(m_arrPartItemIdxs[i] != 0xffff){
14a73498f   김태훈   소스 코드 정리
55
                  m_arrUseItems[i] = &(ovs->srvdata->use_log.values[m_arrPartItemIdxs[i]]);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
56
57
58
59
60
61
              }
              else m_arrUseItems[i] = NULL;
          }
      }
      reloadUi();
  }
14a73498f   김태훈   소스 코드 정리
62
  OperationTimeParts::~OperationTimeParts()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
63
64
65
  {
      delete ui;
  }
14a73498f   김태훈   소스 코드 정리
66
  void OperationTimeParts::on_backButton_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
67
  {
eea7d3d59   김태훈   Segmentation Faul...
68
      close();
6a965b9f1   고영탁   엔지니어 모드 2차 구현
69
  }
14a73498f   김태훈   소스 코드 정리
70
  void OperationTimeParts::reloadUi(void){
6a965b9f1   고영탁   엔지니어 모드 2차 구현
71
      uint32_t timetemp;
42410a75c   김태훈   오타 수정
72
      OvenStatistics* ovs = OvenStatistics::getInstance();
6a965b9f1   고영탁   엔지니어 모드 2차 구현
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
      QString strTemp="";
      int i = 0;
  
      if(ovs != NULL){
          for(i = 0; i<OPERATION_TIME_PARTS_MAX_ITEM;i++){
              if(m_arrUseItems[i] != NULL){
                  timetemp = *m_arrUseItems[i];
                  strTemp.sprintf("%d min", timetemp/60);
                  m_arrTimeLabels[i]->setText(strTemp);
              }
              else{
                  m_arrTimeLabels[i]->setText("-");
              }
          }
      }
      else{
          for(i=0;i<OPERATION_TIME_PARTS_MAX_ITEM;i++){
              m_arrTimeLabels[i]->setText("-");
          }
      }
  }
14a73498f   김태훈   소스 코드 정리
94
  void OperationTimeParts::on_btnReset_2_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
95
96
97
  {
  
  }
14a73498f   김태훈   소스 코드 정리
98
  void OperationTimeParts::on_btnResets_clicked(int idx){
6a965b9f1   고영탁   엔지니어 모드 2차 구현
99
100
101
102
103
104
105
106
107
      qDebug() << "PUSH BUTTON " << idx;
      if(idx < OPERATION_TIME_CONTROL_MAX){
          if(m_arrUseItems[idx] !=NULL){
              *m_arrUseItems[idx]=0;
              reloadUi();
          }
      }
  
  }