##// END OF EJS Templates
added methods to qt namespace...
added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r35:b8dce620ba5c
Show More
PythonQtWrapper_QStackedLayout.h
85 lines | 3.5 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSTACKEDLAYOUT_H
#define PYTHONQTWRAPPER_QSTACKEDLAYOUT_H
#include <qstackedlayout.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 <qlayout.h>
#include <qlayoutitem.h>
#include <qlist.h>
#include <qobject.h>
#include <qrect.h>
#include <qsize.h>
#include <qstackedlayout.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_QStackedLayout : public QStackedLayout
{
public:
PythonQtShell_QStackedLayout():QStackedLayout(),_wrapper(NULL) {};
PythonQtShell_QStackedLayout(QLayout* parentLayout):QStackedLayout(parentLayout),_wrapper(NULL) {};
PythonQtShell_QStackedLayout(QWidget* parent):QStackedLayout(parent),_wrapper(NULL) {};
virtual void addItem(QLayoutItem* item);
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& rect);
virtual QLayoutItem* takeAt(int arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
upgraded wrappers to current generator version...
r28 class PythonQtPublicPromoter_QStackedLayout : public QStackedLayout
{ public:
inline void promoted_setGeometry(const QRect& rect) { QStackedLayout::setGeometry(rect); }
inline int promoted_count() const { return QStackedLayout::count(); }
inline QLayoutItem* promoted_itemAt(int arg__1) const { return QStackedLayout::itemAt(arg__1); }
inline void promoted_addItem(QLayoutItem* item) { QStackedLayout::addItem(item); }
inline QSize promoted_minimumSize() const { return QStackedLayout::minimumSize(); }
inline QLayoutItem* promoted_takeAt(int arg__1) { return QStackedLayout::takeAt(arg__1); }
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QStackedLayout : public QObject
{ Q_OBJECT
public:
public slots:
QStackedLayout* new_QStackedLayout();
QStackedLayout* new_QStackedLayout(QLayout* parentLayout);
QStackedLayout* new_QStackedLayout(QWidget* parent);
void delete_QStackedLayout(QStackedLayout* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 QWidget* currentWidget(QStackedLayout* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 int insertWidget(QStackedLayout* theWrappedObject, int index, QWidget* w);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setGeometry(QStackedLayout* theWrappedObject, const QRect& rect);
florianlink
upgraded wrappers to current generator version...
r28 int addWidget(QStackedLayout* theWrappedObject, QWidget* w);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int count(QStackedLayout* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QLayoutItem* itemAt(QStackedLayout* theWrappedObject, int arg__1) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void addItem(QStackedLayout* theWrappedObject, QLayoutItem* item);
florianlink
upgraded wrappers to current generator version...
r28 QSize minimumSize(QStackedLayout* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QSize sizeHint(QStackedLayout* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QWidget* widget(QStackedLayout* theWrappedObject);
int currentIndex(QStackedLayout* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setStackingMode(QStackedLayout* theWrappedObject, QStackedLayout::StackingMode stackingMode);
florianlink
upgraded wrappers to current generator version...
r28 QStackedLayout::StackingMode stackingMode(QStackedLayout* theWrappedObject) const;
QLayoutItem* takeAt(QStackedLayout* theWrappedObject, int arg__1);
QWidget* widget(QStackedLayout* theWrappedObject, int arg__1) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QSTACKEDLAYOUT_H