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