繁体   English   中英

在C ++的启动画面之后显示主窗口-QT

[英]Show main windows after the Splash Screen in C++ - QT

我有一个带有启动画面的应用程序。 我需要显示初始屏幕出现在主窗口出现之前,然后等待3.5秒。 一旦完成,现在我需要显示主窗口。

这是我尝试过的代码,

#include <QApplication>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QTimer>
#include "game.h"
#include "player.h"
#include <QSplashScreen>
#include <QObject>


Game *game;

int main(int argc, char *argv[])

{
    //Splash screen
    QApplication a(argc, argv);
    QSplashScreen *splash = new QSplashScreen;
    splash->setPixmap(QPixmap(":/images/Images/1.JPG"));
    splash->show();

    //main window
    game = new Game();

    QTimer::singleShot(3500, splash, SLOT(close()));

    QTimer::singleShot(3500, game, SLOT(show()));

    game->displayHome();
    return a.exec();
}

游戏类

Game::Game(QWidget *parent)
{

    scene = new QGraphicsScene();
    scene->setSceneRect(0,0,800,600);
    setBackgroundBrush(QBrush(QImage("img.png")));

    setScene(scene);
    setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setFixedSize(800,600);

    show();
     qDebug() << "yoyoyoy";

     score = new Score();
    health = new Health();


    connect(this->health,SIGNAL(crash()),this,SLOT(gameover3()));
}

void Game::displayHome()
{
    logo = new Logo();
    scene->addItem(logo);

    playButton = new Menubuttons(QString("Play"));
    int bxPos = this->width()/2 - playButton->boundingRect().width()/2;
    int byPos = 275;
    playButton->setPos(bxPos,byPos);
    connect(playButton,SIGNAL(clicked()),this,SLOT(startGame()));
    scene->addItem(playButton);

    instructions = new Menubuttons(QString("Instructions"));
    int axPos = this->width()/2 - instructions->boundingRect().width()/2;
    int ayPos = 350;
    instructions->setPos(axPos,ayPos);
    connect(instructions,SIGNAL(clicked()),this,SLOT(instruct()));
    scene->addItem(instructions);

    quitButton = new Menubuttons(QString("Quit"));
    int qxPos = this->width()/2 - quitButton->boundingRect().width()/2;
    int qyPos = 425;
    quitButton->setPos(qxPos,qyPos);
    connect(quitButton,SIGNAL(clicked()),this,SLOT(close()));
    scene->addItem(quitButton);

    scene->removeItem(inst);
}

但两者同时出现。 我该如何解决?

您描述的行为不会由下面的完整示例复制

#include <QtWidgets/QApplication>
#include <qmainwindow.h>
#include <qwidget.h>
#include <qtimer.h>
#include <qsplashscreen.h>

QMainWindow* game;

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QSplashScreen *splash = new QSplashScreen;
    splash->setPixmap(QPixmap(":/StackOverflow/SplashScreen"));
    splash->show();

    game = new QMainWindow();       

    QTimer::singleShot(3500, splash, SLOT(close()));
    QTimer::singleShot(3500, game, SLOT(show()));

    return a.exec();
}

运行此命令将显示启动屏幕3.5秒钟,然后显示主窗口。 问题可能是您对Game类的实现或成员函数displayHome()

编辑

Game类定义和实现进行编辑后,很明显问题是在Game::Game()构造函数的末尾调用show() 这将导致game在构建时立即显示,随后在QTimer::singleShot(3500, game, SLOT(show()))show()调用在已经可见的对象上是多余的。 要解决此问题,只需从Game构造函数中删除show() ,即它应该是

Game::Game(QWidget *parent)
{
    scene = new QGraphicsScene();
    scene->setSceneRect(0, 0, 800, 600);
    setBackgroundBrush(QBrush(QImage("img.png")));

    setScene(scene);
    setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setFixedSize(800, 600);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM