##// END OF EJS Templates
added methods to qt namespace...
added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r35:b8dce620ba5c
Show More
PythonQtWrapper_QLabel.h
149 lines | 6.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>
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 <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>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QLabel : public QLabel
{
public:
PythonQtShell_QLabel(QWidget* parent = 0, Qt::WindowFlags f = 0):QLabel(parent, f),_wrapper(NULL) {};
PythonQtShell_QLabel(const QString& text, QWidget* parent = 0, Qt::WindowFlags f = 0):QLabel(text, parent, f),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* ev);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* e);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* ev);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* ev);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* ev);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* ev);
virtual void mousePressEvent(QMouseEvent* ev);
virtual void mouseReleaseEvent(QMouseEvent* ev);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QLabel : public QLabel
{ public:
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_focusInEvent(QFocusEvent* ev) { QLabel::focusInEvent(ev); }
inline bool promoted_focusNextPrevChild(bool next) { return QLabel::focusNextPrevChild(next); }
inline void promoted_changeEvent(QEvent* arg__1) { QLabel::changeEvent(arg__1); }
inline void promoted_mouseReleaseEvent(QMouseEvent* ev) { QLabel::mouseReleaseEvent(ev); }
inline bool promoted_event(QEvent* e) { return QLabel::event(e); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QLabel::paintEvent(arg__1); }
inline void promoted_contextMenuEvent(QContextMenuEvent* ev) { QLabel::contextMenuEvent(ev); }
inline int promoted_heightForWidth(int arg__1) const { return QLabel::heightForWidth(arg__1); }
inline void promoted_mousePressEvent(QMouseEvent* ev) { QLabel::mousePressEvent(ev); }
inline void promoted_focusOutEvent(QFocusEvent* ev) { QLabel::focusOutEvent(ev); }
inline void promoted_keyPressEvent(QKeyEvent* ev) { QLabel::keyPressEvent(ev); }
inline void promoted_mouseMoveEvent(QMouseEvent* ev) { QLabel::mouseMoveEvent(ev); }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 };
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 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; }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void focusInEvent(QLabel* theWrappedObject, QFocusEvent* ev);
florianlink
upgraded wrappers to current generator version...
r28 bool focusNextPrevChild(QLabel* theWrappedObject, bool next);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 int indent(QLabel* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void changeEvent(QLabel* theWrappedObject, QEvent* arg__1);
void mouseReleaseEvent(QLabel* theWrappedObject, QMouseEvent* ev);
florianlink
upgraded wrappers to current generator version...
r28 int margin(QLabel* theWrappedObject) const;
bool event(QLabel* theWrappedObject, QEvent* e);
bool openExternalLinks(QLabel* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setScaledContents(QLabel* theWrappedObject, bool arg__1);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setAlignment(QLabel* theWrappedObject, Qt::Alignment arg__1);
QSize minimumSizeHint(QLabel* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setIndent(QLabel* theWrappedObject, int arg__1);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setTextInteractionFlags(QLabel* theWrappedObject, Qt::TextInteractionFlags flags);
QSize sizeHint(QLabel* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QString text(QLabel* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setMargin(QLabel* theWrappedObject, int arg__1);
florianlink
upgraded wrappers to current generator version...
r28 Qt::Alignment alignment(QLabel* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 const QPixmap* pixmap(QLabel* theWrappedObject) const;
void paintEvent(QLabel* theWrappedObject, QPaintEvent* arg__1);
florianlink
upgraded wrappers to current generator version...
r28 void contextMenuEvent(QLabel* theWrappedObject, QContextMenuEvent* ev);
bool wordWrap(QLabel* theWrappedObject) const;
Qt::TextFormat textFormat(QLabel* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setOpenExternalLinks(QLabel* theWrappedObject, bool open);
QMovie* movie(QLabel* theWrappedObject) const;
int heightForWidth(QLabel* theWrappedObject, int arg__1) const;
florianlink
upgraded wrappers to current generator version...
r28 void mousePressEvent(QLabel* theWrappedObject, QMouseEvent* ev);
const QPicture* picture(QLabel* theWrappedObject) const;
void focusOutEvent(QLabel* theWrappedObject, QFocusEvent* ev);
void keyPressEvent(QLabel* theWrappedObject, QKeyEvent* ev);
void setTextFormat(QLabel* theWrappedObject, Qt::TextFormat arg__1);
void mouseMoveEvent(QLabel* theWrappedObject, QMouseEvent* ev);
QWidget* buddy(QLabel* theWrappedObject) const;
Qt::TextInteractionFlags textInteractionFlags(QLabel* theWrappedObject) const;
void setWordWrap(QLabel* theWrappedObject, bool on);
void setBuddy(QLabel* theWrappedObject, QWidget* arg__1);
bool hasScaledContents(QLabel* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QLABEL_H