Blame view

app/gui/oven_control/operationtimemode.cpp 3.17 KB
6a965b9f1   고영탁   엔지니어 모드 2차 구현
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  #include "operationtimemode.h"
  #include "ui_operationtimemode.h"
  #include "ovenstatics.h"
  
  operationTimeMode::operationTimeMode(QWidget *parent) :
      QMainWindow(parent),
      ui(new Ui::operationTimeMode)
  {
      ui->setupUi(this);
      reloadUi();
  }
  
  operationTimeMode::~operationTimeMode()
  {
      delete ui;
  }
  
  void operationTimeMode::on_backButton_clicked()
  {
      deleteLater();
  }
  
  
  void operationTimeMode::reloadUi(void){
      uint32_t timetemp;
42410a75c   김태훈   오타 수정
26
      OvenStatistics* ovs = OvenStatistics::getInstance();
6a965b9f1   고영탁   엔지니어 모드 2차 구현
27
28
29
30
31
32
33
34
      QString strTemp="";
      uint32_t totaltime;
      if(ovs!=NULL){
          //건열 조리 모드
          timetemp = ovs->srvdatas->use_log.items.cook_dry_mode;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime1->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
35
          qDebug() << "Dry Cook Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
36
37
38
39
40
          //스팀 조리 모드
          timetemp = ovs->srvdatas->use_log.items.cook_steam_mode;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime2->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
41
          qDebug() << "Steam Cook Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
42
43
44
45
46
          //콤비 조리 모드
          timetemp = ovs->srvdatas->use_log.items.cook_combi_mode;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime3->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
47
          qDebug() << "Combi Cook Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
48
49
50
51
52
          //세제없이  헹굼
          timetemp = ovs->srvdatas->use_log.items.wash_mode_nocleanser;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime4->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
53
          qDebug() << "Wash Nocleanser Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
54
55
56
57
58
          //간이 세척
          timetemp = ovs->srvdatas->use_log.items.wash_mode_simple;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime5->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
59
          qDebug() << "Wash Simple Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
60
61
62
63
64
          //표준 세척
          timetemp = ovs->srvdatas->use_log.items.wash_mode_standard;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime6->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
65
          qDebug() << "Wash Standard Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
66
67
68
69
70
          //강세척
          timetemp = ovs->srvdatas->use_log.items.wash_mode_strong;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime7->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
71
          qDebug() << "Wash Strong Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
72
73
74
75
76
          //고속 세척
          timetemp = ovs->srvdatas->use_log.items.wash_mode_speed;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime8->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
77
          qDebug() << "Wash Speed Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
78
79
80
81
82
          //쿨다운
          timetemp = ovs->srvdatas->use_log.items.cooldown_mode;
          totaltime += timetemp;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime9->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
83
          qDebug() << "Cool Down Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
84
85
86
87
          //전체 작동 시간
          timetemp = totaltime;
          strTemp.sprintf("%d h", timetemp/3600);
          ui->m_ctrlLbListTime10->setText(strTemp);
f8661a150   고영탁   엔지니어 모드 디버깅
88
          qDebug() << "Total Time : " <<timetemp;
6a965b9f1   고영탁   엔지니어 모드 2차 구현
89
90
      }
  }