Blame view

app/gui/oven_control/errorpopupdlg.cpp 653 Bytes
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
1
2
  #include "errorpopupdlg.h"
  #include "ui_errorpopupdlg.h"
6defa93ae   고영탁   에러 팝업 디자인 변경
3
  errorPopupDlg::errorPopupDlg(QWidget *parent, const QString &MsgDesc, const QString &MsgTitle) :
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
4
5
6
7
      QDialog(parent),
      ui(new Ui::errorPopupDlg)
  {
      ui->setupUi(this);
6defa93ae   고영탁   에러 팝업 디자인 변경
8
9
      this->setAttribute( Qt::WA_TranslucentBackground);
      this->setAttribute( Qt::WA_DeleteOnClose);
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
10
11
12
13
      this->setWindowFlags(Qt::FramelessWindowHint);
  
      ui->centralwidget->setWindowFlags(Qt::FramelessWindowHint);
      ui->ctrlWarnDescription->setText(MsgDesc);
6defa93ae   고영탁   에러 팝업 디자인 변경
14
      ui->ctrlWarnTitle->setText(MsgTitle);
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
15
16
17
18
19
20
  }
  
  errorPopupDlg::~errorPopupDlg()
  {
      delete ui;
  }
6defa93ae   고영탁   에러 팝업 디자인 변경
21
  void errorPopupDlg::on_ctrlOkBtn_clicked()
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
22
  {
6defa93ae   고영탁   에러 팝업 디자인 변경
23
      close();
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
24
  }