##// 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_QBoxLayout.h
102 lines | 4.8 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QBOXLAYOUT_H
#define PYTHONQTWRAPPER_QBOXLAYOUT_H
#include <qboxlayout.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 <qboxlayout.h>
#include <qbytearray.h>
#include <qcoreevent.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_QBoxLayout : public QBoxLayout
{
public:
PythonQtShell_QBoxLayout(QBoxLayout::Direction arg__1, QWidget* parent = 0):QBoxLayout(arg__1, 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 arg__1) const;
virtual QLayout* layout();
virtual QSize maximumSize() const;
virtual QSize minimumSize() const;
virtual void setGeometry(const QRect& arg__1);
virtual QLayoutItem* takeAt(int arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
upgraded wrappers to current generator version...
r28 class PythonQtPublicPromoter_QBoxLayout : public QBoxLayout
{ public:
inline QLayoutItem* promoted_takeAt(int arg__1) { return QBoxLayout::takeAt(arg__1); }
florianlink
recreated wrappers to match current python qt version...
r73 inline int promoted_count() const { return QBoxLayout::count(); }
inline void promoted_addItem(QLayoutItem* arg__1) { QBoxLayout::addItem(arg__1); }
inline QSize promoted_minimumSize() const { return QBoxLayout::minimumSize(); }
inline QLayoutItem* promoted_itemAt(int arg__1) const { return QBoxLayout::itemAt(arg__1); }
florianlink
upgraded wrappers to current generator version...
r28 inline Qt::Orientations promoted_expandingDirections() const { return QBoxLayout::expandingDirections(); }
inline void promoted_setGeometry(const QRect& arg__1) { QBoxLayout::setGeometry(arg__1); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_invalidate() { QBoxLayout::invalidate(); }
florianlink
upgraded wrappers to current generator version...
r28 inline QSize promoted_maximumSize() const { return QBoxLayout::maximumSize(); }
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QBoxLayout : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Direction )
enum Direction{
LeftToRight = QBoxLayout::LeftToRight, RightToLeft = QBoxLayout::RightToLeft, TopToBottom = QBoxLayout::TopToBottom, BottomToTop = QBoxLayout::BottomToTop, Down = QBoxLayout::Down, Up = QBoxLayout::Up};
public slots:
QBoxLayout* new_QBoxLayout(QBoxLayout::Direction arg__1, QWidget* parent = 0);
void delete_QBoxLayout(QBoxLayout* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void addStretch(QBoxLayout* theWrappedObject, int stretch = 0);
QLayoutItem* takeAt(QBoxLayout* theWrappedObject, int arg__1);
void addSpacerItem(QBoxLayout* theWrappedObject, QSpacerItem* spacerItem);
florianlink
upgraded wrappers to current generator version...
r28 void addStrut(QBoxLayout* theWrappedObject, int arg__1);
florianlink
recreated wrappers to match current python qt version...
r73 void insertSpacing(QBoxLayout* theWrappedObject, int index, int size);
void setDirection(QBoxLayout* theWrappedObject, QBoxLayout::Direction arg__1);
void insertStretch(QBoxLayout* theWrappedObject, int index, int stretch = 0);
int spacing(QBoxLayout* theWrappedObject) const;
int count(QBoxLayout* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int heightForWidth(QBoxLayout* theWrappedObject, int arg__1) const;
QBoxLayout::Direction direction(QBoxLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 int minimumHeightForWidth(QBoxLayout* theWrappedObject, int arg__1) const;
void addItem(QBoxLayout* theWrappedObject, QLayoutItem* arg__1);
QSize minimumSize(QBoxLayout* theWrappedObject) const;
bool setStretchFactor(QBoxLayout* theWrappedObject, QLayout* l, int stretch);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void insertSpacerItem(QBoxLayout* theWrappedObject, int index, QSpacerItem* spacerItem);
florianlink
upgraded wrappers to current generator version...
r28 QLayoutItem* itemAt(QBoxLayout* theWrappedObject, int arg__1) const;
bool setStretchFactor(QBoxLayout* theWrappedObject, QWidget* w, int stretch);
Qt::Orientations expandingDirections(QBoxLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QSize sizeHint(QBoxLayout* theWrappedObject) const;
void setSpacing(QBoxLayout* theWrappedObject, int spacing);
florianlink
upgraded wrappers to current generator version...
r28 void setGeometry(QBoxLayout* theWrappedObject, const QRect& arg__1);
florianlink
recreated wrappers to match current python qt version...
r73 void insertWidget(QBoxLayout* theWrappedObject, int index, QWidget* widget, int stretch = 0, Qt::Alignment alignment = 0);
void invalidate(QBoxLayout* theWrappedObject);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QSize maximumSize(QBoxLayout* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void addSpacing(QBoxLayout* theWrappedObject, int size);
bool hasHeightForWidth(QBoxLayout* theWrappedObject) const;
void insertLayout(QBoxLayout* theWrappedObject, int index, QLayout* layout, int stretch = 0);
void addWidget(QBoxLayout* theWrappedObject, QWidget* arg__1, int stretch = 0, Qt::Alignment alignment = 0);
florianlink
upgraded wrappers to current generator version...
r28 void addLayout(QBoxLayout* theWrappedObject, QLayout* layout, int stretch = 0);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QBOXLAYOUT_H