]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
Fix crash on slideshow clip editing
[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
21 #include "clipproperties.h"
22 #include "kdenlivesettings.h"
23 #include "kthumb.h"
24 #include "markerdialog.h"
25
26 #include <KStandardDirs>
27 #include <KDebug>
28 #include <KFileItem>
29
30 #include <QDir>
31
32 static const int VIDEOTAB = 0;
33 static const int AUDIOTAB = 1;
34 static const int COLORTAB = 2;
35 static const int SLIDETAB = 3;
36 static const int IMAGETAB = 4;
37 static const int MARKERTAB = 5;
38 static const int METATAB = 6;
39 static const int ADVANCEDTAB = 7;
40
41 ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent) :
42         QDialog(parent),
43         m_clip(clip),
44         m_tc(tc),
45         m_fps(fps),
46         m_count(0),
47         m_clipNeedsRefresh(false),
48         m_clipNeedsReLoad(false)
49 {
50     setFont(KGlobalSettings::toolBarFont());
51     m_view.setupUi(this);
52     KUrl url = m_clip->fileURL();
53     m_view.clip_path->setText(url.path());
54     m_view.clip_description->setText(m_clip->description());
55     QMap <QString, QString> props = m_clip->properties();
56
57     if (props.contains("force_aspect_ratio") && props.value("force_aspect_ratio").toDouble() > 0) {
58         m_view.clip_force_ar->setChecked(true);
59         m_view.clip_ar->setEnabled(true);
60         m_view.clip_ar->setValue(props.value("force_aspect_ratio").toDouble());
61     }
62
63     if (props.contains("threads") && props.value("threads").toInt() != 1) {
64         m_view.clip_force_threads->setChecked(true);
65         m_view.clip_threads->setEnabled(true);
66         m_view.clip_threads->setValue(props.value("threads").toInt());
67     }
68
69     if (props.contains("video_index") && props.value("video_index").toInt() != 0) {
70         m_view.clip_force_vindex->setChecked(true);
71         m_view.clip_vindex->setEnabled(true);
72         m_view.clip_vindex->setValue(props.value("video_index").toInt());
73     }
74
75     if (props.contains("audio_index") && props.value("audio_index").toInt() != 0) {
76         m_view.clip_force_aindex->setChecked(true);
77         m_view.clip_aindex->setEnabled(true);
78         m_view.clip_aindex->setValue(props.value("audio_index").toInt());
79     }
80
81     if (props.contains("audio_max")) {
82         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
83     }
84
85     if (props.contains("video_max")) {
86         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
87     }
88
89     // Check for Metadata
90     QMap<QString, QString> meta = m_clip->metadata();
91     QMap<QString, QString>::const_iterator i = meta.constBegin();
92     while (i != meta.constEnd()) {
93         QTreeWidgetItem *metaitem = new QTreeWidgetItem(m_view.metadata_list);
94         metaitem->setText(0, i.key()); //i18n(i.key().section('.', 2, 3).toUtf8().data()));
95         metaitem->setText(1, i.value());
96         ++i;
97     }
98
99     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar, SLOT(setEnabled(bool)));
100     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
101     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
102     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
103
104     if (props.contains("audiocodec"))
105         m_view.clip_acodec->setText(props.value("audiocodec"));
106     if (props.contains("frequency"))
107         m_view.clip_frequency->setText(props.value("frequency"));
108     if (props.contains("channels"))
109         m_view.clip_channels->setText(props.value("channels"));
110
111     CLIPTYPE t = m_clip->clipType();
112     if (t != AUDIO && t != AV) {
113         m_view.clip_force_aindex->setEnabled(false);
114     }
115
116     if (t != VIDEO && t != AV) {
117         m_view.clip_force_vindex->setEnabled(false);
118     }
119
120     if (t == IMAGE) {
121         m_view.tabWidget->removeTab(SLIDETAB);
122         m_view.tabWidget->removeTab(COLORTAB);
123         m_view.tabWidget->removeTab(AUDIOTAB);
124         m_view.tabWidget->removeTab(VIDEOTAB);
125         if (props.contains("frame_size"))
126             m_view.image_size->setText(props.value("frame_size"));
127         if (props.contains("transparency"))
128             m_view.image_transparency->setChecked(props.value("transparency").toInt());
129         int width = 180.0 * KdenliveSettings::project_display_ratio();
130         if (width % 2 == 1) width++;
131         m_view.clip_thumb->setPixmap(QPixmap(url.path()).scaled(QSize(width, 180), Qt::KeepAspectRatio));
132     } else if (t == COLOR) {
133         m_view.clip_path->setEnabled(false);
134         m_view.tabWidget->removeTab(METATAB);
135         m_view.tabWidget->removeTab(IMAGETAB);
136         m_view.tabWidget->removeTab(SLIDETAB);
137         m_view.tabWidget->removeTab(AUDIOTAB);
138         m_view.tabWidget->removeTab(VIDEOTAB);
139         m_view.clip_thumb->setHidden(true);
140         m_view.clip_color->setColor(QColor('#' + props.value("colour").right(8).left(6)));
141     } else if (t == SLIDESHOW) {
142         m_view.clip_path->setText(url.directory());
143         m_view.tabWidget->removeTab(METATAB);
144         m_view.tabWidget->removeTab(IMAGETAB);
145         m_view.tabWidget->removeTab(COLORTAB);
146         m_view.tabWidget->removeTab(AUDIOTAB);
147         m_view.tabWidget->removeTab(VIDEOTAB);
148         
149         //WARNING: Keep in sync with slideshowclip.cpp
150         m_view.image_type->addItem("JPG (*.jpg)", "jpg");
151         m_view.image_type->addItem("JPEG (*.jpeg)", "jpeg");
152         m_view.image_type->addItem("PNG (*.png)", "png");
153         m_view.image_type->addItem("BMP (*.bmp)", "bmp");
154         m_view.image_type->addItem("GIF (*.gif)", "gif");
155         m_view.image_type->addItem("TGA (*.tga)", "tga");
156         m_view.image_type->addItem("TIFF (*.tiff)", "tiff");
157         m_view.image_type->addItem("Open EXR (*.exr)", "exr");
158         
159         m_view.slide_loop->setChecked(props.value("loop").toInt());
160         m_view.slide_fade->setChecked(props.value("fade").toInt());
161         m_view.luma_softness->setValue(props.value("softness").toInt());
162         QString path = props.value("resource");
163         QString ext = path.section('.', -1);
164         for (int i = 0; i < m_view.image_type->count(); i++) {
165             if (m_view.image_type->itemData(i).toString() == ext) {
166                 m_view.image_type->setCurrentIndex(i);
167                 break;
168             }
169         }
170         m_view.slide_duration->setText(tc.getTimecodeFromFrames(props.value("ttl").toInt()));
171
172         m_view.slide_duration_format->addItem(i18n("hh:mm:ss::ff"));
173         m_view.slide_duration_format->addItem(i18n("Frames"));
174         connect(m_view.slide_duration_format, SIGNAL(activated(int)), this, SLOT(slotUpdateDurationFormat(int)));
175         m_view.slide_duration_frames->setHidden(true);
176         m_view.luma_duration_frames->setHidden(true);
177
178         parseFolder();
179
180         m_view.luma_duration->setText(tc.getTimecodeFromFrames(props.value("luma_duration").toInt()));
181         QString lumaFile = props.value("luma_file");
182
183         // Check for Kdenlive installed luma files
184         QStringList filters;
185         filters << "*.pgm" << "*.png";
186
187         QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas");
188         foreach(const QString &folder, customLumas) {
189             QStringList filesnames = QDir(folder).entryList(filters, QDir::Files);
190             foreach(const QString &fname, filesnames) {
191                 QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
192                 m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
193             }
194         }
195
196         // Check for MLT lumas
197         QString profilePath = KdenliveSettings::mltpath();
198         QString folder = profilePath.section('/', 0, -3);
199         folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files
200         QDir lumafolder(folder);
201         QStringList filesnames = lumafolder.entryList(filters, QDir::Files);
202         foreach(const QString &fname, filesnames) {
203             QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
204             m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
205         }
206
207         slotEnableLuma(m_view.slide_fade->checkState());
208         slotEnableLumaFile(m_view.slide_luma->checkState());
209
210         if (!lumaFile.isEmpty()) {
211             m_view.slide_luma->setChecked(true);
212             m_view.luma_file->setCurrentIndex(m_view.luma_file->findData(lumaFile));
213         } else m_view.luma_file->setEnabled(false);
214         connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int)));
215         connect(m_view.slide_luma, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int)));
216
217         connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
218     } else if (t != AUDIO) {
219         m_view.tabWidget->removeTab(IMAGETAB);
220         m_view.tabWidget->removeTab(SLIDETAB);
221         m_view.tabWidget->removeTab(COLORTAB);
222         if (props.contains("frame_size"))
223             m_view.clip_size->setText(props.value("frame_size"));
224         if (props.contains("videocodec"))
225             m_view.clip_vcodec->setText(props.value("videocodec"));
226         if (props.contains("fps"))
227             m_view.clip_fps->setText(props.value("fps"));
228         if (props.contains("aspect_ratio"))
229             m_view.clip_ratio->setText(props.value("aspect_ratio"));
230         int width = 180.0 * KdenliveSettings::project_display_ratio();
231         if (width % 2 == 1) width++;
232         QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), width, 180);
233         m_view.clip_thumb->setPixmap(pix);
234         if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB);
235     } else {
236         m_view.tabWidget->removeTab(IMAGETAB);
237         m_view.tabWidget->removeTab(SLIDETAB);
238         m_view.tabWidget->removeTab(COLORTAB);
239         m_view.tabWidget->removeTab(VIDEOTAB);
240         m_view.clip_thumb->setHidden(true);
241     }
242
243     KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true);
244     m_view.clip_filesize->setText(KIO::convertSize(f.size()));
245     m_view.clip_duration->setText(tc.getTimecode(m_clip->duration()));
246     if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true);
247     else connect(m_view.clip_duration, SIGNAL(editingFinished()), this, SLOT(slotCheckMaxLength()));
248
249     // markers
250     m_view.marker_new->setIcon(KIcon("document-new"));
251     m_view.marker_new->setToolTip(i18n("Add marker"));
252     m_view.marker_edit->setIcon(KIcon("document-properties"));
253     m_view.marker_edit->setToolTip(i18n("Edit marker"));
254     m_view.marker_delete->setIcon(KIcon("trash-empty"));
255     m_view.marker_delete->setToolTip(i18n("Delete marker"));
256
257     slotFillMarkersList();
258     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
259     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
260     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
261     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
262
263     //adjustSize();
264 }
265
266 void ClipProperties::slotEnableLuma(int state)
267 {
268     bool enable = false;
269     if (state == Qt::Checked) enable = true;
270     m_view.luma_duration->setEnabled(enable);
271     m_view.luma_duration_frames->setEnabled(enable);
272     m_view.slide_luma->setEnabled(enable);
273     if (enable) {
274         m_view.luma_file->setEnabled(m_view.slide_luma->isChecked());
275     } else m_view.luma_file->setEnabled(false);
276     m_view.label_softness->setEnabled(m_view.slide_luma->isChecked() && enable);
277     m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled());
278 }
279
280 void ClipProperties::slotEnableLumaFile(int state)
281 {
282     bool enable = false;
283     if (state == Qt::Checked) enable = true;
284     m_view.luma_file->setEnabled(enable);
285     m_view.luma_softness->setEnabled(enable);
286     m_view.label_softness->setEnabled(enable);
287 }
288
289 void ClipProperties::slotFillMarkersList()
290 {
291     m_view.markers_list->clear();
292     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
293     for (int count = 0; count < marks.count(); ++count) {
294         QString time = m_tc.getTimecode(marks[count].time());
295         QStringList itemtext;
296         itemtext << time << marks[count].comment();
297         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
298     }
299 }
300
301 void ClipProperties::slotAddMarker()
302 {
303     CommentedTime marker(GenTime(), i18n("Marker"));
304     MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this);
305     if (d.exec() == QDialog::Accepted) {
306         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
307     }
308     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
309 }
310
311 void ClipProperties::slotEditMarker()
312 {
313     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
314     int pos = m_view.markers_list->currentIndex().row();
315     if (pos < 0 || pos > marks.count() - 1) return;
316     MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this);
317     if (d.exec() == QDialog::Accepted) {
318         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
319     }
320     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
321 }
322
323 void ClipProperties::slotDeleteMarker()
324 {
325     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
326     int pos = m_view.markers_list->currentIndex().row();
327     if (pos < 0 || pos > marks.count() - 1) return;
328     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
329
330     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
331 }
332
333 const QString &ClipProperties::clipId() const
334 {
335     return m_clip->getId();
336 }
337
338
339 QMap <QString, QString> ClipProperties::properties()
340 {
341     QMap <QString, QString> props;
342     CLIPTYPE t = m_clip->clipType();
343     QMap <QString, QString> old_props = m_clip->properties();
344
345     if (old_props.value("description") != m_view.clip_description->text())
346         props["description"] = m_view.clip_description->text();
347
348     double aspect = m_view.clip_ar->value();
349     if (m_view.clip_force_ar->isChecked()) {
350         if (aspect != old_props.value("force_aspect_ratio").toDouble()) {
351             props["force_aspect_ratio"] = QString::number(aspect);
352             m_clipNeedsRefresh = true;
353         }
354     } else if (old_props.contains("force_aspect_ratio")) {
355         props["force_aspect_ratio"].clear();
356         m_clipNeedsRefresh = true;
357     }
358
359     int threads = m_view.clip_threads->value();
360     if (m_view.clip_force_threads->isChecked()) {
361         if (threads != old_props.value("threads").toInt()) {
362             props["threads"] = QString::number(threads);
363         }
364     } else if (old_props.contains("threads")) {
365         props["threads"].clear();
366     }
367
368     int vindex = m_view.clip_vindex->value();
369     if (m_view.clip_force_vindex->isChecked()) {
370         if (vindex != old_props.value("video_index").toInt()) {
371             props["video_index"] = QString::number(vindex);
372         }
373     } else if (old_props.contains("video_index")) {
374         props["video_index"].clear();
375     }
376
377     int aindex = m_view.clip_aindex->value();
378     if (m_view.clip_force_aindex->isChecked()) {
379         if (aindex != old_props.value("audio_index").toInt()) {
380             props["audio_index"] = QString::number(aindex);
381         }
382     } else if (old_props.contains("audio_index")) {
383         props["audio_index"].clear();
384     }
385
386     if (t == COLOR) {
387         QString new_color = m_view.clip_color->color().name();
388         if (new_color != QString('#' + old_props.value("colour").right(8).left(6))) {
389             m_clipNeedsRefresh = true;
390             props["colour"] = "0x" + new_color.right(6) + "ff";
391         }
392         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
393         if (duration != m_clip->duration().frames(m_fps)) {
394             props["out"] = QString::number(duration);
395         }
396     } else if (t == IMAGE) {
397         if ((int) m_view.image_transparency->isChecked() != old_props.value("transparency").toInt()) {
398             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
399             //m_clipNeedsRefresh = true;
400         }
401         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
402         if (duration != m_clip->duration().frames(m_fps)) {
403             props["out"] = QString::number(duration);
404         }
405     } else if (t == SLIDESHOW) {
406         QString value = QString::number((int) m_view.slide_loop->isChecked());
407         if (old_props.value("loop") != value) props["loop"] = value;
408         value = QString::number((int) m_view.slide_fade->isChecked());
409         if (old_props.value("fade") != value) props["fade"] = value;
410         value = QString::number((int) m_view.luma_softness->value());
411         if (old_props.value("softness") != value) props["softness"] = value;
412
413         QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
414         QString new_path = m_view.clip_path->text() + extension;
415         if (new_path != old_props.value("resource")) {
416             m_clipNeedsReLoad = true;
417             props["resource"] = new_path;
418             kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << old_props.value("resource");
419         }
420         int duration;
421         if (m_view.slide_duration_format->currentIndex() == 1) {
422             // we are in frames mode
423             duration = m_view.slide_duration_frames->value();
424         } else duration = m_tc.getFrameCount(m_view.slide_duration->text());
425         if (duration != old_props.value("ttl").toInt()) {
426             m_clipNeedsRefresh = true;
427             props["ttl"] = QString::number(duration);
428             props["out"] = QString::number(duration * m_count);
429         }
430         if (duration * m_count != old_props.value("out").toInt()) {
431             m_clipNeedsRefresh = true;
432             props["out"] = QString::number(duration * m_count);
433         }
434         if (m_view.slide_fade->isChecked()) {
435             int luma_duration;
436             if (m_view.slide_duration_format->currentIndex() == 1) {
437                 // we are in frames mode
438                 luma_duration = m_view.luma_duration_frames->value();
439             } else luma_duration = m_tc.getFrameCount(m_view.luma_duration->text());
440             if (luma_duration != old_props.value("luma_duration").toInt()) {
441                 m_clipNeedsRefresh = true;
442                 props["luma_duration"] = QString::number(luma_duration);
443             }
444             QString lumaFile;
445             if (m_view.slide_luma->isChecked())
446                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
447             if (lumaFile != old_props.value("luma_file")) {
448                 m_clipNeedsRefresh = true;
449                 props["luma_file"] = lumaFile;
450             }
451         } else {
452             if (!old_props.value("luma_file").isEmpty()) {
453                 props["luma_file"].clear();
454             }
455         }
456
457     }
458     return props;
459 }
460
461 bool ClipProperties::needsTimelineRefresh() const
462 {
463     return m_clipNeedsRefresh;
464 }
465
466 bool ClipProperties::needsTimelineReload() const
467 {
468     return m_clipNeedsReLoad;
469 }
470
471 void ClipProperties::parseFolder()
472 {
473
474     QDir dir(m_view.clip_path->text());
475     QStringList filters;
476     filters << "*." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
477     QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
478
479     dir.setNameFilters(filters);
480     QStringList result = dir.entryList(QDir::Files);
481     m_count = result.count();
482     if (m_count == 0) {
483         // no images, do not accept that
484         m_view.slide_info->setText(i18n("No image found"));
485         m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
486         return;
487     }
488     m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
489     m_view.slide_info->setText(i18np("1 image found", "%1 images found", m_count));
490     QDomElement xml = m_clip->toXML();
491     xml.setAttribute("resource", m_view.clip_path->text() + extension);
492     int width = 180.0 * KdenliveSettings::project_display_ratio();
493     if (width % 2 == 1) width++;
494     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(m_view.clip_path->text() + extension), 1, width, 180);
495     QMap <QString, QString> props = m_clip->properties();
496     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
497     m_view.clip_thumb->setPixmap(pix);
498 }
499
500 void ClipProperties::slotCheckMaxLength()
501 {
502     if (m_clip->maxDuration() == GenTime()) return;
503     int duration = m_tc.getFrameCount(m_view.clip_duration->text());
504     if (duration > m_clip->maxDuration().frames(m_fps)) {
505         m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration()));
506     }
507 }
508
509 void ClipProperties::slotUpdateDurationFormat(int ix)
510 {
511     bool framesFormat = ix == 1;
512     if (framesFormat) {
513         // switching to frames count, update widget
514         m_view.slide_duration_frames->setValue(m_tc.getFrameCount(m_view.slide_duration->text()));
515         m_view.luma_duration_frames->setValue(m_tc.getFrameCount(m_view.luma_duration->text()));
516         m_view.slide_duration->setHidden(true);
517         m_view.luma_duration->setHidden(true);
518         m_view.slide_duration_frames->setHidden(false);
519         m_view.luma_duration_frames->setHidden(false);
520     } else {
521         // switching to timecode format
522         m_view.slide_duration->setText(m_tc.getTimecodeFromFrames(m_view.slide_duration_frames->value()));
523         m_view.luma_duration->setText(m_tc.getTimecodeFromFrames(m_view.luma_duration_frames->value()));
524         m_view.slide_duration_frames->setHidden(true);
525         m_view.luma_duration_frames->setHidden(true);
526         m_view.slide_duration->setHidden(false);
527         m_view.luma_duration->setHidden(false);
528     }
529 }
530
531 #include "clipproperties.moc"
532
533