]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
Go to one second forward / backword:
[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         QString profilePath = KdenliveSettings::mltpath();
144         profilePath = profilePath.section('/', 0, -3);
145         profilePath += "/lumas/PAL/";
146
147         QDir dir(profilePath);
148         QStringList filter;
149         filter << "*.pgm";
150         const QStringList result = dir.entryList(filter, QDir::Files);
151         QStringList imagefiles;
152         QStringList imagenamelist;
153         int current;
154         foreach(const QString file, result) {
155             m_view.luma_file->addItem(KIcon(profilePath + file), file, profilePath + file);
156             if (!lumaFile.isEmpty() && lumaFile == QString(profilePath + file))
157                 current = m_view.luma_file->count() - 1;
158         }
159
160         if (!lumaFile.isEmpty()) {
161             m_view.slide_luma->setChecked(true);
162             m_view.luma_file->setCurrentIndex(current);
163         }
164
165         connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
166     } else if (t != AUDIO) {
167         m_view.tabWidget->removeTab(IMAGETAB);
168         m_view.tabWidget->removeTab(SLIDETAB);
169         m_view.tabWidget->removeTab(COLORTAB);
170         if (props.contains("frame_size"))
171             m_view.clip_size->setText(props.value("frame_size"));
172         if (props.contains("videocodec"))
173             m_view.clip_vcodec->setText(props.value("videocodec"));
174         if (props.contains("fps"))
175             m_view.clip_fps->setText(props.value("fps"));
176         if (props.contains("aspect_ratio"))
177             m_view.clip_ratio->setText(props.value("aspect_ratio"));
178
179         QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), 240, 180);
180         m_view.clip_thumb->setPixmap(pix);
181         if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB);
182     } else {
183         m_view.tabWidget->removeTab(IMAGETAB);
184         m_view.tabWidget->removeTab(SLIDETAB);
185         m_view.tabWidget->removeTab(COLORTAB);
186         m_view.tabWidget->removeTab(VIDEOTAB);
187         m_view.clip_thumb->setHidden(true);
188     }
189
190     KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true);
191     m_view.clip_filesize->setText(KIO::convertSize(f.size()));
192     m_view.clip_duration->setText(tc.getTimecode(m_clip->duration(), m_fps));
193     if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true);
194     else connect(m_view.clip_duration, SIGNAL(editingFinished()), this, SLOT(slotCheckMaxLength()));
195
196     // markers
197     m_view.marker_new->setIcon(KIcon("document-new"));
198     m_view.marker_new->setToolTip(i18n("Add marker"));
199     m_view.marker_edit->setIcon(KIcon("document-properties"));
200     m_view.marker_edit->setToolTip(i18n("Edit marker"));
201     m_view.marker_delete->setIcon(KIcon("trash-empty"));
202     m_view.marker_delete->setToolTip(i18n("Delete marker"));
203
204     slotFillMarkersList();
205     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
206     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
207     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
208     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
209
210     adjustSize();
211 }
212
213 void ClipProperties::slotFillMarkersList() {
214     m_view.markers_list->clear();
215     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
216     for (uint count = 0; count < marks.count(); ++count) {
217         QString time = m_tc.getTimecode(marks[count].time(), m_tc.fps());
218         QStringList itemtext;
219         itemtext << time << marks[count].comment();
220         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
221     }
222 }
223
224 void ClipProperties::slotAddMarker() {
225     CommentedTime marker(GenTime(), i18n("Marker"));
226     MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this);
227     if (d.exec() == QDialog::Accepted) {
228         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
229     }
230     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
231 }
232
233 void ClipProperties::slotEditMarker() {
234     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
235     int pos = m_view.markers_list->currentIndex().row();
236     if (pos < 0 || pos > marks.count() - 1) return;
237     MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this);
238     if (d.exec() == QDialog::Accepted) {
239         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
240     }
241     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
242 }
243
244 void ClipProperties::slotDeleteMarker() {
245     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
246     int pos = m_view.markers_list->currentIndex().row();
247     if (pos < 0 || pos > marks.count() - 1) return;
248     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
249
250     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
251 }
252
253 const QString &ClipProperties::clipId() const {
254     return m_clip->getId();
255 }
256
257
258 QMap <QString, QString> ClipProperties::properties() {
259     QMap <QString, QString> props;
260     CLIPTYPE t = m_clip->clipType();
261     QMap <QString, QString> old_props = m_clip->properties();
262
263     if (old_props.value("description") != m_view.clip_description->text())
264         props["description"] = m_view.clip_description->text();
265
266     double aspect = m_view.clip_ar->value();
267     if (m_view.clip_force_ar->isChecked()) {
268         if (aspect != old_props.value("force_aspect_ratio").toDouble()) {
269             props["force_aspect_ratio"] = QString::number(aspect);
270             m_clipNeedsRefresh = true;
271         }
272     } else if (old_props.contains("force_aspect_ratio")) {
273         props["force_aspect_ratio"] = QString();
274         m_clipNeedsRefresh = true;
275     }
276
277     int threads = m_view.clip_threads->value();
278     if (m_view.clip_force_threads->isChecked()) {
279         if (threads != old_props.value("threads").toInt()) {
280             props["threads"] = QString::number(threads);
281         }
282     } else if (old_props.contains("threads")) {
283         props["threads"] = QString();
284     }
285
286     int vindex = m_view.clip_vindex->value();
287     if (m_view.clip_force_vindex->isChecked()) {
288         if (vindex != old_props.value("video_index").toInt()) {
289             props["video_index"] = QString::number(vindex);
290         }
291     } else if (old_props.contains("video_index")) {
292         props["video_index"] = QString();
293     }
294
295     int aindex = m_view.clip_aindex->value();
296     if (m_view.clip_force_aindex->isChecked()) {
297         if (aindex != old_props.value("audio_index").toInt()) {
298             props["audio_index"] = QString::number(aindex);
299         }
300     } else if (old_props.contains("audio_index")) {
301         props["audio_index"] = QString();
302     }
303
304     if (t == COLOR) {
305         QString new_color = m_view.clip_color->color().name();
306         if (new_color != QString("#" + old_props.value("colour").right(8).left(6))) {
307             m_clipNeedsRefresh = true;
308             props["colour"] = "0x" + new_color.right(6) + "ff";
309         }
310         int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
311         if (duration != m_clip->duration().frames(m_fps)) {
312             props["out"] = QString::number(duration);
313         }
314     } else if (t == IMAGE) {
315         if ((int) m_view.image_transparency->isChecked() != old_props.value("transparency").toInt()) {
316             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
317             m_clipNeedsRefresh = true;
318         }
319         int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
320         if (duration != m_clip->duration().frames(m_fps)) {
321             props["out"] = QString::number(duration);
322         }
323     } else if (t == SLIDESHOW) {
324         QString value = QString::number((int) m_view.slide_loop->isChecked());
325         if (old_props.value("loop") != value) props["loop"] = value;
326         value = QString::number((int) m_view.slide_fade->isChecked());
327         if (old_props.value("fade") != value) props["fade"] = value;
328         value = QString::number((int) m_view.luma_softness->value());
329         if (old_props.value("softness") != value) props["softness"] = value;
330
331         QString extension;
332         switch (m_view.image_type->currentIndex()) {
333         case TYPE_PNG:
334             extension = "/.all.png";
335             break;
336         case TYPE_BMP:
337             extension = "/.all.bmp";
338             break;
339         case TYPE_GIF:
340             extension = "/.all.gif";
341             break;
342         default:
343             extension = "/.all.jpg";
344             break;
345         }
346         QString new_path = m_view.clip_path->text() + extension;
347         if (new_path != old_props.value("resource")) {
348             m_clipNeedsRefresh = true;
349             props["resource"] = new_path;
350             kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << old_props.value("resource");
351         }
352         int duration = m_tc.getFrameCount(m_view.slide_duration->text(), m_fps);
353         if (duration != old_props.value("ttl").toInt()) {
354             m_clipNeedsRefresh = true;
355             props["ttl"] = QString::number(duration);
356             props["out"] = QString::number(duration * m_count);
357         }
358         if (duration * m_count != old_props.value("out").toInt()) {
359             m_clipNeedsRefresh = true;
360             props["out"] = QString::number(duration * m_count);
361         }
362         if (m_view.slide_fade->isChecked()) {
363             int luma_duration = m_tc.getFrameCount(m_view.luma_duration->text(), m_fps);
364             if (luma_duration != old_props.value("luma_duration").toInt()) {
365                 m_clipNeedsRefresh = true;
366                 props["luma_duration"] = QString::number(luma_duration);
367             }
368             QString lumaFile;
369             if (m_view.slide_luma->isChecked())
370                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
371             if (lumaFile != old_props.value("luma_file")) {
372                 m_clipNeedsRefresh = true;
373                 props["luma_file"] = lumaFile;
374             }
375         } else {
376             if (old_props.value("luma_file") != QString()) {
377                 props["luma_file"] = QString();
378             }
379         }
380
381     }
382     return props;
383 }
384
385 bool ClipProperties::needsTimelineRefresh() const {
386     return m_clipNeedsRefresh;
387 }
388
389 void ClipProperties::parseFolder() {
390
391     QDir dir(m_view.clip_path->text());
392     QStringList filters;
393     QString extension;
394     switch (m_view.image_type->currentIndex()) {
395     case TYPE_PNG:
396         filters << "*.png";
397         extension = "/.all.png";
398         break;
399     case TYPE_BMP:
400         filters << "*.bmp";
401         extension = "/.all.bmp";
402         break;
403     case TYPE_GIF:
404         filters << "*.gif";
405         extension = "/.all.gif";
406         break;
407     default:
408         filters << "*.jpg";
409         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
410         // << "*.jpeg";
411         extension = "/.all.jpg";
412         break;
413     }
414
415     dir.setNameFilters(filters);
416     QStringList result = dir.entryList(QDir::Files);
417     m_count = result.count();
418     m_view.slide_info->setText(i18n("%1 images found", m_count));
419     QDomElement xml = m_clip->toXML();
420     xml.setAttribute("resource", m_view.clip_path->text() + extension);
421     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(m_view.clip_path->text() + extension), 1, 240, 180);
422     QMap <QString, QString> props = m_clip->properties();
423     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
424     m_view.clip_thumb->setPixmap(pix);
425 }
426
427 void ClipProperties::slotCheckMaxLength() {
428     int duration = m_tc.getFrameCount(m_view.clip_duration->text(), m_fps);
429     if (duration > m_clip->maxDuration().frames(m_fps)) {
430         m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration(), m_fps));
431     }
432 }
433
434 #include "clipproperties.moc"
435
436