##// 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_QSplitter.h
72 lines | 2.8 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QSPLITTER_H
#define PYTHONQTWRAPPER_QSPLITTER_H
#include <qsplitter.h>
#include <QObject>
#include <QVariant>
#include <qaction.h>
#include <qbitmap.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qevent.h>
#include <qfont.h>
#include <qicon.h>
#include <qinputcontext.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlist.h>
#include <qlocale.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qrect.h>
#include <qregion.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qsplitter.h>
#include <qstyle.h>
#include <qtextstream.h>
#include <qwidget.h>
class PythonQtWrapper_QSplitter : public QObject
{ Q_OBJECT
public:
public slots:
QSplitter* new_QSplitter(QWidget* parent = 0);
QSplitter* new_QSplitter(Qt::Orientation arg__1, QWidget* parent = 0);
void delete_QSplitter(QSplitter* obj) { delete obj; }
void addWidget(QSplitter* theWrappedObject, QWidget* widget);
bool childrenCollapsible(QSplitter* theWrappedObject) const;
int count(QSplitter* theWrappedObject) const;
void getRange(QSplitter* theWrappedObject, int index, int* arg__2, int* arg__3) const;
QSplitterHandle* handle(QSplitter* theWrappedObject, int index) const;
int handleWidth(QSplitter* theWrappedObject) const;
int indexOf(QSplitter* theWrappedObject, QWidget* w) const;
void insertWidget(QSplitter* theWrappedObject, int index, QWidget* widget);
bool isCollapsible(QSplitter* theWrappedObject, int index) const;
QSize minimumSizeHint(QSplitter* theWrappedObject) const;
bool opaqueResize(QSplitter* theWrappedObject) const;
void writeTo(QSplitter* theWrappedObject, QTextStream& arg__1);
void readFrom(QSplitter* theWrappedObject, QTextStream& arg__1);
Qt::Orientation orientation(QSplitter* theWrappedObject) const;
void refresh(QSplitter* theWrappedObject);
bool restoreState(QSplitter* theWrappedObject, const QByteArray& state);
QByteArray saveState(QSplitter* theWrappedObject) const;
void setChildrenCollapsible(QSplitter* theWrappedObject, bool arg__1);
void setCollapsible(QSplitter* theWrappedObject, int index, bool arg__2);
void setHandleWidth(QSplitter* theWrappedObject, int arg__1);
void setOpaqueResize(QSplitter* theWrappedObject, bool opaque = true);
void setOrientation(QSplitter* theWrappedObject, Qt::Orientation arg__1);
void setSizes(QSplitter* theWrappedObject, const QList<int >& list);
void setStretchFactor(QSplitter* theWrappedObject, int index, int stretch);
QSize sizeHint(QSplitter* theWrappedObject) const;
QList<int > sizes(QSplitter* theWrappedObject) const;
QWidget* widget(QSplitter* theWrappedObject, int index) const;
};
#endif // PYTHONQTWRAPPER_QSPLITTER_H