資源簡介
這是用Qt編寫的小說閱讀器,還不是很完善,存在一些bug,因?yàn)榍度肓艘恍﹦e人的代碼。可提供參考
代碼片段和文件信息
#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();
}
評論
共有 條評論