##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QStackedLayout.h
44 lines | 1.8 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>
#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>
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; }
void addItem(QStackedLayout* theWrappedObject, QLayoutItem* item);
int addWidget(QStackedLayout* theWrappedObject, QWidget* w);
int count(QStackedLayout* theWrappedObject) const;
int currentIndex(QStackedLayout* theWrappedObject) const;
QWidget* currentWidget(QStackedLayout* theWrappedObject) const;
int insertWidget(QStackedLayout* theWrappedObject, int index, QWidget* w);
QLayoutItem* itemAt(QStackedLayout* theWrappedObject, int arg__1) const;
QSize minimumSize(QStackedLayout* theWrappedObject) const;
void setGeometry(QStackedLayout* theWrappedObject, const QRect& rect);
void setStackingMode(QStackedLayout* theWrappedObject, QStackedLayout::StackingMode stackingMode);
QSize sizeHint(QStackedLayout* theWrappedObject) const;
QStackedLayout::StackingMode stackingMode(QStackedLayout* theWrappedObject) const;
QLayoutItem* takeAt(QStackedLayout* theWrappedObject, int arg__1);
QWidget* widget(QStackedLayout* theWrappedObject);
QWidget* widget(QStackedLayout* theWrappedObject, int arg__1) const;
};
#endif // PYTHONQTWRAPPER_QSTACKEDLAYOUT_H