##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
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