资源简介
这是用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();
}
- 上一篇:阿里云数据安全白皮书
- 下一篇:数据结构与算法 张铭 资料包
相关资源
- 智能家居 环境温湿度采集系统
- Qt实现360安全卫士9.1(资源图片)
- Qt类关系图
- Game Programming Using QT.pdf
- Qt+Opencv-PCA人脸识别+视频
- qt 使用——(qt速成)
- qt opengl(after ver2.1) 渲染 nv12
- 海康摄像机Linux64SDK下QT预览实现
- QT 半透明窗口 面板
- qt下的modbus Tcp通讯程序
- QT自定义窗口 自由拖动 自定义标题
- qt 中英文切换
- Qt之控件双击重命名操作
- 车辆保险管理系统
- QT实现SFTP
- qt下超强绘图控件 QCustomPlot
- Qt放大镜
- qt视频播放器
- qt文件管理
- Qt写的遗传算法加画图程序
- QT 登录界面 仿QQ
- Qt实现电力组态软件
- libmosquitto MQTT-Client
- Qt中嵌入Excel
- QT4.6实践编写串口调试助手原创全源码
- testDateEdit.rar
- libpcap qt
- PyQt5编写的大数据应用-高速公路违章
- QT下写的界面程序,可以实现串口和
- Clion+Qt 运行的
评论
共有 条评论