##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QCursor.h
40 lines | 1.3 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QCURSOR_H
#define PYTHONQTWRAPPER_QCURSOR_H
#include <qcursor.h>
#include <QObject>
#include <PythonQt.h>
#include <QPixmap>
#include <QVariant>
#include <qbitmap.h>
#include <qcursor.h>
#include <qdatastream.h>
#include <qpixmap.h>
#include <qpoint.h>
class PythonQtWrapper_QCursor : public QObject
{ Q_OBJECT
public:
public slots:
QCursor* new_QCursor();
QCursor* new_QCursor(Qt::CursorShape shape);
QCursor* new_QCursor(const QBitmap& bitmap, const QBitmap& mask, int hotX = -1, int hotY = -1);
QCursor* new_QCursor(const QCursor& cursor);
QCursor* new_QCursor(const QPixmap& pixmap, int hotX = -1, int hotY = -1);
void delete_QCursor(QCursor* obj) { delete obj; }
QPoint hotSpot(QCursor* theWrappedObject) const;
const QBitmap* mask(QCursor* theWrappedObject) const;
void readFrom(QCursor* theWrappedObject, QDataStream& inS);
void setShape(QCursor* theWrappedObject, Qt::CursorShape newShape);
void static_QCursor_setPos(int x, int y);
void static_QCursor_setPos(const QPoint& p);
Qt::CursorShape shape(QCursor* theWrappedObject) const;
QPixmap pixmap(QCursor* theWrappedObject) const;
const QBitmap* bitmap(QCursor* theWrappedObject) const;
void writeTo(QCursor* theWrappedObject, QDataStream& outS);
QPoint static_QCursor_pos();
};
#endif // PYTHONQTWRAPPER_QCURSOR_H