##// 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_QLayoutItem.h
38 lines | 1.5 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QLAYOUTITEM_H
#define PYTHONQTWRAPPER_QLAYOUTITEM_H
#include <qlayoutitem.h>
#include <QObject>
#include <QVariant>
#include <qlayout.h>
#include <qlayoutitem.h>
#include <qrect.h>
#include <qsize.h>
#include <qwidget.h>
class PythonQtWrapper_QLayoutItem : public QObject
{ Q_OBJECT
public:
public slots:
void delete_QLayoutItem(QLayoutItem* obj) { delete obj; }
Qt::Alignment alignment(QLayoutItem* theWrappedObject) const;
QSizePolicy::ControlTypes controlTypes(QLayoutItem* theWrappedObject) const;
Qt::Orientations expandingDirections(QLayoutItem* theWrappedObject) const;
QRect geometry(QLayoutItem* theWrappedObject) const;
bool hasHeightForWidth(QLayoutItem* theWrappedObject) const;
int heightForWidth(QLayoutItem* theWrappedObject, int arg__1) const;
void invalidate(QLayoutItem* theWrappedObject);
bool isEmpty(QLayoutItem* theWrappedObject) const;
QLayout* layout(QLayoutItem* theWrappedObject);
QSize maximumSize(QLayoutItem* theWrappedObject) const;
int minimumHeightForWidth(QLayoutItem* theWrappedObject, int arg__1) const;
QSize minimumSize(QLayoutItem* theWrappedObject) const;
void setAlignment(QLayoutItem* theWrappedObject, Qt::Alignment a);
void setGeometry(QLayoutItem* theWrappedObject, const QRect& arg__1);
QSize sizeHint(QLayoutItem* theWrappedObject) const;
QSpacerItem* spacerItem(QLayoutItem* theWrappedObject);
QWidget* widget(QLayoutItem* theWrappedObject);
};
#endif // PYTHONQTWRAPPER_QLAYOUTITEM_H