代码拉取完成,页面将自动刷新
#include "aboutdialog.h"
#include "ui_aboutdialog.h"
#include <QLabel>
#include <QMessageBox>
#include <QDebug>
#include <QThread>
#pragma execution_character_set("utf-8")
AboutDialog::AboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AboutDialog)
{
ui->setupUi(this);
ui->LogoWaveWater->installEventFilter(this);
iniUI();
}
AboutDialog::~AboutDialog()
{
delete ui;
}
bool AboutDialog::eventFilter(QObject *obj, QEvent *event)
{
Q_UNUSED(obj);
if (event->type() == QEvent::MouseButtonRelease) // 鼠标点击
{
static int Egg=0;
switch (Egg)
{
case 0:QMessageBox::information(this,("(*^▽^*)"),("新年快乐"));
break;
case 1:QMessageBox::information(this,("ヽ( ̄▽ ̄)ノ"),("这个程序没有彩蛋"));
break;
case 2:QMessageBox::information(this,("(~ ̄▽ ̄)~ "),("这个程序真的没有彩蛋"));
break;
case 3:QMessageBox::information(this,(" ̄へ ̄"),("我已经告诉你这个程序没有彩蛋了"));
break;
case 4:QMessageBox::warning(this,("ヽ(#`Д´)ノ"),("停下! "));
break;
case 5:QMessageBox::information(this,("o(*≧д≦)o!!"),("行行行,我给你彩蛋,你能走开吗?"));
break;
case 6:QMessageBox::about(this,("(。◕ᴗ◕。)づ╭❤~"),("╭——ゞこ≈—————ヽ☆——ャ╮\n\n ☆喜欢..や偷看..ゞě.伱的脸ぐ ☆\n\n ┊ず..带着ぺ股.ふ.香甜的气味..ヅ┊\n\n╰————☆╰——— .+.+.ヽ——╯"));
break;
default:QMessageBox::information(this,("(๑>ڡ<)☆"),("给开发者一点鸡腿吧!么么哒(๑>ڡ<)✿ "));
break;
}
Egg++;
}
return false;
}
void AboutDialog::iniUI()
{
/* 限定窗口大小 */
this->setFixedSize(this->width(), this->height());
/* 窗口背景颜色 */
QPalette palette = this->palette();
QColor color(255,255,255); // 白色
palette.setBrush(QPalette::Window, QBrush(color));
this->setPalette(palette);
/* 显示Logo */
QPixmap *LogoImage=new QPixmap();
LogoImage->load(":/images/images/Left Studio.png"); // 加载图片
ui->LogoWaveWater->setImage( // 显示图片
LogoImage->scaled(ui->LogoWaveWater->size(),Qt::KeepAspectRatio)); // 自适应大小
delete LogoImage;
ui->LogoWaveWater->setStoneWeight(150);
ui->label->setOpenExternalLinks(true); // 设置打开链接
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。