##// 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_QSourceLocation.h
32 lines | 1.2 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSOURCELOCATION_H
#define PYTHONQTWRAPPER_QSOURCELOCATION_H
#include <qsourcelocation.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 <qsourcelocation.h>
#include <qurl.h>
class PythonQtWrapper_QSourceLocation : public QObject
{ Q_OBJECT
public:
public slots:
QSourceLocation* new_QSourceLocation();
QSourceLocation* new_QSourceLocation(const QSourceLocation& other);
QSourceLocation* new_QSourceLocation(const QUrl& uri, int line = -1, int column = -1);
void delete_QSourceLocation(QSourceLocation* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 bool operator_equal(QSourceLocation* theWrappedObject, const QSourceLocation& other) const;
florianlink
recreated wrappers to match current python qt version...
r73 qint64 line(QSourceLocation* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QUrl uri(QSourceLocation* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setColumn(QSourceLocation* theWrappedObject, qint64 newColumn);
qint64 column(QSourceLocation* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isNull(QSourceLocation* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setLine(QSourceLocation* theWrappedObject, qint64 newLine);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setUri(QSourceLocation* theWrappedObject, const QUrl& newUri);
florianlink
recreated wrappers to match current python qt version...
r73 QString toString(QSourceLocation*);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QSOURCELOCATION_H