operationtimemode.cpp 3.25 KB
#include "operationtimemode.h"
#include "ui_operationtimemode.h"
#include "ovenstatics.h"

OperationTimeMode::OperationTimeMode(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::OperationTimeMode)
{
    ui->setupUi(this);

    ui->clockContainer->setParent(ui->upperStack);
    setAttribute(Qt::WA_DeleteOnClose);

    reloadUi();
}

OperationTimeMode::~OperationTimeMode()
{
    delete ui;
}

void OperationTimeMode::on_backButton_clicked()
{
    close();
}


void OperationTimeMode::reloadUi(void){
    uint32_t timetemp;
    OvenStatistics* ovs = OvenStatistics::getInstance();
    QString strTemp="";
    uint32_t totaltime=0;
    if(ovs!=NULL){
        //건열 조리 모드
        timetemp = ovs->srvdata->use_log.items.cook_dry_mode;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime1->setText(strTemp);
        qDebug() << "Dry Cook Time : " <<timetemp;
        //스팀 조리 모드
        timetemp = ovs->srvdata->use_log.items.cook_steam_mode;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime2->setText(strTemp);
        qDebug() << "Steam Cook Time : " <<timetemp;
        //콤비 조리 모드
        timetemp = ovs->srvdata->use_log.items.cook_combi_mode;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime3->setText(strTemp);
        qDebug() << "Combi Cook Time : " <<timetemp;
        //세제없이  헹굼
        timetemp = ovs->srvdata->use_log.items.wash_mode_nocleanser;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime4->setText(strTemp);
        qDebug() << "Wash Nocleanser Time : " <<timetemp;
        //간이 세척
        timetemp = ovs->srvdata->use_log.items.wash_mode_simple;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime5->setText(strTemp);
        qDebug() << "Wash Simple Time : " <<timetemp;
        //표준 세척
        timetemp = ovs->srvdata->use_log.items.wash_mode_standard;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime6->setText(strTemp);
        qDebug() << "Wash Standard Time : " <<timetemp;
        //강세척
        timetemp = ovs->srvdata->use_log.items.wash_mode_strong;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime7->setText(strTemp);
        qDebug() << "Wash Strong Time : " <<timetemp;
        //고속 세척
        timetemp = ovs->srvdata->use_log.items.wash_mode_speed;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime8->setText(strTemp);
        qDebug() << "Wash Speed Time : " <<timetemp;
        //쿨다운
        timetemp = ovs->srvdata->use_log.items.cooldown_mode;
        totaltime += timetemp;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime9->setText(strTemp);
        qDebug() << "Cool Down Time : " <<timetemp;
        //전체 작동 시간
        timetemp = totaltime;
        strTemp.sprintf("%d h", timetemp/3600);
        ui->m_ctrlLbListTime10->setText(strTemp);
        qDebug() << "Total Time : " <<timetemp;
    }
}