##// 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_QGridLayout.h
111 lines | 5.6 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QGRIDLAYOUT_H
#define PYTHONQTWRAPPER_QGRIDLAYOUT_H
#include <qgridlayout.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 <qgridlayout.h>
#include <qlayout.h>
#include <qlayoutitem.h>
#include <qlist.h>
#include <qobject.h>
#include <qrect.h>
#include <qsize.h>
#include <qwidget.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QGridLayout : public QGridLayout
{
public:
PythonQtShell_QGridLayout():QGridLayout(),_wrapper(NULL) {};
PythonQtShell_QGridLayout(QWidget* parent):QGridLayout(parent),_wrapper(NULL) {};
virtual void addItem(QLayoutItem* arg__1);
virtual void childEvent(QChildEvent* e);
virtual int count() const;
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual Qt::Orientations expandingDirections() const;
virtual QRect geometry() const;
virtual int indexOf(QWidget* arg__1) const;
virtual void invalidate();
virtual bool isEmpty() const;
virtual QLayoutItem* itemAt(int index) const;
virtual QLayout* layout();
virtual QSize maximumSize() const;
virtual QSize minimumSize() const;
virtual void setGeometry(const QRect& arg__1);
virtual QLayoutItem* takeAt(int index);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QGridLayout : public QGridLayout
{ public:
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_setGeometry(const QRect& arg__1) { QGridLayout::setGeometry(arg__1); }
inline QSize promoted_minimumSize() const { return QGridLayout::minimumSize(); }
florianlink
recreated wrappers to match current python qt version...
r73 inline QLayoutItem* promoted_itemAt(int index) const { return QGridLayout::itemAt(index); }
florianlink
upgraded wrappers to current generator version...
r28 inline QLayoutItem* promoted_takeAt(int index) { return QGridLayout::takeAt(index); }
inline void promoted_invalidate() { QGridLayout::invalidate(); }
inline Qt::Orientations promoted_expandingDirections() const { return QGridLayout::expandingDirections(); }
inline int promoted_count() const { return QGridLayout::count(); }
florianlink
recreated wrappers to match current python qt version...
r73 inline QSize promoted_maximumSize() const { return QGridLayout::maximumSize(); }
inline void promoted_addItem(QLayoutItem* arg__1) { QGridLayout::addItem(arg__1); }
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_QGridLayout : public QObject
{ Q_OBJECT
public:
public slots:
QGridLayout* new_QGridLayout();
QGridLayout* new_QGridLayout(QWidget* parent);
void delete_QGridLayout(QGridLayout* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 void setGeometry(QGridLayout* theWrappedObject, const QRect& arg__1);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 int rowCount(QGridLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 int heightForWidth(QGridLayout* theWrappedObject, int arg__1) const;
florianlink
upgraded wrappers to current generator version...
r28 QSize minimumSize(QGridLayout* theWrappedObject) const;
int spacing(QGridLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QLayoutItem* itemAt(QGridLayout* theWrappedObject, int index) const;
florianlink
upgraded wrappers to current generator version...
r28 void setColumnStretch(QGridLayout* theWrappedObject, int column, int stretch);
florianlink
recreated wrappers to match current python qt version...
r73 int rowMinimumHeight(QGridLayout* theWrappedObject, int row) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void addWidget(QGridLayout* theWrappedObject, QWidget* arg__1, int row, int column, Qt::Alignment arg__4 = 0);
florianlink
recreated wrappers to match current python qt version...
r73 QLayoutItem* takeAt(QGridLayout* theWrappedObject, int index);
void setColumnMinimumWidth(QGridLayout* theWrappedObject, int column, int minSize);
florianlink
upgraded wrappers to current generator version...
r28 QSize sizeHint(QGridLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setRowMinimumHeight(QGridLayout* theWrappedObject, int row, int minSize);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void invalidate(QGridLayout* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 void setOriginCorner(QGridLayout* theWrappedObject, Qt::Corner arg__1);
florianlink
upgraded wrappers to current generator version...
r28 int horizontalSpacing(QGridLayout* theWrappedObject) const;
int columnStretch(QGridLayout* theWrappedObject, int column) const;
florianlink
recreated wrappers to match current python qt version...
r73 Qt::Corner originCorner(QGridLayout* theWrappedObject) const;
int verticalSpacing(QGridLayout* theWrappedObject) const;
void setRowStretch(QGridLayout* theWrappedObject, int row, int stretch);
int minimumHeightForWidth(QGridLayout* theWrappedObject, int arg__1) const;
void setHorizontalSpacing(QGridLayout* theWrappedObject, int spacing);
void setVerticalSpacing(QGridLayout* theWrappedObject, int spacing);
florianlink
upgraded wrappers to current generator version...
r28 QRect cellRect(QGridLayout* theWrappedObject, int row, int column) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setSpacing(QGridLayout* theWrappedObject, int spacing);
void addLayout(QGridLayout* theWrappedObject, QLayout* arg__1, int row, int column, int rowSpan, int columnSpan, Qt::Alignment arg__6 = 0);
florianlink
upgraded wrappers to current generator version...
r28 int rowStretch(QGridLayout* theWrappedObject, int row) const;
florianlink
recreated wrappers to match current python qt version...
r73 void addWidget(QGridLayout* theWrappedObject, QWidget* arg__1, int row, int column, int rowSpan, int columnSpan, Qt::Alignment arg__6 = 0);
bool hasHeightForWidth(QGridLayout* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 Qt::Orientations expandingDirections(QGridLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setDefaultPositioning(QGridLayout* theWrappedObject, int n, Qt::Orientation orient);
int columnMinimumWidth(QGridLayout* theWrappedObject, int column) const;
void addLayout(QGridLayout* theWrappedObject, QLayout* arg__1, int row, int column, Qt::Alignment arg__4 = 0);
int columnCount(QGridLayout* theWrappedObject) const;
void addItem(QGridLayout* theWrappedObject, QLayoutItem* item, int row, int column, int rowSpan = 1, int columnSpan = 1, Qt::Alignment arg__6 = 0);
florianlink
upgraded wrappers to current generator version...
r28 int count(QGridLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QSize maximumSize(QGridLayout* theWrappedObject) const;
void addItem(QGridLayout* theWrappedObject, QLayoutItem* arg__1);
florianlink
upgraded wrappers to current generator version...
r28 QLayoutItem* itemAtPosition(QGridLayout* theWrappedObject, int row, int column) const;
florianlink
recreated wrappers to match current python qt version...
r73 void getItemPosition(QGridLayout* theWrappedObject, int idx, int* row, int* column, int* rowSpan, int* columnSpan);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QGRIDLAYOUT_H