~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to examples/draganddrop/draggableicons/dragwidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2005-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the example classes of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#include <QtGui>
 
30
 
 
31
#include "dragwidget.h"
 
32
 
 
33
DragWidget::DragWidget(QWidget *parent)
 
34
    : QFrame(parent)
 
35
{
 
36
    setMinimumSize(200, 200);
 
37
    setFrameStyle(QFrame::Sunken | QFrame::StyledPanel);
 
38
    setAcceptDrops(true);
 
39
 
 
40
    QLabel *boatIcon = new QLabel(this);
 
41
    boatIcon->setPixmap(QPixmap(":/images/boat.png"));
 
42
    boatIcon->move(20, 20);
 
43
    boatIcon->show();
 
44
    boatIcon->setAttribute(Qt::WA_DeleteOnClose);
 
45
 
 
46
    QLabel *carIcon = new QLabel(this);
 
47
    carIcon->setPixmap(QPixmap(":/images/car.png"));
 
48
    carIcon->move(120, 20);
 
49
    carIcon->show();
 
50
    carIcon->setAttribute(Qt::WA_DeleteOnClose);
 
51
 
 
52
    QLabel *houseIcon = new QLabel(this);
 
53
    houseIcon->setPixmap(QPixmap(":/images/house.png"));
 
54
    houseIcon->move(20, 120);
 
55
    houseIcon->show();
 
56
    houseIcon->setAttribute(Qt::WA_DeleteOnClose);
 
57
}
 
58
 
 
59
void DragWidget::dragEnterEvent(QDragEnterEvent *event)
 
60
{
 
61
    if (event->mimeData()->hasFormat("application/x-dnditemdata")) {
 
62
        if (event->source() == this) {
 
63
            event->setDropAction(Qt::MoveAction);
 
64
            event->accept();
 
65
        } else {
 
66
            event->acceptProposedAction();
 
67
        }
 
68
    } else {
 
69
        event->ignore();
 
70
    }
 
71
}
 
72
 
 
73
void DragWidget::dropEvent(QDropEvent *event)
 
74
{
 
75
    if (event->mimeData()->hasFormat("application/x-dnditemdata")) {
 
76
        QByteArray itemData = event->mimeData()->data("application/x-dnditemdata");
 
77
        QDataStream dataStream(&itemData, QIODevice::ReadOnly);
 
78
        
 
79
        QPixmap pixmap;
 
80
        QPoint offset;
 
81
        dataStream >> pixmap >> offset;
 
82
 
 
83
        QLabel *newIcon = new QLabel(this);
 
84
        newIcon->setPixmap(pixmap);
 
85
        newIcon->move(event->pos() - offset);
 
86
        newIcon->show();
 
87
        newIcon->setAttribute(Qt::WA_DeleteOnClose);
 
88
 
 
89
        if (event->source() == this) {
 
90
            event->setDropAction(Qt::MoveAction);
 
91
            event->accept();
 
92
        } else {
 
93
            event->acceptProposedAction();
 
94
        }
 
95
    } else {
 
96
        event->ignore();
 
97
    }
 
98
}
 
99
 
 
100
void DragWidget::mousePressEvent(QMouseEvent *event)
 
101
{
 
102
    QLabel *child = static_cast<QLabel*>(childAt(event->pos()));
 
103
    if (!child)
 
104
        return;
 
105
 
 
106
    QPixmap pixmap = *child->pixmap();
 
107
 
 
108
    QByteArray itemData;
 
109
    QDataStream dataStream(&itemData, QIODevice::WriteOnly);
 
110
    dataStream << pixmap << QPoint(event->pos() - child->pos());
 
111
 
 
112
    QMimeData *mimeData = new QMimeData;
 
113
    mimeData->setData("application/x-dnditemdata", itemData);
 
114
        
 
115
    QDrag *drag = new QDrag(this);
 
116
    drag->setMimeData(mimeData);
 
117
    drag->setPixmap(pixmap);
 
118
    drag->setHotSpot(event->pos() - child->pos());
 
119
 
 
120
    QPixmap tempPixmap = pixmap;
 
121
    QPainter painter;
 
122
    painter.begin(&tempPixmap);
 
123
    painter.fillRect(pixmap.rect(), QColor(127, 127, 127, 127));
 
124
    painter.end();
 
125
 
 
126
    child->setPixmap(tempPixmap);
 
127
 
 
128
    if (drag->start(Qt::CopyAction | Qt::MoveAction) == Qt::MoveAction)
 
129
        child->close();
 
130
    else {
 
131
        child->show();
 
132
        child->setPixmap(pixmap);
 
133
    }
 
134
}