source: trunk/doc/src/snippets/droparea.cpp@ 728

Last change on this file since 728 was 651, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.2 sources.

File size: 4.3 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the documentation of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <QtGui>
43
44#include "droparea.h"
45
46DropArea::DropArea(QWidget *parent)
47 : QLabel(parent)
48{
49 setMinimumSize(200, 200);
50 setFrameStyle(QFrame::Sunken | QFrame::StyledPanel);
51 setAlignment(Qt::AlignCenter);
52 setAcceptDrops(true);
53 setAutoFillBackground(true);
54 clear();
55}
56
57void DropArea::dragEnterEvent(QDragEnterEvent *event)
58{
59 setText(tr("<drop content>"));
60 setBackgroundRole(QPalette::Highlight);
61
62 event->acceptProposedAction();
63 emit changed(event->mimeData());
64}
65
66void DropArea::dragMoveEvent(QDragMoveEvent *event)
67{
68 event->acceptProposedAction();
69}
70
71void DropArea::dropEvent(QDropEvent *event)
72{
73 const QMimeData *mimeData = event->mimeData();
74
75 if (mimeData->hasImage()) {
76 setPixmap(qvariant_cast<QPixmap>(mimeData->imageData()));
77 } else if (mimeData->hasHtml()) {
78 setText(mimeData->html());
79 setTextFormat(Qt::RichText);
80 } else if (mimeData->hasText()) {
81 setText(mimeData->text());
82 setTextFormat(Qt::PlainText);
83 } else {
84 setText(tr("Cannot display data"));
85 }
86
87 setBackgroundRole(QPalette::Dark);
88 event->acceptProposedAction();
89}
90
91//![0]
92void DropArea::paste()
93{
94 const QClipboard *clipboard = QApplication::clipboard();
95 const QMimeData *mimeData = clipboard->mimeData();
96
97 if (mimeData->hasImage()) {
98 setPixmap(qvariant_cast<QPixmap>(mimeData->imageData()));
99 } else if (mimeData->hasHtml()) {
100 setText(mimeData->html());
101 setTextFormat(Qt::RichText);
102 } else if (mimeData->hasText()) {
103 setText(mimeData->text());
104 setTextFormat(Qt::PlainText);
105 } else {
106 setText(tr("Cannot display data"));
107 }
108//![0]
109
110 emit changed(mimeData);
111 setBackgroundRole(QPalette::Dark);
112 //event->acceptProposedAction();
113}
114
115void DropArea::dragLeaveEvent(QDragLeaveEvent *event)
116{
117 clear();
118 event->accept();
119}
120
121void DropArea::clear()
122{
123 setText(tr("<drop content>"));
124 setBackgroundRole(QPalette::Dark);
125
126 emit changed();
127}
128
129QPixmap DropArea::extractPixmap(const QByteArray &data, const QString &format)
130{
131 QList<QByteArray> imageFormats = QImageReader::supportedImageFormats();
132 QPixmap pixmap;
133
134 foreach (QByteArray imageFormat, imageFormats) {
135 if (format.mid(6) == QString(imageFormat)) {
136 pixmap.loadFromData(data, imageFormat);
137 break;
138 }
139 }
140 return pixmap;
141}
Note: See TracBrowser for help on using the repository browser.