44 lines
896 B
C++
44 lines
896 B
C++
|
#include "passworddialog.h"
|
||
|
#include "ui_passworddialog.h"
|
||
|
#include <QPainter>
|
||
|
#include <QDebug>
|
||
|
PasswordDialog::PasswordDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::PasswordDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
this->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); //设置无边框
|
||
|
setAttribute(Qt::WA_TranslucentBackground,true);
|
||
|
|
||
|
}
|
||
|
|
||
|
PasswordDialog::~PasswordDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
void PasswordDialog::paintEvent(QPaintEvent *event)
|
||
|
{
|
||
|
Q_UNUSED(event)
|
||
|
QPainter painter(this);
|
||
|
painter.fillRect(rect(),QColor(0,0,0,100));
|
||
|
}
|
||
|
|
||
|
void PasswordDialog::on_confirm_Btn_clicked()
|
||
|
{
|
||
|
this->close();
|
||
|
}
|
||
|
|
||
|
void PasswordDialog::changeEvent(QEvent* event)
|
||
|
{
|
||
|
switch (event->type())
|
||
|
{
|
||
|
case QEvent::LanguageChange:
|
||
|
ui->retranslateUi(this);
|
||
|
break;
|
||
|
default:
|
||
|
QWidget::changeEvent(event);
|
||
|
break;
|
||
|
}
|
||
|
}
|