##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QFtp.h
77 lines | 3.7 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QFTP_H
#define PYTHONQTWRAPPER_QFTP_H
#include <qftp.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qftp.h>
#include <qiodevice.h>
#include <qlist.h>
#include <qobject.h>
#include <qurlinfo.h>
class PythonQtShell_QFtp : public QFtp
{
public:
PythonQtShell_QFtp(QObject* parent = 0):QFtp(parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QFtp : public QObject
{ Q_OBJECT
public:
Q_ENUMS(TransferType Error Command TransferMode State )
enum TransferType{
Binary = QFtp::Binary, Ascii = QFtp::Ascii};
enum Error{
NoError = QFtp::NoError, UnknownError = QFtp::UnknownError, HostNotFound = QFtp::HostNotFound, ConnectionRefused = QFtp::ConnectionRefused, NotConnected = QFtp::NotConnected};
enum Command{
None = QFtp::None, SetTransferMode = QFtp::SetTransferMode, SetProxy = QFtp::SetProxy, ConnectToHost = QFtp::ConnectToHost, Login = QFtp::Login, Close = QFtp::Close, List = QFtp::List, Cd = QFtp::Cd, Get = QFtp::Get, Put = QFtp::Put, Remove = QFtp::Remove, Mkdir = QFtp::Mkdir, Rmdir = QFtp::Rmdir, Rename = QFtp::Rename, RawCommand = QFtp::RawCommand};
enum TransferMode{
Active = QFtp::Active, Passive = QFtp::Passive};
enum State{
Unconnected = QFtp::Unconnected, HostLookup = QFtp::HostLookup, Connecting = QFtp::Connecting, Connected = QFtp::Connected, LoggedIn = QFtp::LoggedIn, Closing = QFtp::Closing};
public slots:
QFtp* new_QFtp(QObject* parent = 0);
void delete_QFtp(QFtp* obj) { delete obj; }
int remove(QFtp* theWrappedObject, const QString& file);
QFtp::Command currentCommand(QFtp* theWrappedObject) const;
QIODevice* currentDevice(QFtp* theWrappedObject) const;
int list(QFtp* theWrappedObject, const QString& dir = QString());
int put(QFtp* theWrappedObject, const QByteArray& data, const QString& file, QFtp::TransferType type = QFtp::Binary);
int cd(QFtp* theWrappedObject, const QString& dir);
int connectToHost(QFtp* theWrappedObject, const QString& host, unsigned short port = 21);
bool hasPendingCommands(QFtp* theWrappedObject) const;
qint64 read(QFtp* theWrappedObject, char* data, qint64 maxlen);
qint64 bytesAvailable(QFtp* theWrappedObject) const;
void clearPendingCommands(QFtp* theWrappedObject);
QFtp::State state(QFtp* theWrappedObject) const;
QByteArray readAll(QFtp* theWrappedObject);
int setProxy(QFtp* theWrappedObject, const QString& host, unsigned short port);
int get(QFtp* theWrappedObject, const QString& file, QIODevice* dev = 0, QFtp::TransferType type = QFtp::Binary);
int rawCommand(QFtp* theWrappedObject, const QString& command);
int currentId(QFtp* theWrappedObject) const;
QFtp::Error error(QFtp* theWrappedObject) const;
int rename(QFtp* theWrappedObject, const QString& oldname, const QString& newname);
int mkdir(QFtp* theWrappedObject, const QString& dir);
int put(QFtp* theWrappedObject, QIODevice* dev, const QString& file, QFtp::TransferType type = QFtp::Binary);
QString errorString(QFtp* theWrappedObject) const;
int rmdir(QFtp* theWrappedObject, const QString& dir);
int close(QFtp* theWrappedObject);
int setTransferMode(QFtp* theWrappedObject, QFtp::TransferMode mode);
int login(QFtp* theWrappedObject, const QString& user = QString(), const QString& password = QString());
};
#endif // PYTHONQTWRAPPER_QFTP_H