代码拉取完成,页面将自动刷新
#include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setFixedSize(800,545);
this->setWindowTitle("超级玛丽");
QApplication::setWindowIcon(QIcon(":/photo/icon.png"));//设置图标
MyPushButton *start_btn=new MyPushButton(":/photo/end.png");//设置开始按钮
start_btn->setParent(this);
start_btn->move(30,this->height()*0.25);
connect(start_btn, &QPushButton::clicked, [=]() {
start_btn->zoom1();
start_btn->zoom2();
QTimer::singleShot(500,this,[=](){
this->hide();
GameScene *gamescene=new GameScene;
gamescene->show();
});
});
MyPushButton *help_btn=new MyPushButton(":/photo/help.png");//设置帮助按钮
help_btn->setParent(this);
help_btn->move(30,this->height()*0.40);
connect(help_btn,&QPushButton::clicked,[=](){
help_btn->zoom1();
help_btn->zoom2();
QTimer::singleShot(500,this,[=](){
this->hide();
GameHelp *gamehelp=new GameHelp();
gamehelp->show();
connect(gamehelp,&GameHelp::back,this,[=](){
this->show();
});
});
});
MyPushButton *end_btn=new MyPushButton(":/photo/start.png");//设置结束按钮
end_btn->setParent(this);
end_btn->move(30,this->height()*0.55);
connect(end_btn,&QPushButton::clicked,[=](){
end_btn->zoom1();
end_btn->zoom2();
QTimer::singleShot(500,this,[=](){
this->close();
});
});
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.drawPixmap(0,0,800,550,QPixmap(":/photo/background1.jpg"));//画背景图
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。