2 Star 58 Fork 0

fg/Game-superMary-superMario

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.cpp 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
fg 提交于 2021-04-06 22:58 . project initialized
#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"));//画背景图
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wenyanghe/supermary.git
git@gitee.com:wenyanghe/supermary.git
wenyanghe
supermary
Game-superMary-superMario
main

搜索帮助