• 大小: 6.95MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-11-11
  • 语言: 其他
  • 标签: Qt  

资源简介

这是用Qt编写的小说阅读器,还不是很完善,存在一些bug,因为嵌入了一些别人的代码。可提供参考

资源截图

代码片段和文件信息

#include “mainwindow.h“
#include 


int main(int argc char *argv[])
{
    QApplication a(argc argv);
    QSplashScreen *splash = new QSplashScreen;
    splash->setPixmap(QPixmap(“:/flash/img/image4.jpg“));
    splash->show();

    Qt::Alignment topRight = Qt::AlignRight | Qt::AlignTop;
    splash->showMessage(Qobject::tr(“Setting up the main window...“)
                        topRightQt::white);

    MainWindow w;
    w.app = &a;
    splash->showMessage(Qobject::tr(“Loading modules...“)
                        topRightQt::white);
    //establishConnections();
    w.show();
    w.move((QApplication::desktop()->width()-w.width())/2
           (QApplication::desktop()->height()-w.height())/2);
    splash->finish(&w);
    delete splash;

    return a.exec();
}

评论

共有 条评论