]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
Also show kdenlive lumas in the slideshow dialog
[kdenlive] / src / clipproperties.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 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 #include <QDir>
21
22 #include <KStandardDirs>
23 #include <KDebug>
24 #include <KFileItem>
25
26 #include "kdenlivesettings.h"
27 #include "clipproperties.h"
28 #include "kthumb.h"
29 #include "markerdialog.h"
30
31 static const int VIDEOTAB = 0;
32 static const int AUDIOTAB = 1;
33 static const int COLORTAB = 2;
34 static const int SLIDETAB = 3;
35 static const int IMAGETAB = 4;
36 static const int MARKERTAB = 5;
37 static const int ADVANCEDTAB = 6;
38
39 static const int TYPE_JPEG = 0;
40 static const int TYPE_PNG = 1;
41 static const int TYPE_BMP = 2;
42 static const int TYPE_GIF = 3;
43
44 ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent): QDialog(parent), m_tc(tc), m_clip(clip), m_fps(fps), m_clipNeedsRefresh(false), m_count(0) {
45     setFont(KGlobalSettings::toolBarFont());
46     m_view.setupUi(this);
47     KUrl url = m_clip->fileURL();
48     m_view.clip_path->setText(url.path());
49     m_view.clip_description->setText(m_clip->description());
50     QMap <QString, QString> props = m_clip->properties();
51
52     if (props.contains("force_aspect_ratio") && props.value("force_aspect_ratio").toDouble() > 0) {
53         m_view.clip_force_ar->setChecked(true);
54         m_view.clip_ar->setEnabled(true);
55         m_view.clip_ar->setValue(props.value("force_aspect_ratio").toDouble());
56     }
57
58     if (props.contains("threads") && props.value("threads").toInt() != 1) {
59         m_view.clip_force_threads->setChecked(true);
60         m_view.clip_threads->setEnabled(true);
61         m_view.clip_threads->setValue(props.value("threads").toInt());
62     }
63
64     if (props.contains("video_index") && props.value("video_index").toInt() != 0) {
65         m_view.clip_force_vindex->setChecked(true);
66         m_view.clip_vindex->setEnabled(true);
67         m_view.clip_vindex->setValue(props.value("video_index").toInt());
68     }
69
70     if (props.contains("audio_index") && props.value("audio_index").toInt() != 0) {
71         m_view.clip_force_aindex->setChecked(true);
72         m_view.clip_aindex->setEnabled(true);
73         m_view.clip_aindex->setValue(props.value("audio_index").toInt());
74     }
75
76     if (props.contains("audio_max")) {
77         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
78     }
79
80     if (props.contains("video_max")) {
81         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
82     }
83
84     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar, SLOT(setEnabled(bool)));
85     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
86     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
87     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
88
89     if (props.contains("audiocodec"))
90         m_view.clip_acodec->setText(props.value("audiocodec"));
91     if (props.contains("frequency"))
92         m_view.clip_frequency->setText(props.value("frequency"));
93     if (props.contains("channels"))
94         m_view.clip_channels->setText(props.value("channels"));
95
96     CLIPTYPE t = m_clip->clipType();
97     if (t != AUDIO && t != AV) {
98         m_view.clip_force_aindex->setEnabled(false);
99     }
100
101     if (t != VIDEO && t != AV) {
102         m_view.clip_force_vindex->setEnabled(false);
103     }
104
105     if (t == IMAGE) {
106         m_view.tabWidget->removeTab(SLIDETAB);
107         m_view.tabWidget->removeTab(COLORTAB);
108         m_view.tabWidget->removeTab(AUDIOTAB);
109         m_view.tabWidget->removeTab(VIDEOTAB);
110         if (props.contains("frame_size"))
111             m_view.image_size->setText(props.value("frame_size"));
112         if (props.contains("transparency"))
113             m_view.image_transparency->setChecked(props.value("transparency").toInt());
114     } else if (t == COLOR) {
115         m_view.clip_path->setEnabled(false);
116         m_view.tabWidget->removeTab(IMAGETAB);
117         m_view.tabWidget->removeTab(SLIDETAB);
118         m_view.tabWidget->removeTab(AUDIOTAB);
119         m_view.tabWidget->removeTab(VIDEOTAB);
120         m_view.clip_thumb->setHidden(true);
121         m_view.clip_color->setColor(QColor("#" + props.value("colour").right(8).left(6)));
122     } else if (t == SLIDESHOW) {
123         m_view.clip_path->setText(url.directory());
124         m_view.tabWidget->removeTab(IMAGETAB);
125         m_view.tabWidget->removeTab(COLORTAB);
126         m_view.tabWidget->removeTab(AUDIOTAB);
127         m_view.tabWidget->removeTab(VIDEOTAB);
128         QStringList types;
129         types << "JPG" << "PNG" << "BMP" << "GIF";
130         m_view.image_type->addItems(types);
131         m_view.slide_loop->setChecked(props.value("loop").toInt());
132         m_view.slide_fade->setChecked(props.value("fade").toInt());
133         m_view.luma_softness->setValue(props.value("softness").toInt());
134         QString path = props.value("resource");
135         if (path.endsWith("png")) m_view.image_type->setCurrentIndex(TYPE_PNG);
136         else if (path.endsWith("bmp")) m_view.image_type->setCurrentIndex(TYPE_BMP);
137         else if (path.endsWith("gif")) m_view.image_type->setCurrentIndex(TYPE_GIF);
138         m_view.slide_duration->setText(tc.getTimecodeFromFrames(props.value("ttl").toInt()));
139         parseFolder();
140
141         m_view.luma_duration->setText(tc.getTimecodeFromFrames(props.value("luma_duration").toInt()));
142         QString lumaFile = props.value("luma_file");
143
144         // Check for Kdenlive installed luma files
145         QStringList filters;
146         filters << "*.pgm" << "*.png";
147
148         QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas");
149         foreach(const QString &folder, customLumas) {
150             QStringList filesnames = QDir(folder).entryList(filters, QDir::Files);
151             foreach(const QString &fname, filesnames) {
152                 m_view.luma_file->addItem(KIcon(folder + '/' + fname), fname, folder + '/' + fname);
153             }
154         }
155
156         // Check for MLT lumas
157         QString profilePath = KdenliveSettings::mltpath();
158         QString folder = profilePath.section('/', 0, -3);
159         folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files
160         QDir lumafolder(folder);
161         QStringList filesnames = lumafolder.entryList(filters, QDir::Files);
162         foreach(const QString &fname, filesnames) {
163             m_view.luma_file->addItem(KIcon(folder + '/' + fname), fname, folder + '/' + fname);
164         }
165
166         if (!lumaFile.isEmpty()) {
167             m_view.slide_luma->setChecked(true);
168             m_view.luma_file->setCurrentIndex(m_view.luma_file->findData(lumaFile));
169         }
170
171         connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
172     } else if (t != AUDIO) {
173         m_view.tabWidget->removeTab(IMAGETAB);
174         m_view.tabWidget->removeTab(SLIDETAB);
175         m_view.tabWidget->removeTab(COLORTAB);
176         if (props.contains("frame_size"))
177             m_view.clip_size->setText(props.value("frame_size"));
178         if (props.contains("videocodec"))
179             m_view.clip_vcodec->setText(props.value("videocodec"));
180         if (props.contains("fps"))
181             m_view.clip_fps->setText(props.value("fps"));
182         if (props.contains("aspect_ratio"))
183             m_view.clip_ratio->setText(props.value("aspect_ratio"));
184
185         QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), 240, 180);
186         m_view.clip_thumb->setPixmap(pix);
187         if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB);
188     } else {
189         m_view.tabWidget->removeTab(IMAGETAB);
190         m_view.tabWidget->removeTab(SLIDETAB);
191         m_view.tabWidget->removeTab(COLORTAB);
192         m_view.tabWidget->removeTab(VIDEOTAB);
193         m_view.clip_thumb->setHidden(true);
194     }
195
196     KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true);
197     m_view.clip_filesize->setText(KIO::convertSize(f.size()));
198     m_view.clip_duration->setText(tc.getTimecode(m_clip->duration(), m_fps));
199     if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true);
200     else connect(m_view.clip_duration, SIGNAL(editingFinished()), this, SLOT(slotCheckMaxLength()));
201
202     // markers
203     m_view.marker_new->setIcon(KIcon("document-new"));
204     m_view.marker_new->setToolTip(i18n("Add marker"));
205     m_view.marker_edit->setIcon(KIcon("document-properties"));
206     m_view.marker_edit->setToolTip(i18n("Edit marker"));
207     m_view.marker_delete->setIcon(KIcon("trash-empty"));
208     m_view.marker_delete->setToolTip(i18n("Delete marker"));
209
210     slotFillMarkersList();
211     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
212     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
213     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
214     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
215
216     adjustSize();
217 }
218
219 void ClipProperties::slotFillMarkersList() {
220     m_view.markers_list->clear();
221     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
222     for (uint count = 0; count < marks.count(); ++count) {
223         QString time = m_tc.getTimecode(marks[count].time(), m_tc.fps());
224         QStringList itemtext;
225         itemtext << time << marks[count].comment();
226         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
227     }
228 }
229
230 void ClipProperties::slotAddMarker() {
231     CommentedTime marker(GenTime(), i18n("Marker"));
232     MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this);
233     if (d.exec() == QDialog::Accepted) {
234         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
235     }
236     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
237 }
238
239 void ClipProperties::slotEditMarker() {
240     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
241     int pos = m_view.markers_list->currentIndex().row();
242     if (pos < 0 || pos > marks.count() - 1) return;
243     MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this);
244     if (d.exec() == QDialog::Accepted) {
245         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
246     }
247     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
248 }
249
250 void ClipProperties::slotDeleteMarker() {
251     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
252     int pos = m_view.markers_list->currentIndex().row();
253     if (pos < 0 || pos > marks.count() - 1) return;
254     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
255
256     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
257 }
258
259 const QString &ClipProperties::clipId() const {
260     return m_clip->getId();
261 }
262
263
264 QMap <QString, QString> ClipProperties::properties() {
265     QMap <QString, QString> props;
266     CLIPTYPE t = m_clip->clipType();
267     QMap <QString, QString> old_props = m_clip->properties();
268
269     if (old_props.value("description") != m_view.clip_description->text())
270         props["description"] = m_view.clip_description->text();
271
272     double aspect = m_view.clip_ar->value();
273     if (m_view.clip_force_ar->isChecked()) {
274         if (aspect != old_props.value("force_aspect_ratio").toDouble()) {
275             props["force_aspect_ratio"] = QString::number(aspect);
276             m_clipNeedsRefresh = true;
277         }
278     } else if (old_props.contains("force_aspect_ratio")) {
279         props["force_aspect_ratio"] = QString();
280         m_clipNeedsRefresh = true;
281     }
282
283     int threads = m_view.clip_threads->value();
284     if (m_view.clip_force_threads->isChecked()) {
285         if (threads != old_props.value("threads").toInt()) {
286             props["threads"] = QString::number(threads);
287         }
288     } else if (old_props.contains("threads")) {
289         props["threads"] = QString();
290     }
291
292     int vindex = m_view.clip_vindex->value();
293     if (m_view.clip_force_vindex->isChecked()) {
294         if (vindex != old_props.value("video_index").toInt()) {
295             props["video_index"] = QString::number(vindex);
296         }
297     } else if (old_props.contains("video_index")) {
298         props["video_index"] = QString();
299     }
300
301     int aindex = m_view.clip_aindex->value();
302     if (m_view.clip_force_aindex->isChecked()) {
303         if (aindex != old_props.value("audio_index").toInt()) {
304             props["audio_index"] = QString::number(aindex);
305         }
306     } else if (old_props.contains("audio_index")) {
307         props["audio_index"] = QString();
308     }
309
310     if (t == COLOR) {
311         QString new_color = m_view.clip_color->color().name();
312         if (new_color != QString("#" + old_props.value("colour").right(8).left(6))) {
313             m_clipNeedsRefresh = true;
314             props["colour"] = "0x" + new_color.right(6) + "ff";
315         }
316         int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
317         if (duration != m_clip->duration().frames(m_fps)) {
318             props["out"] = QString::number(duration);
319         }
320     } else if (t == IMAGE) {
321         if ((int) m_view.image_transparency->isChecked() != old_props.value("transparency").toInt()) {
322             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
323             m_clipNeedsRefresh = true;
324         }
325         int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
326         if (duration != m_clip->duration().frames(m_fps)) {
327             props["out"] = QString::number(duration);
328         }
329     } else if (t == SLIDESHOW) {
330         QString value = QString::number((int) m_view.slide_loop->isChecked());
331         if (old_props.value("loop") != value) props["loop"] = value;
332         value = QString::number((int) m_view.slide_fade->isChecked());
333         if (old_props.value("fade") != value) props["fade"] = value;
334         value = QString::number((int) m_view.luma_softness->value());
335         if (old_props.value("softness") != value) props["softness"] = value;
336
337         QString extension;
338         switch (m_view.image_type->currentIndex()) {
339         case TYPE_PNG:
340             extension = "/.all.png";
341             break;
342         case TYPE_BMP:
343             extension = "/.all.bmp";
344             break;
345         case TYPE_GIF:
346             extension = "/.all.gif";
347             break;
348         default:
349             extension = "/.all.jpg";
350             break;
351         }
352         QString new_path = m_view.clip_path->text() + extension;
353         if (new_path != old_props.value("resource")) {
354             m_clipNeedsRefresh = true;
355             props["resource"] = new_path;
356             kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << old_props.value("resource");
357         }
358         int duration = m_tc.getFrameCount(m_view.slide_duration->text(), m_fps);
359         if (duration != old_props.value("ttl").toInt()) {
360             m_clipNeedsRefresh = true;
361             props["ttl"] = QString::number(duration);
362             props["out"] = QString::number(duration * m_count);
363         }
364         if (duration * m_count != old_props.value("out").toInt()) {
365             m_clipNeedsRefresh = true;
366             props["out"] = QString::number(duration * m_count);
367         }
368         if (m_view.slide_fade->isChecked()) {
369             int luma_duration = m_tc.getFrameCount(m_view.luma_duration->text(), m_fps);
370             if (luma_duration != old_props.value("luma_duration").toInt()) {
371                 m_clipNeedsRefresh = true;
372                 props["luma_duration"] = QString::number(luma_duration);
373             }
374             QString lumaFile;
375             if (m_view.slide_luma->isChecked())
376                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
377             if (lumaFile != old_props.value("luma_file")) {
378                 m_clipNeedsRefresh = true;
379                 props["luma_file"] = lumaFile;
380             }
381         } else {
382             if (old_props.value("luma_file") != QString()) {
383                 props["luma_file"] = QString();
384             }
385         }
386
387     }
388     return props;
389 }
390
391 bool ClipProperties::needsTimelineRefresh() const {
392     return m_clipNeedsRefresh;
393 }
394
395 void ClipProperties::parseFolder() {
396
397     QDir dir(m_view.clip_path->text());
398     QStringList filters;
399     QString extension;
400     switch (m_view.image_type->currentIndex()) {
401     case TYPE_PNG:
402         filters << "*.png";
403         extension = "/.all.png";
404         break;
405     case TYPE_BMP:
406         filters << "*.bmp";
407         extension = "/.all.bmp";
408         break;
409     case TYPE_GIF:
410         filters << "*.gif";
411         extension = "/.all.gif";
412         break;
413     default:
414         filters << "*.jpg";
415         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
416         // << "*.jpeg";
417         extension = "/.all.jpg";
418         break;
419     }
420
421     dir.setNameFilters(filters);
422     QStringList result = dir.entryList(QDir::Files);
423     m_count = result.count();
424     m_view.slide_info->setText(i18n("%1 images found", m_count));
425     QDomElement xml = m_clip->toXML();
426     xml.setAttribute("resource", m_view.clip_path->text() + extension);
427     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(m_view.clip_path->text() + extension), 1, 240, 180);
428     QMap <QString, QString> props = m_clip->properties();
429     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
430     m_view.clip_thumb->setPixmap(pix);
431 }
432
433 void ClipProperties::slotCheckMaxLength() {
434     int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
435     if (duration > m_clip->maxDuration().frames(m_fps)) {
436         m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration(), m_fps));
437     }
438 }
439
440 #include "clipproperties.moc"
441
442