##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QDrag.h
39 lines | 1.3 KiB | text/x-c | CLexer
#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