Blame view

app/gui/oven_control/configmastervolumedlg.cpp 1.64 KB
92fef6124   고영탁   환경 설정 - 설정 UI 완료
1
2
  #include "configmastervolumedlg.h"
  #include "ui_configmastervolumedlg.h"
bbd7d8f29   김태훈   버튼 음향 추가
3
  #include "soundplayer.h"
92fef6124   고영탁   환경 설정 - 설정 UI 완료
4
  using namespace Define;
9290e89ca   고영탁   설정 음향 조정
5
  #define MAX_VOL  7
92fef6124   고영탁   환경 설정 - 설정 UI 완료
6
9290e89ca   고영탁   설정 음향 조정
7
  ConfigVolumeDlg::ConfigVolumeDlg(QWidget *parent, ConfigType type) :
92fef6124   고영탁   환경 설정 - 설정 UI 완료
8
9
10
11
12
13
14
15
      QDialog(parent),
      ui(new Ui::ConfigMasterVolumeDlg)
  {
      Config* cfg = Config::getInstance();
      config_item item;
      ui->setupUi(this);
      this->setWindowFlags( Qt::FramelessWindowHint);
      this->setAttribute( Qt::WA_DeleteOnClose);
9290e89ca   고영탁   설정 음향 조정
16
17
18
19
20
21
22
23
24
     if(type == config_keypad_sound2){
      ui->ctrLbTitle->setText(tr("키패드 볼륨"));
     }
  
      m_cfgType = type;
  
      item = cfg->getConfigValue(m_cfgType);
      m_nPrevVol = m_nCurVol = item.d32;
      ui->ctrProgressLight->setMaxProgress(m_nCurVol,MAX_VOL);
92fef6124   고영탁   환경 설정 - 설정 UI 완료
25
  }
9290e89ca   고영탁   설정 음향 조정
26
  ConfigVolumeDlg::~ConfigVolumeDlg()
92fef6124   고영탁   환경 설정 - 설정 UI 완료
27
28
29
  {
      delete ui;
  }
9290e89ca   고영탁   설정 음향 조정
30
  void ConfigVolumeDlg::on_ctrBtnOk_clicked()
92fef6124   고영탁   환경 설정 - 설정 UI 완료
31
  {
92fef6124   고영탁   환경 설정 - 설정 UI 완료
32
33
      accept();
  }
9290e89ca   고영탁   설정 음향 조정
34
  void ConfigVolumeDlg::on_ctrBtnCancel_clicked()
92fef6124   고영탁   환경 설정 - 설정 UI 완료
35
  {
0bceaf006   고영탁   볼륨 조정 수정
36
37
      Config* cfg = Config::getInstance();
      config_item item;
9290e89ca   고영탁   설정 음향 조정
38
39
      item.d32 = m_nPrevVol;
      cfg->setConfigValue(m_cfgType,item);
92fef6124   고영탁   환경 설정 - 설정 UI 완료
40
41
      reject();
  }
9290e89ca   고영탁   설정 음향 조정
42
  void ConfigVolumeDlg::on_ctrBtnMinus_clicked()
92fef6124   고영탁   환경 설정 - 설정 UI 완료
43
  {
0bceaf006   고영탁   볼륨 조정 수정
44
45
      Config* cfg = Config::getInstance();
      config_item item;
9290e89ca   고영탁   설정 음향 조정
46
47
48
49
      m_nCurVol = m_nCurVol > 0?m_nCurVol-1:0;
      item.d32 = m_nCurVol;
      cfg->setConfigValue(m_cfgType,item);
      ui->ctrProgressLight->setCurrentProgress(m_nCurVol);
bbd7d8f29   김태훈   버튼 음향 추가
50
51
  
      SoundPlayer::playClick();
92fef6124   고영탁   환경 설정 - 설정 UI 완료
52
  }
9290e89ca   고영탁   설정 음향 조정
53
  void ConfigVolumeDlg::on_ctrBtnPlus_clicked()
92fef6124   고영탁   환경 설정 - 설정 UI 완료
54
  {
0bceaf006   고영탁   볼륨 조정 수정
55
56
      Config* cfg = Config::getInstance();
      config_item item;
9290e89ca   고영탁   설정 음향 조정
57
58
59
60
      m_nCurVol = m_nCurVol<MAX_VOL?m_nCurVol+1:MAX_VOL;
      item.d32 = m_nCurVol;
      cfg->setConfigValue(m_cfgType,item);
      ui->ctrProgressLight->setCurrentProgress(m_nCurVol);
bbd7d8f29   김태훈   버튼 음향 추가
61
62
  
      SoundPlayer::playClick();
92fef6124   고영탁   환경 설정 - 설정 UI 완료
63
  }