##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QTemporaryFile.h
78 lines | 3.1 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QTEMPORARYFILE_H
#define PYTHONQTWRAPPER_QTEMPORARYFILE_H
#include <qtemporaryfile.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qfile.h>
#include <qlist.h>
#include <qobject.h>
#include <qtemporaryfile.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QTemporaryFile : public QTemporaryFile
{
public:
PythonQtShell_QTemporaryFile():QTemporaryFile(),_wrapper(NULL) {};
PythonQtShell_QTemporaryFile(QObject* parent):QTemporaryFile(parent),_wrapper(NULL) {};
PythonQtShell_QTemporaryFile(const QString& templateName):QTemporaryFile(templateName),_wrapper(NULL) {};
PythonQtShell_QTemporaryFile(const QString& templateName, QObject* parent):QTemporaryFile(templateName, parent),_wrapper(NULL) {};
virtual bool atEnd() const;
virtual qint64 bytesAvailable() const;
virtual qint64 bytesToWrite() const;
virtual bool canReadLine() const;
virtual void childEvent(QChildEvent* arg__1);
virtual void close();
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual QAbstractFileEngine* fileEngine() const;
virtual bool isSequential() const;
virtual bool open(QIODevice::OpenMode flags);
virtual qint64 pos() const;
virtual qint64 readData(char* data, qint64 maxlen);
virtual qint64 readLineData(char* data, qint64 maxlen);
virtual bool reset();
virtual bool seek(qint64 offset);
virtual qint64 size() const;
virtual void timerEvent(QTimerEvent* arg__1);
virtual bool waitForBytesWritten(int msecs);
virtual bool waitForReadyRead(int msecs);
virtual qint64 writeData(const char* data, qint64 len);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QTemporaryFile : public QTemporaryFile
{ public:
florianlink
upgraded wrappers to current generator version...
r28 inline QAbstractFileEngine* promoted_fileEngine() const { return QTemporaryFile::fileEngine(); }
inline bool promoted_open(QIODevice::OpenMode flags) { return QTemporaryFile::open(flags); }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 };
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QTemporaryFile : public QObject
{ Q_OBJECT
public:
public slots:
QTemporaryFile* new_QTemporaryFile();
QTemporaryFile* new_QTemporaryFile(QObject* parent);
QTemporaryFile* new_QTemporaryFile(const QString& templateName);
QTemporaryFile* new_QTemporaryFile(const QString& templateName, QObject* parent);
void delete_QTemporaryFile(QTemporaryFile* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 QString fileTemplate(QTemporaryFile* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QTemporaryFile* static_QTemporaryFile_createLocalFile(const QString& fileName);
QString fileName(QTemporaryFile* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool autoRemove(QTemporaryFile* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QTemporaryFile* static_QTemporaryFile_createLocalFile(QFile& file);
florianlink
recreated wrappers to match current python qt version...
r73 QAbstractFileEngine* fileEngine(QTemporaryFile* theWrappedObject) const;
void setFileTemplate(QTemporaryFile* theWrappedObject, const QString& name);
bool open(QTemporaryFile* theWrappedObject);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setAutoRemove(QTemporaryFile* theWrappedObject, bool b);
florianlink
recreated wrappers to match current python qt version...
r73 bool open(QTemporaryFile* theWrappedObject, QIODevice::OpenMode flags);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QTEMPORARYFILE_H