资源简介
qt 实现的http下载器,包括get,post方式提交请求
代码片段和文件信息
#include “dialog.h“
#include “ui_dialog.h“
#include
#include
#include
#include
#include
#include
#include
#include
#include
Dialog::Dialog(QWidget *parent) :
QDialog(parent)
ui(new Ui::Dialog)
{
ui->setupUi(this);
ui->statusBar->setText(tr(“欢迎使用http下载器“));
}
Dialog::~Dialog()
{
delete ui;
}
void Dialog::changeEvent(QEvent *e)
{
QDialog::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
void Dialog::on_pushButton_2_clicked()
{
close();
}
void Dialog::cancelDownload()
{
ui->statusBar->se
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-08-21 12:29 http_dlg\
文件 9489 2013-08-21 12:24 http_dlg\dialog.cpp
文件 1073 2013-08-21 12:20 http_dlg\dialog.h
文件 3749 2013-08-21 12:23 http_dlg\dialog.ui
文件 377 2013-08-21 10:13 http_dlg\http_dlg.pro
文件 17594 2013-08-21 12:29 http_dlg\http_dlg.pro.user
文件 264 2013-08-21 11:04 http_dlg\main.cpp
- 上一篇:频率合成器的相位噪声分析
- 下一篇:51单片机的菜单设计
相关资源
- 易语言HTTPS文件(带进度)
- PB调用http api接口 PB解析json
- Qt学习总结.zip
- 基于qt+opencv的人脸识别
- GPRS模块GA6和STM32F103C8T6单片机上移植
- QT设计图标登录及三个游戏设计潜艇游
- 基于ZigBee的智能家居系统QT界面渲染
- Qt+opencv+摄像头+人脸检测
- HTTP方式文件断点续传
- Qt5 网络调试助手源代码 漂亮界面
- Qt 点菜系统
- 跨平台MQTT Client 源码和demo by 漠北
- 年会抽奖软件
- QT 智能家居源代码,可使用 实测通过
- Qt 之 简单截图功能三实现可拖拽选中
- 简单QT多线程聊天程序
- Qt提示框淡出、飞出、缩小等关闭窗口
- ImageRotation.zip
- QT打包工具合集
- httpclient教程
- linux环境下用QT实现打地鼠游戏源码共
- 基于QT的2048小游戏
- Qt登陆界面
- QT数字软键盘,包括QLineEdit弹出
- Qt Excel的读写
- 基于QT的电子相册设计
- Qt文件浏览器,Linux
- Qt写的UDP组播服务端
- QT文字闪烁浮动效果代码
- 基于qt编写的图片浏览器
评论
共有 条评论