- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
样式按钮之类设置
FTP Client-QT4 自带例子
2009-08-23 22:58
// main.cpp
=====================================================================
#include QApplication
#include ftpwindow.h
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(ftp);
QApplication app(argc, argv);
FtpWindow ftpWin;
ftpWin.show();
return ftpWin.exec();
}
//===ftpwindow.h===============================================
====
#ifndef FTPWINDOW_H
#define FTPWINDOW_H
#include QDialog
#include QHash
class QDialogButtonBox;
class QFile;
class QFtp;
class QLabel;
class QLineEdit;
class QTreeWidget;
class QTreeWidgetItem;
class QProgressDialog;
class QPushButton;
class QUrlInfo;
class FtpWindow : public QDialog
{
Q_OBJECT
public:
FtpWindow(QWidget *parent = 0);
QSize sizeHint() const;
private slots:
void connectOrDisconnect(); /*接受参数,连接登陆远程服务器*/
void downloadFile(); /*下载文件*/
void cancelDownload();
void ftpCommandFinished(int commandId, bool error); /*解决每个命令结
束 善后问题*/
void addToList (const QUrlInfo urlInfo); /*解决表项显示问题*/
void processItem (QTreeWidgetItem *item, int column); /*进入下一级目
录*/
void cdToParent();
void updateDataTransferProgress(qint64 readBytes, /*显示进度,作为
FTP 的一个SLOT*/
qint64 totalBytes);
void enableDownloadButton();
private:
QLabel *ftpServerLabel;
QLineEdit *ftpServerLineEdit;
QLabel *statusLabel;
QTreeWidget *fileList;
QPushButton *cdToParentButton;
QPushButton *connectButton;
QPushButton *downloadButton;
QPushButton *quitButton;
QDialogButtonBox *buttonBox;
QProgressDialog *progressDialog;
QHashQString, bool isDirectory;
QString currentPath;
QFtp *ftp;
QFile *file;
};
#endif
//
ftpwindow.cpp=================================================
========
#include QtGui
#include QtNetwork
#include ftpwindow.h
FtpWindow::FtpWindow(QWidget *parent)
: QDialog(parent), ftp(0)
{
ftpServerLabel = new QLabel(tr(Ftp server:));
ftpServerLineEdit = new QLineEdit();
ftpServerLabel-setBuddy(ftpServerLine
文档评论(0)