##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QAbstractSpinBox.h
174 lines | 9.0 KiB | text/x-c | CLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QAbstractSpinBox.h
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QABSTRACTSPINBOX_H
#define PYTHONQTWRAPPER_QABSTRACTSPINBOX_H
#include <qabstractspinbox.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 <qabstractspinbox.h>
#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 <qlineedit.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 <qstyleoption.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_QAbstractSpinBox : public QAbstractSpinBox
{
public:
PythonQtShell_QAbstractSpinBox(QWidget* parent = 0):QAbstractSpinBox(parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
virtual void childEvent(QChildEvent* arg__1);
virtual void clear();
virtual void closeEvent(QCloseEvent* event);
virtual void contextMenuEvent(QContextMenuEvent* event);
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* event);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void fixup(QString& input) const;
virtual void focusInEvent(QFocusEvent* event);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* event);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* event);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* event);
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* event);
virtual void mousePressEvent(QMouseEvent* event);
virtual void mouseReleaseEvent(QMouseEvent* event);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* event);
virtual void resizeEvent(QResizeEvent* event);
virtual void showEvent(QShowEvent* event);
virtual void stepBy(int steps);
virtual QAbstractSpinBox::StepEnabled stepEnabled() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* event);
virtual QValidator::State validate(QString& input, int& pos) const;
virtual void wheelEvent(QWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractSpinBox : public QAbstractSpinBox
{ public:
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_mouseMoveEvent(QMouseEvent* event) { QAbstractSpinBox::mouseMoveEvent(event); }
inline void promoted_showEvent(QShowEvent* event) { QAbstractSpinBox::showEvent(event); }
inline void promoted_mousePressEvent(QMouseEvent* event) { QAbstractSpinBox::mousePressEvent(event); }
inline void promoted_stepBy(int steps) { QAbstractSpinBox::stepBy(steps); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_paintEvent(QPaintEvent* event) { QAbstractSpinBox::paintEvent(event); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_wheelEvent(QWheelEvent* event) { QAbstractSpinBox::wheelEvent(event); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_resizeEvent(QResizeEvent* event) { QAbstractSpinBox::resizeEvent(event); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_closeEvent(QCloseEvent* event) { QAbstractSpinBox::closeEvent(event); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_focusOutEvent(QFocusEvent* event) { QAbstractSpinBox::focusOutEvent(event); }
florianlink
recreated wrappers to match current python qt version...
r73 inline QAbstractSpinBox::StepEnabled promoted_stepEnabled() const { return QAbstractSpinBox::stepEnabled(); }
inline void promoted_changeEvent(QEvent* event) { QAbstractSpinBox::changeEvent(event); }
inline void promoted_clear() { QAbstractSpinBox::clear(); }
inline QValidator::State promoted_validate(QString& input, int& pos) const { return QAbstractSpinBox::validate(input, pos); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QAbstractSpinBox::keyPressEvent(event); }
inline void promoted_hideEvent(QHideEvent* event) { QAbstractSpinBox::hideEvent(event); }
inline void promoted_keyReleaseEvent(QKeyEvent* event) { QAbstractSpinBox::keyReleaseEvent(event); }
inline void promoted_timerEvent(QTimerEvent* event) { QAbstractSpinBox::timerEvent(event); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_focusInEvent(QFocusEvent* event) { QAbstractSpinBox::focusInEvent(event); }
inline void promoted_fixup(QString& input) const { QAbstractSpinBox::fixup(input); }
inline void promoted_mouseReleaseEvent(QMouseEvent* event) { QAbstractSpinBox::mouseReleaseEvent(event); }
inline void promoted_contextMenuEvent(QContextMenuEvent* event) { QAbstractSpinBox::contextMenuEvent(event); }
inline bool promoted_event(QEvent* event) { return QAbstractSpinBox::event(event); }
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_QAbstractSpinBox : public QObject
{ Q_OBJECT
public:
Q_ENUMS(StepEnabledFlag )
florianlink
recreated wrappers to match current python qt version...
r73 Q_FLAGS(StepEnabled )
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 enum StepEnabledFlag{
StepNone = QAbstractSpinBox::StepNone, StepUpEnabled = QAbstractSpinBox::StepUpEnabled, StepDownEnabled = QAbstractSpinBox::StepDownEnabled};
florianlink
recreated wrappers to match current python qt version...
r73 Q_DECLARE_FLAGS(StepEnabled, StepEnabledFlag)
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 public slots:
QAbstractSpinBox* new_QAbstractSpinBox(QWidget* parent = 0);
void delete_QAbstractSpinBox(QAbstractSpinBox* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void setWrapping(QAbstractSpinBox* theWrappedObject, bool w);
void mouseMoveEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
QSize sizeHint(QAbstractSpinBox* theWrappedObject) const;
void showEvent(QAbstractSpinBox* theWrappedObject, QShowEvent* event);
void mousePressEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
QSize minimumSizeHint(QAbstractSpinBox* theWrappedObject) const;
bool isAccelerated(QAbstractSpinBox* theWrappedObject) const;
void stepBy(QAbstractSpinBox* theWrappedObject, int steps);
void paintEvent(QAbstractSpinBox* theWrappedObject, QPaintEvent* event);
void wheelEvent(QAbstractSpinBox* theWrappedObject, QWheelEvent* event);
void setAlignment(QAbstractSpinBox* theWrappedObject, Qt::Alignment flag);
void resizeEvent(QAbstractSpinBox* theWrappedObject, QResizeEvent* event);
void closeEvent(QAbstractSpinBox* theWrappedObject, QCloseEvent* event);
void setCorrectionMode(QAbstractSpinBox* theWrappedObject, QAbstractSpinBox::CorrectionMode cm);
void setKeyboardTracking(QAbstractSpinBox* theWrappedObject, bool kt);
void setReadOnly(QAbstractSpinBox* theWrappedObject, bool r);
bool hasAcceptableInput(QAbstractSpinBox* theWrappedObject) const;
void focusOutEvent(QAbstractSpinBox* theWrappedObject, QFocusEvent* event);
bool isReadOnly(QAbstractSpinBox* theWrappedObject) const;
QAbstractSpinBox::StepEnabled stepEnabled(QAbstractSpinBox* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setFrame(QAbstractSpinBox* theWrappedObject, bool arg__1);
florianlink
recreated wrappers to match current python qt version...
r73 QAbstractSpinBox::CorrectionMode correctionMode(QAbstractSpinBox* theWrappedObject) const;
void changeEvent(QAbstractSpinBox* theWrappedObject, QEvent* event);
void setButtonSymbols(QAbstractSpinBox* theWrappedObject, QAbstractSpinBox::ButtonSymbols bs);
bool wrapping(QAbstractSpinBox* theWrappedObject) const;
bool keyboardTracking(QAbstractSpinBox* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void interpretText(QAbstractSpinBox* theWrappedObject);
QValidator::State validate(QAbstractSpinBox* theWrappedObject, QString& input, int& pos) const;
florianlink
recreated wrappers to match current python qt version...
r73 void keyPressEvent(QAbstractSpinBox* theWrappedObject, QKeyEvent* event);
florianlink
upgraded wrappers to current generator version...
r28 Qt::Alignment alignment(QAbstractSpinBox* theWrappedObject) const;
void hideEvent(QAbstractSpinBox* theWrappedObject, QHideEvent* event);
florianlink
recreated wrappers to match current python qt version...
r73 QString text(QAbstractSpinBox* theWrappedObject) const;
QAbstractSpinBox::ButtonSymbols buttonSymbols(QAbstractSpinBox* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setSpecialValueText(QAbstractSpinBox* theWrappedObject, const QString& txt);
florianlink
recreated wrappers to match current python qt version...
r73 void keyReleaseEvent(QAbstractSpinBox* theWrappedObject, QKeyEvent* event);
florianlink
upgraded wrappers to current generator version...
r28 void timerEvent(QAbstractSpinBox* theWrappedObject, QTimerEvent* event);
void focusInEvent(QAbstractSpinBox* theWrappedObject, QFocusEvent* event);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QString specialValueText(QAbstractSpinBox* theWrappedObject) const;
void fixup(QAbstractSpinBox* theWrappedObject, QString& input) const;
void setAccelerated(QAbstractSpinBox* theWrappedObject, bool on);
florianlink
recreated wrappers to match current python qt version...
r73 bool hasFrame(QAbstractSpinBox* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void mouseReleaseEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
void contextMenuEvent(QAbstractSpinBox* theWrappedObject, QContextMenuEvent* event);
florianlink
upgraded wrappers to current generator version...
r28 bool event(QAbstractSpinBox* theWrappedObject, QEvent* event);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QABSTRACTSPINBOX_H