blob: 8c87b23b1ac11c56378de9f50ede702c9ddbd183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#include <qdragobject.h>
#include <qapplication.h>
#include "listview.h"
#include "dnd.h"
ListView::ListView( QWidget* parent, const char* name )
: QListView( parent, name )
{
setAcceptDrops( TRUE );
setSorting( -1, FALSE );
dragging = FALSE;
}
ListView::~ListView()
{
}
void ListView::dragEnterEvent( QDragEnterEvent *e )
{
if ( e->provides( "text/dragdemotag" ) )
e->accept();
}
void ListView::dropEvent( QDropEvent *e )
{
if ( !e->provides( "text/dragdemotag" ) )
return;
QString tag;
if ( QTextDrag::decode( e, tag ) ) {
IconItem item = ((DnDDemo*) parentWidget())->findItem( tag );
QListViewItem *after = itemAt( viewport()->mapFromParent( e->pos() ) );
ListViewItem *litem = new ListViewItem( this, after, item.name(), tag );
litem->setPixmap( 0, *item.pixmap() );
}
}
void ListView::contentsMousePressEvent( QMouseEvent *e )
{
QListView::contentsMousePressEvent( e );
dragging = TRUE;
pressPos = e->pos();
}
void ListView::contentsMouseMoveEvent( QMouseEvent *e )
{
QListView::contentsMouseMoveEvent( e );
if ( ! dragging ) return;
if ( !currentItem() ) return;
if ( ( pressPos - e->pos() ).manhattanLength() > QApplication::startDragDistance() ) {
QTextDrag *drg = new QTextDrag( ((ListViewItem*)currentItem())->tag(), this );
const QPixmap *p = ((ListViewItem*)currentItem())->pixmap( 0 );
if (p)
drg->setPixmap(*p);
drg->setSubtype( "dragdemotag" );
drg->dragCopy();
dragging = FALSE;
}
}
void ListView::contentsMouseReleaseEvent( QMouseEvent *e )
{
QListView::contentsMouseReleaseEvent( e );
dragging = FALSE;
}
|