You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
443 B
20 lines
443 B
13 years ago
|
#ifndef UBDRAGGABLEMEDIA_H
|
||
|
#define UBDRAGGABLEMEDIA_H
|
||
|
|
||
|
#include "UBMediaWidget.h"
|
||
|
|
||
|
class UBDraggableMedia : public UBMediaWidget
|
||
|
{
|
||
|
public:
|
||
|
UBDraggableMedia(eMediaType type = eMediaType_Video, QWidget* parent=0, const char* name="UBDraggableMedia");
|
||
|
~UBDraggableMedia();
|
||
|
protected:
|
||
|
void mousePressEvent(QMouseEvent* ev);
|
||
|
void mouseMoveEvent(QMouseEvent* ev);
|
||
|
|
||
|
private:
|
||
|
QPoint mDragStartPos;
|
||
|
};
|
||
|
|
||
|
#endif // UBDRAGGABLEMEDIA_H
|