Blame view

app/gui/oven_control/yesnopopupdlg.cpp 582 Bytes
c12e09d9a   고영탁   교정 UI 및 팝업 추가
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
26
27
28
29
30
31
32
  #include "yesnopopupdlg.h"
  #include "ui_yesnopopupdlg.h"
  
  YesNoPopupDlg::YesNoPopupDlg(QWidget *parent, QString strDesc) :
      QDialog(parent),
      ui(new Ui::YesNoPopupDlg)
  {
      ui->setupUi(this);
      this->setAttribute( Qt::WA_TranslucentBackground);
      this->setAttribute( Qt::WA_DeleteOnClose);
      this->setWindowFlags(Qt::FramelessWindowHint);
  
      ui->ctrLbDesc->setText(strDesc);
  
  }
  
  YesNoPopupDlg::~YesNoPopupDlg()
  {
      delete ui;
  }
  
  void YesNoPopupDlg::on_ctrBtnYes_clicked()
  {
      this->accept();
  
  }
  
  void YesNoPopupDlg::on_ctrBtnNo_clicked()
  {
      this->reject();
  
  }