##// END OF EJS Templates
added experimental compacting to avoid generation of hundreds of files that all include the same stuff...
added experimental compacting to avoid generation of hundreds of files that all include the same stuff git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@128 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r92:f97ec94c87a9
Show More
PythonQtWrapper_QAbstractSlider.h
134 lines | 5.9 KiB | text/x-c | CLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QAbstractSlider.h
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QABSTRACTSLIDER_H
#define PYTHONQTWRAPPER_QABSTRACTSLIDER_H
#include <qabstractslider.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 <qabstractslider.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 <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>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QAbstractSlider : public QAbstractSlider
{
public:
PythonQtShell_QAbstractSlider(QWidget* parent = 0):QAbstractSlider(parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* e);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
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* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
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 QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
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 QSize sizeHint() const;
virtual void sliderChange(QAbstractSlider::SliderChange change);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractSlider : public QAbstractSlider
{ public:
florianlink
upgraded wrappers to current generator version...
r28 inline bool promoted_event(QEvent* e) { return QAbstractSlider::event(e); }
inline void promoted_wheelEvent(QWheelEvent* e) { QAbstractSlider::wheelEvent(e); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_changeEvent(QEvent* e) { QAbstractSlider::changeEvent(e); }
inline void promoted_timerEvent(QTimerEvent* arg__1) { QAbstractSlider::timerEvent(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* ev) { QAbstractSlider::keyPressEvent(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_QAbstractSlider : public QObject
{ Q_OBJECT
public:
Q_ENUMS(SliderAction )
enum SliderAction{
SliderNoAction = QAbstractSlider::SliderNoAction, SliderSingleStepAdd = QAbstractSlider::SliderSingleStepAdd, SliderSingleStepSub = QAbstractSlider::SliderSingleStepSub, SliderPageStepAdd = QAbstractSlider::SliderPageStepAdd, SliderPageStepSub = QAbstractSlider::SliderPageStepSub, SliderToMinimum = QAbstractSlider::SliderToMinimum, SliderToMaximum = QAbstractSlider::SliderToMaximum, SliderMove = QAbstractSlider::SliderMove};
public slots:
QAbstractSlider* new_QAbstractSlider(QWidget* parent = 0);
void delete_QAbstractSlider(QAbstractSlider* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void setMinimum(QAbstractSlider* theWrappedObject, int arg__1);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setTracking(QAbstractSlider* theWrappedObject, bool enable);
florianlink
recreated wrappers to match current python qt version...
r73 int pageStep(QAbstractSlider* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setRange(QAbstractSlider* theWrappedObject, int min, int max);
florianlink
recreated wrappers to match current python qt version...
r73 void setSliderDown(QAbstractSlider* 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 setSingleStep(QAbstractSlider* theWrappedObject, int arg__1);
bool event(QAbstractSlider* theWrappedObject, QEvent* e);
florianlink
recreated wrappers to match current python qt version...
r73 int value(QAbstractSlider* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool invertedControls(QAbstractSlider* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void wheelEvent(QAbstractSlider* theWrappedObject, QWheelEvent* e);
bool hasTracking(QAbstractSlider* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 int maximum(QAbstractSlider* theWrappedObject) const;
Qt::Orientation orientation(QAbstractSlider* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool isSliderDown(QAbstractSlider* theWrappedObject) const;
void setMaximum(QAbstractSlider* theWrappedObject, int arg__1);
florianlink
upgraded wrappers to current generator version...
r28 void triggerAction(QAbstractSlider* theWrappedObject, QAbstractSlider::SliderAction action);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int minimum(QAbstractSlider* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool invertedAppearance(QAbstractSlider* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setSliderPosition(QAbstractSlider* theWrappedObject, int arg__1);
florianlink
recreated wrappers to match current python qt version...
r73 void changeEvent(QAbstractSlider* theWrappedObject, QEvent* e);
int sliderPosition(QAbstractSlider* theWrappedObject) const;
void timerEvent(QAbstractSlider* theWrappedObject, QTimerEvent* arg__1);
void setInvertedControls(QAbstractSlider* theWrappedObject, bool arg__1);
void setPageStep(QAbstractSlider* theWrappedObject, int arg__1);
void keyPressEvent(QAbstractSlider* theWrappedObject, QKeyEvent* ev);
florianlink
upgraded wrappers to current generator version...
r28 void setInvertedAppearance(QAbstractSlider* theWrappedObject, bool arg__1);
florianlink
recreated wrappers to match current python qt version...
r73 int singleStep(QAbstractSlider* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QABSTRACTSLIDER_H