]> git.sesse.net Git - kdenlive/blob - src/projectlistview.cpp
small project tree cleanup (drag & drop)
[kdenlive] / src / projectlistview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "projectlistview.h"
22 #include "projectitem.h"
23 #include "subprojectitem.h"
24 #include "folderprojectitem.h"
25 #include "kdenlivesettings.h"
26
27 #include <KDebug>
28 #include <KMenu>
29 #include <KLocale>
30
31 #include <QApplication>
32 #include <QHeaderView>
33 #include <QAction>
34
35 ProjectListView::ProjectListView(QWidget *parent) :
36         QTreeWidget(parent),
37         m_dragStarted(false)
38 {
39     setSelectionMode(QAbstractItemView::ExtendedSelection);
40     setDragDropMode(QAbstractItemView::DragDrop);
41     setDropIndicatorShown(true);
42     setAlternatingRowColors(true);
43     setDragEnabled(true);
44     setAcceptDrops(true);
45     setFrameShape(QFrame::NoFrame);
46     setRootIsDecorated(false);
47
48     setColumnCount(3);
49     QStringList headers;
50     headers << i18n("Clip") << i18n("Description") << i18n("Rating");
51     setHeaderLabels(headers);
52
53     QHeaderView* headerView = header();
54     headerView->setContextMenuPolicy(Qt::CustomContextMenu);
55     connect(headerView, SIGNAL(customContextMenuRequested(const QPoint&)),
56             this, SLOT(configureColumns(const QPoint&)));
57     headerView->setClickable(true);
58     headerView->setSortIndicatorShown(true);
59     headerView->setMovable(false);
60     sortByColumn(0, Qt::AscendingOrder);
61     setSortingEnabled(true);
62
63     if (!KdenliveSettings::showdescriptioncolumn()) hideColumn(1);
64     if (!KdenliveSettings::showratingcolumn()) hideColumn(2);
65 }
66
67 ProjectListView::~ProjectListView()
68 {
69 }
70
71 void ProjectListView::configureColumns(const QPoint& pos)
72 {
73     KMenu popup(this);
74     popup.addTitle(i18nc("@title:menu", "Columns"));
75
76     QHeaderView* headerView = header();
77     for (int i = 1; i < headerView->count(); ++i) {
78         const QString text = model()->headerData(i, Qt::Horizontal).toString();
79         QAction* action = popup.addAction(text);
80         action->setCheckable(true);
81         action->setChecked(!headerView->isSectionHidden(i));
82         action->setData(i);
83     }
84
85     QAction* activatedAction = popup.exec(header()->mapToGlobal(pos));
86     if (activatedAction != 0) {
87         const bool show = activatedAction->isChecked();
88
89         // remember the changed column visibility in the settings
90         const int columnIndex = activatedAction->data().toInt();
91         switch (columnIndex) {
92         case 1:
93             KdenliveSettings::setShowdescriptioncolumn(show);
94             break;
95         case 2:
96             KdenliveSettings::setShowratingcolumn(show);
97             break;
98         default:
99             break;
100         }
101
102         // apply the changed column visibility
103         if (show) {
104             showColumn(columnIndex);
105         } else {
106             hideColumn(columnIndex);
107         }
108     }
109 }
110
111 // virtual
112 void ProjectListView::contextMenuEvent(QContextMenuEvent * event)
113 {
114     emit requestMenu(event->globalPos(), itemAt(event->pos()));
115 }
116
117 // virtual
118 void ProjectListView::keyPressEvent(QKeyEvent * event)
119 {
120     if (event->key() == Qt::Key_Return) {
121         QTreeWidgetItem *it = currentItem();
122         if (it) {
123             it->setExpanded(!it->isExpanded());
124             if (it->type() == PROJECTFOLDERTYPE) {
125                 static_cast <FolderProjectItem *>(it)->switchIcon();
126             }
127         }
128     } else QTreeWidget::keyPressEvent(event);
129 }
130
131 // virtual
132 void ProjectListView::mouseDoubleClickEvent(QMouseEvent * event)
133 {
134     QTreeWidgetItem *it = itemAt(event->pos());
135     if (!it) {
136         emit addClip();
137         return;
138     }
139     ProjectItem *item;
140     if (it->type() == PROJECTFOLDERTYPE) {
141         if ((columnAt(event->pos().x()) == 0)) {
142             QPixmap pix = qVariantValue<QPixmap>(it->data(0, Qt::DecorationRole));
143             int offset = pix.width() + indentation();
144             if (event->pos().x() < offset) {
145                 it->setExpanded(!it->isExpanded());
146                 static_cast <FolderProjectItem *>(it)->switchIcon();
147                 event->accept();
148             } else QTreeWidget::mouseDoubleClickEvent(event);
149         }
150         return;
151     }
152     if (it->type() == PROJECTSUBCLIPTYPE) {
153         // subitem
154         if ((columnAt(event->pos().x()) == 1)) {
155             QTreeWidget::mouseDoubleClickEvent(event);
156             return;
157         }
158         item = static_cast <ProjectItem *>(it->parent());
159     } else item = static_cast <ProjectItem *>(it);
160
161     if (!(item->flags() & Qt::ItemIsDragEnabled)) return;
162
163     int column = columnAt(event->pos().x());
164     if (column == 0 && (item->clipType() == SLIDESHOW || item->clipType() == TEXT || item->clipType() == COLOR || it->childCount() > 0)) {
165         QPixmap pix = qVariantValue<QPixmap>(it->data(0, Qt::DecorationRole));
166         int offset = pix.width() + indentation();
167         if (item->parent()) offset += indentation();
168         if (it->childCount() > 0) {
169             if (offset > event->pos().x()) {
170                 it->setExpanded(!it->isExpanded());
171                 event->accept();
172                 return;
173             }
174         } else if (pix.isNull() || offset < event->pos().x()) {
175             QTreeWidget::mouseDoubleClickEvent(event);
176             return;
177         }
178     }
179     if ((column == 1) && it->type() != PROJECTSUBCLIPTYPE) {
180         QTreeWidget::mouseDoubleClickEvent(event);
181         return;
182     }
183     emit showProperties(item->referencedClip());
184 }
185
186
187 // virtual
188 void ProjectListView::dropEvent(QDropEvent *event)
189 {
190     FolderProjectItem *item = NULL;
191     QTreeWidgetItem *it = itemAt(event->pos());
192     while (it && it->type() != PROJECTFOLDERTYPE) {
193         it = it->parent();
194     }
195     if (it) item = static_cast <FolderProjectItem *>(it);
196     if (event->mimeData()->hasUrls()) {
197         QString groupName;
198         QString groupId;
199         if (item) {
200             groupName = item->groupName();
201             groupId = item->clipId();
202         }
203         emit addClip(event->mimeData()->urls(), groupName, groupId);
204         event->setDropAction(Qt::CopyAction);
205         event->accept();
206         QTreeWidget::dropEvent(event);
207         return;
208     } else if (event->mimeData()->hasFormat("kdenlive/producerslist")) {
209         if (item) {
210             //emit addClip(event->mimeData->text());
211             const QList <QTreeWidgetItem *> list = selectedItems();
212             ProjectItem *clone;
213             QString parentId = item->clipId();
214             foreach(QTreeWidgetItem *it, list) {
215                 // TODO allow dragging of folders ?
216                 if (it->type() == PROJECTCLIPTYPE) {
217                     if (it->parent()) clone = (ProjectItem*) it->parent()->takeChild(it->parent()->indexOfChild(it));
218                     else clone = (ProjectItem*) takeTopLevelItem(indexOfTopLevelItem(it));
219                     if (clone) {
220                         item->addChild(clone);
221                         QMap <QString, QString> props;
222                         props.insert("groupname", item->groupName());
223                         props.insert("groupid", parentId);
224                         clone->setProperties(props);
225                     }
226                 } else item = NULL;
227             }
228         } else {
229             // item dropped in empty zone, move it to top level
230             const QList <QTreeWidgetItem *> list = selectedItems();
231             ProjectItem *clone;
232             foreach(QTreeWidgetItem *it, list) {
233                 QTreeWidgetItem *parent = it->parent();
234                 if (parent/* && ((ProjectItem *) it)->clipId() < 10000*/)  {
235                     kDebug() << "++ item parent: " << parent->text(1);
236                     clone = static_cast <ProjectItem*>(parent->takeChild(parent->indexOfChild(it)));
237                     if (clone) {
238                         addTopLevelItem(clone);
239                         clone->clearProperty("groupname");
240                         clone->clearProperty("groupid");
241                     }
242                 }
243             }
244         }
245         emit projectModified();
246     } else if (event->mimeData()->hasFormat("kdenlive/clip")) {
247         QStringList list = QString(event->mimeData()->data("kdenlive/clip")).split(';');
248         emit addClipCut(list.at(0), list.at(1).toInt(), list.at(2).toInt());
249     }
250     event->acceptProposedAction();
251     QTreeWidget::dropEvent(event);
252 }
253
254 // virtual
255 void ProjectListView::mousePressEvent(QMouseEvent *event)
256 {
257     if (event->button() == Qt::LeftButton) {
258         m_DragStartPosition = event->pos();
259         m_dragStarted = true;
260         /*QTreeWidgetItem *underMouse = itemAt(event->pos());
261         if (underMouse && underMouse->isSelected()) emit focusMonitor();*/
262     }
263     QTreeWidget::mousePressEvent(event);
264 }
265
266 // virtual
267 void ProjectListView::mouseReleaseEvent(QMouseEvent *event)
268 {
269     QTreeWidget::mouseReleaseEvent(event);
270     QTreeWidgetItem *underMouse = itemAt(event->pos());
271     if (underMouse) emit focusMonitor();
272 }
273
274 // virtual
275 void ProjectListView::mouseMoveEvent(QMouseEvent *event)
276 {
277     //kDebug() << "// DRAG STARTED, MOUSE MOVED: ";
278     if (!m_dragStarted) return;
279
280     if ((event->pos() - m_DragStartPosition).manhattanLength()
281             < QApplication::startDragDistance())
282         return;
283
284     QTreeWidgetItem *it = itemAt(m_DragStartPosition);
285     if (!it) return;
286     if (it->type() == PROJECTSUBCLIPTYPE) {
287         // subitem
288         SubProjectItem *clickItem = static_cast <SubProjectItem *>(it);
289         if (clickItem && (clickItem->flags() & Qt::ItemIsDragEnabled)) {
290             ProjectItem *clip = static_cast <ProjectItem *>(it->parent());
291             QDrag *drag = new QDrag(this);
292             QMimeData *mimeData = new QMimeData;
293
294             QStringList list;
295             list.append(clip->clipId());
296             QPoint p = clickItem->zone();
297             list.append(QString::number(p.x()));
298             list.append(QString::number(p.y()));
299             QByteArray data;
300             data.append(list.join(";").toUtf8());
301             mimeData->setData("kdenlive/clip", data);
302             drag->setMimeData(mimeData);
303             drag->setPixmap(clickItem->data(0, Qt::DecorationRole).value<QPixmap>());
304             drag->setHotSpot(QPoint(0, 50));
305             drag->exec();
306         }
307     } else {
308         if (it && (it->flags() & Qt::ItemIsDragEnabled)) {
309             QDrag *drag = new QDrag(this);
310             QMimeData *mimeData = new QMimeData;
311             const QList <QTreeWidgetItem *> list = selectedItems();
312             QStringList ids;
313             foreach(const QTreeWidgetItem *item, list) {
314                 if (item->type() == PROJECTFOLDERTYPE) {
315                     const int children = item->childCount();
316                     for (int i = 0; i < children; i++) {
317                         ids.append(static_cast <ProjectItem *>(item->child(i))->clipId());
318                     }
319                 } else {
320                     const ProjectItem *clip = static_cast <const ProjectItem *>(item);
321                     ids.append(clip->clipId());
322                 }
323             }
324             if (ids.isEmpty()) return;
325             QByteArray data;
326             data.append(ids.join(";").toUtf8()); //doc.toString().toUtf8());
327             mimeData->setData("kdenlive/producerslist", data);
328             //mimeData->setText(ids.join(";")); //doc.toString());
329             //mimeData->setImageData(image);
330             drag->setMimeData(mimeData);
331             drag->setPixmap(it->data(0, Qt::DecorationRole).value<QPixmap>());
332             drag->setHotSpot(QPoint(0, 50));
333             drag->exec();
334         }
335         //event->accept();
336     }
337 }
338
339 // virtual
340 void ProjectListView::dragLeaveEvent(QDragLeaveEvent *event)
341 {
342     // stop playing because we get a crash otherwise when fetching the thumbnails
343     emit pauseMonitor();
344     QTreeWidget::dragLeaveEvent(event);
345 }
346
347 QStringList ProjectListView::mimeTypes() const
348 {
349     QStringList qstrList;
350     qstrList << QTreeWidget::mimeTypes();
351     // list of accepted mime types for drop
352     qstrList.append("text/uri-list");
353     qstrList.append("text/plain");
354     qstrList.append("kdenlive/producerslist");
355     qstrList.append("kdenlive/clip");
356     return qstrList;
357 }
358
359
360 Qt::DropActions ProjectListView::supportedDropActions() const
361 {
362     // returns what actions are supported when dropping
363     return Qt::MoveAction | Qt::CopyAction;
364 }
365
366 #include "projectlistview.moc"