errorpopupdlg.cpp
653 Bytes
#include "errorpopupdlg.h"
#include "ui_errorpopupdlg.h"
errorPopupDlg::errorPopupDlg(QWidget *parent, const QString &MsgDesc, const QString &MsgTitle) :
QDialog(parent),
ui(new Ui::errorPopupDlg)
{
ui->setupUi(this);
this->setAttribute( Qt::WA_TranslucentBackground);
this->setAttribute( Qt::WA_DeleteOnClose);
this->setWindowFlags(Qt::FramelessWindowHint);
ui->centralwidget->setWindowFlags(Qt::FramelessWindowHint);
ui->ctrlWarnDescription->setText(MsgDesc);
ui->ctrlWarnTitle->setText(MsgTitle);
}
errorPopupDlg::~errorPopupDlg()
{
delete ui;
}
void errorPopupDlg::on_ctrlOkBtn_clicked()
{
close();
}