##// 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_QLabel.h
72 lines | 2.5 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QLABEL_H
#define PYTHONQTWRAPPER_QLABEL_H
#include <qlabel.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 <qlabel.h>
#include <qlayout.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmovie.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpalette.h>
#include <qpicture.h>
#include <qpixmap.h>
#include <qpoint.h>
#include <qrect.h>
#include <qregion.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qstyle.h>
#include <qwidget.h>
class PythonQtWrapper_QLabel : public QObject
{ Q_OBJECT
public:
public slots:
QLabel* new_QLabel(QWidget* parent = 0, Qt::WindowFlags f = 0);
QLabel* new_QLabel(const QString& text, QWidget* parent = 0, Qt::WindowFlags f = 0);
void delete_QLabel(QLabel* obj) { delete obj; }
Qt::Alignment alignment(QLabel* theWrappedObject) const;
QWidget* buddy(QLabel* theWrappedObject) const;
bool hasScaledContents(QLabel* theWrappedObject) const;
int heightForWidth(QLabel* theWrappedObject, int arg__1) const;
int indent(QLabel* theWrappedObject) const;
int margin(QLabel* theWrappedObject) const;
QSize minimumSizeHint(QLabel* theWrappedObject) const;
QMovie* movie(QLabel* theWrappedObject) const;
bool openExternalLinks(QLabel* theWrappedObject) const;
const QPicture* picture(QLabel* theWrappedObject) const;
const QPixmap* pixmap(QLabel* theWrappedObject) const;
void setAlignment(QLabel* theWrappedObject, Qt::Alignment arg__1);
void setBuddy(QLabel* theWrappedObject, QWidget* arg__1);
void setIndent(QLabel* theWrappedObject, int arg__1);
void setMargin(QLabel* theWrappedObject, int arg__1);
void setOpenExternalLinks(QLabel* theWrappedObject, bool open);
void setScaledContents(QLabel* theWrappedObject, bool arg__1);
void setTextFormat(QLabel* theWrappedObject, Qt::TextFormat arg__1);
void setTextInteractionFlags(QLabel* theWrappedObject, Qt::TextInteractionFlags flags);
void setWordWrap(QLabel* theWrappedObject, bool on);
QSize sizeHint(QLabel* theWrappedObject) const;
QString text(QLabel* theWrappedObject) const;
Qt::TextFormat textFormat(QLabel* theWrappedObject) const;
Qt::TextInteractionFlags textInteractionFlags(QLabel* theWrappedObject) const;
bool wordWrap(QLabel* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QLABEL_H