##// 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_QFrame.h
60 lines | 1.8 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QFRAME_H
#define PYTHONQTWRAPPER_QFRAME_H
#include <qframe.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 <qframe.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 <qstyle.h>
#include <qwidget.h>
class PythonQtWrapper_QFrame : public QObject
{ Q_OBJECT
public:
Q_ENUMS(StyleMask )
enum StyleMask{
Shadow_Mask = QFrame::Shadow_Mask, Shape_Mask = QFrame::Shape_Mask};
public slots:
QFrame* new_QFrame(QWidget* parent = 0, Qt::WindowFlags f = 0);
void delete_QFrame(QFrame* obj) { delete obj; }
QRect frameRect(QFrame* theWrappedObject) const;
QFrame::Shadow frameShadow(QFrame* theWrappedObject) const;
QFrame::Shape frameShape(QFrame* theWrappedObject) const;
int frameStyle(QFrame* theWrappedObject) const;
int frameWidth(QFrame* theWrappedObject) const;
int lineWidth(QFrame* theWrappedObject) const;
int midLineWidth(QFrame* theWrappedObject) const;
void setFrameRect(QFrame* theWrappedObject, const QRect& arg__1);
void setFrameShadow(QFrame* theWrappedObject, QFrame::Shadow arg__1);
void setFrameShape(QFrame* theWrappedObject, QFrame::Shape arg__1);
void setFrameStyle(QFrame* theWrappedObject, int arg__1);
void setLineWidth(QFrame* theWrappedObject, int arg__1);
void setMidLineWidth(QFrame* theWrappedObject, int arg__1);
QSize sizeHint(QFrame* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QFRAME_H