##// END OF EJS Templates
renamed guards...
renamed guards git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@53 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r17:4a5dbf143fd4
Show More
PythonQtWrapper_QTimer.h
28 lines | 775 B | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QTIMER_H
#define PYTHONQTWRAPPER_QTIMER_H
#include <qtimer.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qtimer.h>
class PythonQtWrapper_QTimer : public QObject
{ Q_OBJECT
public:
public slots:
QTimer* new_QTimer(QObject* parent = 0);
void delete_QTimer(QTimer* obj) { delete obj; }
int interval(QTimer* theWrappedObject) const;
bool isActive(QTimer* theWrappedObject) const;
bool isSingleShot(QTimer* theWrappedObject) const;
void setInterval(QTimer* theWrappedObject, int msec);
void setSingleShot(QTimer* theWrappedObject, bool singleShot);
int timerId(QTimer* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QTIMER_H