##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
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; }
void static_QCursor_setPos(const QPoint& p);
void readFrom(QCursor* theWrappedObject, QDataStream& inS);
QPoint hotSpot(QCursor* theWrappedObject) const;
void writeTo(QCursor* theWrappedObject, QDataStream& outS);
QPixmap pixmap(QCursor* theWrappedObject) const;
void setShape(QCursor* theWrappedObject, Qt::CursorShape newShape);
void static_QCursor_setPos(int x, int y);
Qt::CursorShape shape(QCursor* theWrappedObject) const;
const QBitmap* bitmap(QCursor* theWrappedObject) const;
QPoint static_QCursor_pos();
const QBitmap* mask(QCursor* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QCURSOR_H