source: trunk/doc/src/snippets/qlistview-dnd/model.cpp@ 348

Last change on this file since 348 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 4.7 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the documentation of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** 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 are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42/****************************************************************************
43**
44** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
45** Contact: Qt Software Information ([email protected])
46**
47** This file is part of an example program for Qt.
48** EDITIONS: NOLIMITS
49**
50****************************************************************************/
51
52/*
53 model.cpp
54
55 A simple model that uses a QStringList as its data source.
56*/
57
58#include <QtGui>
59
60#include "model.h"
61
62DragDropListModel::DragDropListModel(const QStringList &strings,
63 QObject *parent)
64 : QStringListModel(strings, parent)
65{
66}
67
68//! [0]
69bool DragDropListModel::dropMimeData(const QMimeData *data,
70 Qt::DropAction action, int row, int column, const QModelIndex &parent)
71{
72 if (action == Qt::IgnoreAction)
73 return true;
74
75 if (!data->hasFormat("application/vnd.text.list"))
76 return false;
77
78 if (column > 0)
79//! [0] //! [1]
80 return false;
81//! [1]
82
83//! [2]
84 int beginRow;
85
86 if (row != -1)
87 beginRow = row;
88//! [2] //! [3]
89 else if (parent.isValid())
90 beginRow = parent.row();
91//! [3] //! [4]
92 else
93 beginRow = rowCount(QModelIndex());
94//! [4]
95
96//! [5]
97 QByteArray encodedData = data->data("application/vnd.text.list");
98 QDataStream stream(&encodedData, QIODevice::ReadOnly);
99 QStringList newItems;
100 int rows = 0;
101
102 while (!stream.atEnd()) {
103 QString text;
104 stream >> text;
105 newItems << text;
106 ++rows;
107 }
108//! [5]
109
110//! [6]
111 insertRows(beginRow, rows, QModelIndex());
112 foreach (QString text, newItems) {
113 QModelIndex idx = index(beginRow, 0, QModelIndex());
114 setData(idx, text);
115 beginRow++;
116 }
117
118 return true;
119}
120//! [6]
121
122//! [7]
123Qt::ItemFlags DragDropListModel::flags(const QModelIndex &index) const
124{
125 Qt::ItemFlags defaultFlags = QStringListModel::flags(index);
126
127 if (index.isValid())
128 return Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled | defaultFlags;
129 else
130 return Qt::ItemIsDropEnabled | defaultFlags;
131}
132//! [7]
133
134//! [8]
135QMimeData *DragDropListModel::mimeData(const QModelIndexList &indexes) const
136{
137 QMimeData *mimeData = new QMimeData();
138 QByteArray encodedData;
139
140 QDataStream stream(&encodedData, QIODevice::WriteOnly);
141
142 foreach (QModelIndex index, indexes) {
143 if (index.isValid()) {
144 QString text = data(index, Qt::DisplayRole).toString();
145 stream << text;
146 }
147 }
148
149 mimeData->setData("application/vnd.text.list", encodedData);
150 return mimeData;
151}
152//! [8]
153
154//! [9]
155QStringList DragDropListModel::mimeTypes() const
156{
157 QStringList types;
158 types << "application/vnd.text.list";
159 return types;
160}
161//! [9]
162
163//! [10]
164Qt::DropActions DragDropListModel::supportedDropActions() const
165{
166 return Qt::CopyAction | Qt::MoveAction;
167}
168//! [10]
Note: See TracBrowser for help on using the repository browser.