yesnopopupdlg.cpp
582 Bytes
#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();
}