##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QGraphicsGridLayout.h
91 lines | 5.4 KiB | text/x-c | CLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QGraphicsGridLayout.h
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QGRAPHICSGRIDLAYOUT_H
#define PYTHONQTWRAPPER_QGRAPHICSGRIDLAYOUT_H
#include <qgraphicsgridlayout.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 <qcoreevent.h>
#include <qgraphicsgridlayout.h>
#include <qgraphicslayoutitem.h>
#include <qrect.h>
#include <qsize.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24
class PythonQtShell_QGraphicsGridLayout : public QGraphicsGridLayout
{
public:
PythonQtShell_QGraphicsGridLayout(QGraphicsLayoutItem* parent = 0):QGraphicsGridLayout(parent),_wrapper(NULL) {};
virtual int count() const;
virtual void getContentsMargins(qreal* left, qreal* top, qreal* right, qreal* bottom) const;
virtual void invalidate();
virtual QGraphicsLayoutItem* itemAt(int index) const;
virtual void removeAt(int index);
virtual void widgetEvent(QEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13
florianlink
upgraded wrappers to current generator version...
r28 class PythonQtPublicPromoter_QGraphicsGridLayout : public QGraphicsGridLayout
{ public:
inline QGraphicsLayoutItem* promoted_itemAt(int index) const { return QGraphicsGridLayout::itemAt(index); }
inline void promoted_invalidate() { QGraphicsGridLayout::invalidate(); }
inline int promoted_count() const { return QGraphicsGridLayout::count(); }
inline void promoted_removeAt(int index) { QGraphicsGridLayout::removeAt(index); }
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QGraphicsGridLayout : public QObject
{ Q_OBJECT
public:
public slots:
QGraphicsGridLayout* new_QGraphicsGridLayout(QGraphicsLayoutItem* parent = 0);
void delete_QGraphicsGridLayout(QGraphicsGridLayout* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 void setGeometry(QGraphicsGridLayout* theWrappedObject, const QRectF& rect);
QSizeF sizeHint(QGraphicsGridLayout* theWrappedObject, Qt::SizeHint which, const QSizeF& constraint = QSizeF()) const;
QGraphicsLayoutItem* itemAt(QGraphicsGridLayout* theWrappedObject, int index) const;
void setColumnSpacing(QGraphicsGridLayout* theWrappedObject, int column, qreal spacing);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 qreal rowMaximumHeight(QGraphicsGridLayout* theWrappedObject, int row) const;
florianlink
upgraded wrappers to current generator version...
r28 void setAlignment(QGraphicsGridLayout* theWrappedObject, QGraphicsLayoutItem* item, Qt::Alignment alignment);
qreal horizontalSpacing(QGraphicsGridLayout* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setColumnPreferredWidth(QGraphicsGridLayout* theWrappedObject, int column, qreal width);
qreal rowPreferredHeight(QGraphicsGridLayout* theWrappedObject, int row) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 Qt::Alignment rowAlignment(QGraphicsGridLayout* theWrappedObject, int row) const;
florianlink
upgraded wrappers to current generator version...
r28 int rowCount(QGraphicsGridLayout* theWrappedObject) const;
int rowStretchFactor(QGraphicsGridLayout* theWrappedObject, int row) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setColumnMinimumWidth(QGraphicsGridLayout* theWrappedObject, int column, qreal width);
florianlink
upgraded wrappers to current generator version...
r28 void setVerticalSpacing(QGraphicsGridLayout* theWrappedObject, qreal spacing);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 qreal rowMinimumHeight(QGraphicsGridLayout* theWrappedObject, int row) const;
void setRowMaximumHeight(QGraphicsGridLayout* theWrappedObject, int row, qreal height);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setSpacing(QGraphicsGridLayout* theWrappedObject, qreal spacing);
florianlink
upgraded wrappers to current generator version...
r28 Qt::Alignment columnAlignment(QGraphicsGridLayout* theWrappedObject, int column) const;
void setColumnMaximumWidth(QGraphicsGridLayout* theWrappedObject, int column, qreal width);
void setRowPreferredHeight(QGraphicsGridLayout* theWrappedObject, int row, qreal height);
void setRowMinimumHeight(QGraphicsGridLayout* theWrappedObject, int row, qreal height);
qreal columnMinimumWidth(QGraphicsGridLayout* theWrappedObject, int column) const;
void setRowStretchFactor(QGraphicsGridLayout* theWrappedObject, int row, int stretch);
void setRowFixedHeight(QGraphicsGridLayout* theWrappedObject, int row, qreal height);
void invalidate(QGraphicsGridLayout* theWrappedObject);
qreal columnMaximumWidth(QGraphicsGridLayout* theWrappedObject, int column) const;
int count(QGraphicsGridLayout* theWrappedObject) const;
int columnStretchFactor(QGraphicsGridLayout* theWrappedObject, int column) const;
void addItem(QGraphicsGridLayout* theWrappedObject, QGraphicsLayoutItem* item, int row, int column, Qt::Alignment alignment = 0);
Qt::Alignment alignment(QGraphicsGridLayout* theWrappedObject, QGraphicsLayoutItem* item) const;
int columnCount(QGraphicsGridLayout* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setRowAlignment(QGraphicsGridLayout* theWrappedObject, int row, Qt::Alignment alignment);
florianlink
upgraded wrappers to current generator version...
r28 qreal rowSpacing(QGraphicsGridLayout* theWrappedObject, int row) const;
qreal columnSpacing(QGraphicsGridLayout* theWrappedObject, int column) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setColumnStretchFactor(QGraphicsGridLayout* theWrappedObject, int column, int stretch);
florianlink
upgraded wrappers to current generator version...
r28 void setRowSpacing(QGraphicsGridLayout* theWrappedObject, int row, qreal spacing);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QGraphicsLayoutItem* itemAt(QGraphicsGridLayout* theWrappedObject, int row, int column) const;
florianlink
upgraded wrappers to current generator version...
r28 void addItem(QGraphicsGridLayout* theWrappedObject, QGraphicsLayoutItem* item, int row, int column, int rowSpan, int columnSpan, Qt::Alignment alignment = 0);
void setColumnFixedWidth(QGraphicsGridLayout* theWrappedObject, int column, qreal width);
void setHorizontalSpacing(QGraphicsGridLayout* theWrappedObject, qreal spacing);
void removeAt(QGraphicsGridLayout* theWrappedObject, int index);
void setColumnAlignment(QGraphicsGridLayout* theWrappedObject, int column, Qt::Alignment alignment);
qreal columnPreferredWidth(QGraphicsGridLayout* theWrappedObject, int column) const;
qreal verticalSpacing(QGraphicsGridLayout* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QGRAPHICSGRIDLAYOUT_H