##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QDrag.h
39 lines | 1.3 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QDRAG_H
#define PYTHONQTWRAPPER_QDRAG_H
#include <qdrag.h>
#include <QObject>
#include <QPixmap>
#include <QPoint>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qdrag.h>
#include <qlist.h>
#include <qmimedata.h>
#include <qobject.h>
#include <qpixmap.h>
#include <qpoint.h>
#include <qwidget.h>
class PythonQtWrapper_QDrag : public QObject
{ Q_OBJECT
public:
public slots:
QDrag* new_QDrag(QWidget* dragSource);
void delete_QDrag(QDrag* obj) { delete obj; }
Qt::DropAction exec(QDrag* theWrappedObject, Qt::DropActions supportedActions = Qt::MoveAction);
Qt::DropAction exec(QDrag* theWrappedObject, Qt::DropActions supportedActions, Qt::DropAction defaultAction);
QPoint hotSpot(QDrag* theWrappedObject) const;
QMimeData* mimeData(QDrag* theWrappedObject) const;
QPixmap pixmap(QDrag* theWrappedObject) const;
void setDragCursor(QDrag* theWrappedObject, const QPixmap& cursor, Qt::DropAction action);
void setHotSpot(QDrag* theWrappedObject, const QPoint& hotspot);
void setMimeData(QDrag* theWrappedObject, QMimeData* data);
void setPixmap(QDrag* theWrappedObject, const QPixmap& arg__1);
QWidget* source(QDrag* theWrappedObject) const;
QWidget* target(QDrag* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QDRAG_H