]> git.sesse.net Git - kdenlive/blob - src/projectlistview.cpp
Reformat initializer lists in all constructors.
[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 "kdenlivesettings.h"
24
25 #include <KDebug>
26 #include <KMenu>
27 #include <KLocale>
28
29 #include <QApplication>
30 #include <QHeaderView>
31 #include <QAction>
32
33 ProjectListView::ProjectListView(QWidget *parent) :
34         QTreeWidget(parent),
35         m_dragStarted(false)
36 {
37     setSelectionMode(QAbstractItemView::ExtendedSelection);
38     setDragDropMode(QAbstractItemView::DragDrop);
39     setDropIndicatorShown(true);
40     setAlternatingRowColors(true);
41     setDragEnabled(true);
42     setAcceptDrops(true);
43
44     setColumnCount(4);
45     QStringList headers;
46     headers << i18n("Thumbnail") << i18n("Filename") << i18n("Description") << i18n("Rating");
47     setHeaderLabels(headers);
48     sortByColumn(1, Qt::AscendingOrder);
49
50     QHeaderView* headerView = header();
51     headerView->setContextMenuPolicy(Qt::CustomContextMenu);
52     connect(headerView, SIGNAL(customContextMenuRequested(const QPoint&)),
53             this, SLOT(configureColumns(const QPoint&)));
54
55     //connect(this, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)), this, SLOT(slotFocusOut(QTreeWidgetItem *, QTreeWidgetItem *)));
56
57     if (!KdenliveSettings::showdescriptioncolumn()) hideColumn(2);
58     if (!KdenliveSettings::showratingcolumn()) hideColumn(3);
59
60     setSortingEnabled(true);
61 }
62
63 ProjectListView::~ProjectListView()
64 {
65 }
66
67
68 void ProjectListView::configureColumns(const QPoint& pos)
69 {
70     KMenu popup(this);
71     popup.addTitle(i18nc("@title:menu", "Columns"));
72
73     QHeaderView* headerView = header();
74     for (int i = 2; i < headerView->count(); ++i) {
75         const QString text = model()->headerData(i, Qt::Horizontal).toString();
76         QAction* action = popup.addAction(text);
77         action->setCheckable(true);
78         action->setChecked(!headerView->isSectionHidden(i));
79         action->setData(i);
80     }
81
82     QAction* activatedAction = popup.exec(header()->mapToGlobal(pos));
83     if (activatedAction != 0) {
84         const bool show = activatedAction->isChecked();
85
86         // remember the changed column visibility in the settings
87         const int columnIndex = activatedAction->data().toInt();
88         switch (columnIndex) {
89         case 2:
90             KdenliveSettings::setShowdescriptioncolumn(show);
91             break;
92         case 3:
93             KdenliveSettings::setShowratingcolumn(show);
94             break;
95         default:
96             break;
97         }
98
99         // apply the changed column visibility
100         if (show) {
101             showColumn(columnIndex);
102         } else {
103             hideColumn(columnIndex);
104         }
105     }
106 }
107
108 // virtual
109 void ProjectListView::contextMenuEvent(QContextMenuEvent * event)
110 {
111     emit requestMenu(event->globalPos(), itemAt(event->pos()));
112 }
113
114 // virtual
115 void ProjectListView::mouseDoubleClickEvent(QMouseEvent * event)
116 {
117     ProjectItem *item = static_cast <ProjectItem *>(itemAt(event->pos()));
118     if (!item) emit addClip();
119     else if (item->isGroup()) {
120         if ((columnAt(event->pos().x()) == 1)) QTreeWidget::mouseDoubleClickEvent(event);
121     } else {
122         if ((columnAt(event->pos().x()) == 1) && (item->clipType() == SLIDESHOW || item->clipType() == TEXT || item->clipType() == COLOR)) QTreeWidget::mouseDoubleClickEvent(event);
123         else if ((columnAt(event->pos().x()) == 2)) QTreeWidget::mouseDoubleClickEvent(event);
124         else emit showProperties(item->referencedClip());
125     }
126 }
127
128 // virtual
129 void ProjectListView::dragEnterEvent(QDragEnterEvent *event)
130 {
131     if (event->mimeData()->hasUrls() || event->mimeData()->hasText()) {
132         kDebug() << "////////////////  DRAG ENTR OK";
133     }
134     event->acceptProposedAction();
135 }
136
137 // virtual
138 void ProjectListView::dropEvent(QDropEvent *event)
139 {
140     kDebug() << "////////////////  DROPPED EVENT";
141     if (event->mimeData()->hasUrls()) {
142         QTreeWidgetItem *item = itemAt(event->pos());
143         QString groupName;
144         if (item) {
145             if (((ProjectItem *) item)->isGroup()) groupName = item->text(1);
146             else if (item->parent() && ((ProjectItem *) item->parent())->isGroup())
147                 groupName = item->parent()->text(1);
148         }
149         emit addClip(event->mimeData()->urls(), groupName);
150
151     } else if (event->mimeData()->hasFormat("kdenlive/producerslist")) {
152         ProjectItem *item = static_cast <ProjectItem *>(itemAt(event->pos()));
153         if (item) {
154             if (item->parent()) item = static_cast <ProjectItem *>(item->parent());
155             if (item->isGroup()) {
156                 //emit addClip(event->mimeData->text());
157                 kDebug() << "////////////////  DROPPED RIGHT 1 ";
158                 const QList <QTreeWidgetItem *> list = selectedItems();
159                 ProjectItem *clone;
160                 QString parentId = item->clipId();
161                 foreach(QTreeWidgetItem *it, list) {
162                     // TODO allow dragging of folders ?
163                     if (!((ProjectItem *) it)->isGroup()/* && ((ProjectItem *) it)->clipId() < 10000*/) {
164                         if (it->parent()) clone = (ProjectItem*) it->parent()->takeChild(it->parent()->indexOfChild(it));
165                         else clone = (ProjectItem*) takeTopLevelItem(indexOfTopLevelItem(it));
166                         if (clone) {
167                             item->addChild(clone);
168                             QMap <QString, QString> props;
169                             props.insert("groupname", item->groupName());
170                             props.insert("groupid", parentId);
171                             clone->setProperties(props);
172                         }
173                     }
174                 }
175             } else item = NULL;
176         }
177         if (!item) {
178             kDebug() << "////////////////  DROPPED ON EMPTY ZONE";
179             // item dropped in empty zone, move it to top level
180             const QList <QTreeWidgetItem *> list = selectedItems();
181             ProjectItem *clone;
182             foreach(QTreeWidgetItem *it, list) {
183                 QTreeWidgetItem *parent = it->parent();
184                 if (parent/* && ((ProjectItem *) it)->clipId() < 10000*/)  {
185                     kDebug() << "++ item parent: " << parent->text(1);
186                     clone = static_cast <ProjectItem*>(parent->takeChild(parent->indexOfChild(it)));
187                     if (clone) {
188                         addTopLevelItem(clone);
189                         clone->clearProperty("groupname");
190                         clone->clearProperty("groupid");
191                     }
192                 }
193             }
194         }
195     }
196     event->acceptProposedAction();
197 }
198
199 // virtual
200 void ProjectListView::mousePressEvent(QMouseEvent *event)
201 {
202     if (event->button() == Qt::LeftButton) {
203         m_DragStartPosition = event->pos();
204         m_dragStarted = true;
205         QTreeWidgetItem *underMouse = itemAt(event->pos());
206         if (underMouse && underMouse->isSelected()) emit focusMonitor();
207     }
208     QTreeWidget::mousePressEvent(event);
209 }
210
211
212 // virtual
213 void ProjectListView::mouseMoveEvent(QMouseEvent *event)
214 {
215     //kDebug() << "// DRAG STARTED, MOUSE MOVED: ";
216     if (!m_dragStarted) return;
217
218     if ((event->pos() - m_DragStartPosition).manhattanLength()
219             < QApplication::startDragDistance())
220         return;
221
222     {
223         ProjectItem *clickItem = (ProjectItem *) itemAt(m_DragStartPosition); //event->pos());
224         if (clickItem) {
225             QDrag *drag = new QDrag(this);
226             QMimeData *mimeData = new QMimeData;
227             const QList <QTreeWidgetItem *> list = selectedItems();
228             QStringList ids;
229             foreach(const QTreeWidgetItem *item, list) {
230                 const ProjectItem *clip = static_cast <const ProjectItem *>(item);
231                 if (!clip->isGroup()) ids.append(clip->clipId());
232                 else {
233                     const int children = item->childCount();
234                     for (int i = 0; i < children; i++) {
235                         ids.append(static_cast <ProjectItem *>(item->child(i))->clipId());
236                     }
237                 }
238             }
239             if (ids.isEmpty()) return;
240             QByteArray data;
241             data.append(ids.join(";").toUtf8()); //doc.toString().toUtf8());
242             mimeData->setData("kdenlive/producerslist", data);
243             //mimeData->setText(ids.join(";")); //doc.toString());
244             //mimeData->setImageData(image);
245             drag->setMimeData(mimeData);
246             drag->setPixmap(clickItem->icon(0).pixmap(iconSize()));
247             drag->setHotSpot(QPoint(0, 50));
248             drag->exec(Qt::MoveAction);
249         }
250         //event->accept();
251     }
252 }
253
254 // virtual
255 void ProjectListView::dragMoveEvent(QDragMoveEvent * event)
256 {
257     event->setDropAction(Qt::IgnoreAction);
258     event->setDropAction(Qt::MoveAction);
259     if (event->mimeData()->hasText()) {
260         event->acceptProposedAction();
261     }
262     // stop playing because we get a crash otherwise when fetching the thumbnails
263     emit pauseMonitor();
264 }
265
266 QStringList ProjectListView::mimeTypes() const
267 {
268     QStringList qstrList;
269     qstrList << QTreeWidget::mimeTypes();
270     // list of accepted mime types for drop
271     qstrList.append("text/uri-list");
272     qstrList.append("text/plain");
273     qstrList.append("kdenlive/producerslist");
274     return qstrList;
275 }
276
277
278 Qt::DropActions ProjectListView::supportedDropActions() const
279 {
280     // returns what actions are supported when dropping
281     return Qt::MoveAction;
282 }
283
284 #include "projectlistview.moc"