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

时间:2019-01-01 06:42:42

标签: 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);
}

但是它们同时出现。我该如何解决?

1 个答案:

答案 0 :(得分:1)

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

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

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);
}
相关问题