]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
Fix a couple of compile warnings because of unused and uninitialized variables.
[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 #include "profilesdialog.h"
26
27 #include <KStandardDirs>
28 #include <KDebug>
29 #include <KFileItem>
30
31 #include <QDir>
32
33 static const int VIDEOTAB = 0;
34 static const int AUDIOTAB = 1;
35 static const int COLORTAB = 2;
36 static const int SLIDETAB = 3;
37 static const int IMAGETAB = 4;
38 static const int MARKERTAB = 5;
39 static const int METATAB = 6;
40 static const int ADVANCEDTAB = 7;
41
42
43 ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent) :
44     QDialog(parent),
45     m_clip(clip),
46     m_tc(tc),
47     m_fps(fps),
48     m_count(0),
49     m_clipNeedsRefresh(false),
50     m_clipNeedsReLoad(false)
51 {
52     setAttribute(Qt::WA_DeleteOnClose, true);
53     setFont(KGlobalSettings::toolBarFont());
54     m_view.setupUi(this);
55     
56     // force transparency is only for group properties, so hide it
57     m_view.clip_force_transparency->setHidden(true);
58     m_view.clip_transparency->setHidden(true);
59     
60     KUrl url = m_clip->fileURL();
61     m_view.clip_path->setText(url.path());
62     m_view.clip_description->setText(m_clip->description());
63     connect(m_view.clip_description, SIGNAL(textChanged(QString)), this, SLOT(slotModified()));
64
65     QMap <QString, QString> props = m_clip->properties();
66     m_view.clip_force_out->setHidden(true);
67     m_view.clip_out->setHidden(true);
68     
69     // New display aspect ratio support
70     if (props.contains("force_aspect_num") && props.value("force_aspect_num").toInt() > 0 &&
71         props.contains("force_aspect_den") && props.value("force_aspect_den").toInt() > 0) {
72         m_view.clip_force_ar->setChecked(true);
73         m_view.clip_ar_num->setEnabled(true);
74         m_view.clip_ar_den->setEnabled(true);
75         m_view.clip_ar_num->setValue(props.value("force_aspect_num").toInt());
76         m_view.clip_ar_den->setValue(props.value("force_aspect_den").toInt());
77     }
78     // Legacy support for pixel aspect ratio
79     else if (props.contains("force_aspect_ratio") && props.value("force_aspect_ratio").toDouble() > 0) {
80         m_view.clip_force_ar->setChecked(true);
81         m_view.clip_ar_num->setEnabled(true);
82         m_view.clip_ar_den->setEnabled(true);
83         if (props.contains("frame_size")) {
84             int width = props.value("force_aspect_ratio").toDouble() * props.value("frame_size").section('x', 0, 0).toInt();
85             int height = props.value("frame_size").section('x', 1, 1).toInt();
86             if (width > 0 && height > 0) {
87                 if ((width / height * 100) == 133) {
88                     width = 4;
89                     height = 3;
90                 }
91                 else if (int(width / height * 100) == 177) {
92                     width = 16;
93                     height = 9;
94                 }
95                 m_view.clip_ar_num->setValue(width);
96                 m_view.clip_ar_den->setValue(height);
97             }
98         }
99     }
100     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
101     connect(m_view.clip_ar_num, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
102     connect(m_view.clip_ar_den, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
103
104     if (props.contains("force_fps") && props.value("force_fps").toDouble() > 0) {
105         m_view.clip_force_framerate->setChecked(true);
106         m_view.clip_framerate->setEnabled(true);
107         m_view.clip_framerate->setValue(props.value("force_fps").toDouble());
108     }
109     connect(m_view.clip_force_framerate, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
110     connect(m_view.clip_framerate, SIGNAL(valueChanged(double)), this, SLOT(slotModified()));
111
112     if (props.contains("force_progressive")) {
113         m_view.clip_force_progressive->setChecked(true);
114         m_view.clip_progressive->setEnabled(true);
115         m_view.clip_progressive->setValue(props.value("force_progressive").toInt());
116     }
117     connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
118     connect(m_view.clip_progressive, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
119
120     m_view.clip_fieldorder->addItem(i18n("Bottom first"), 0);
121     m_view.clip_fieldorder->addItem(i18n("Top first"), 1);
122     if (props.contains("force_tff")) {
123         m_view.clip_force_fieldorder->setChecked(true);
124         m_view.clip_fieldorder->setEnabled(true);
125         m_view.clip_fieldorder->setCurrentIndex(props.value("force_tff").toInt());
126     }
127     connect(m_view.clip_force_fieldorder, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
128     connect(m_view.clip_fieldorder, SIGNAL(currentIndexChanged(int)), this, SLOT(slotModified()));
129     
130     if (props.contains("threads") && props.value("threads").toInt() != 1) {
131         m_view.clip_force_threads->setChecked(true);
132         m_view.clip_threads->setEnabled(true);
133         m_view.clip_threads->setValue(props.value("threads").toInt());
134     }
135     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
136     connect(m_view.clip_threads, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
137
138     if (props.contains("video_index") && props.value("video_index").toInt() != 0) {
139         m_view.clip_force_vindex->setChecked(true);
140         m_view.clip_vindex->setEnabled(true);
141         m_view.clip_vindex->setValue(props.value("video_index").toInt());
142     }
143     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
144     connect(m_view.clip_vindex, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
145
146     if (props.contains("audio_index") && props.value("audio_index").toInt() != 0) {
147         m_view.clip_force_aindex->setChecked(true);
148         m_view.clip_aindex->setEnabled(true);
149         m_view.clip_aindex->setValue(props.value("audio_index").toInt());
150     }
151     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
152     connect(m_view.clip_aindex, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
153
154     if (props.contains("audio_max")) {
155         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
156     }
157
158     if (props.contains("video_max")) {
159         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
160     }
161     
162     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(601), 601);
163     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(709), 709);
164     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(240), 240);
165     if (props.contains("force_colorspace")) {
166         m_view.clip_force_colorspace->setChecked(true);
167         m_view.clip_colorspace->setEnabled(true);
168         m_view.clip_colorspace->setCurrentIndex(m_view.clip_colorspace->findData(props.value("force_colorspace").toInt()));
169     } else if (props.contains("colorspace")) {
170         m_view.clip_colorspace->setCurrentIndex(m_view.clip_colorspace->findData(props.value("colorspace").toInt()));
171     }
172     connect(m_view.clip_force_colorspace, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
173     connect(m_view.clip_colorspace, SIGNAL(currentIndexChanged(int)), this, SLOT(slotModified()));
174     
175     if (props.contains("full_luma")) {
176         m_view.clip_full_luma->setChecked(true);
177     }
178     connect(m_view.clip_full_luma, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
179
180     // Check for Metadata
181     QMap<QString, QString> meta = m_clip->metadata();
182     QMap<QString, QString>::const_iterator i = meta.constBegin();
183     while (i != meta.constEnd()) {
184         QTreeWidgetItem *metaitem = new QTreeWidgetItem(m_view.metadata_list);
185         metaitem->setText(0, i.key()); //i18n(i.key().section('.', 2, 3).toUtf8().data()));
186         metaitem->setText(1, i.value());
187         ++i;
188     }
189
190     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_num, SLOT(setEnabled(bool)));
191     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_den, SLOT(setEnabled(bool)));
192     connect(m_view.clip_force_framerate, SIGNAL(toggled(bool)), m_view.clip_framerate, SLOT(setEnabled(bool)));
193     connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), m_view.clip_progressive, SLOT(setEnabled(bool)));
194     connect(m_view.clip_force_fieldorder, SIGNAL(toggled(bool)), m_view.clip_fieldorder, SLOT(setEnabled(bool)));
195     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
196     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
197     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
198     connect(m_view.clip_force_colorspace, SIGNAL(toggled(bool)), m_view.clip_colorspace, SLOT(setEnabled(bool)));
199
200     if (props.contains("audiocodec"))
201         new QTreeWidgetItem(m_view.clip_aproperties, QStringList() << i18n("Audio codec") << props.value("audiocodec"));
202
203     if (props.contains("channels"))
204         new QTreeWidgetItem(m_view.clip_aproperties, QStringList() << i18n("Channels") << props.value("channels"));
205
206     if (props.contains("frequency"))
207         new QTreeWidgetItem(m_view.clip_aproperties, QStringList() << i18n("Frequency") << props.value("frequency"));
208     
209
210     CLIPTYPE t = m_clip->clipType();
211     
212     if (props.contains("proxy") && props.value("proxy") != "-") {
213         KFileItem f(KFileItem::Unknown, KFileItem::Unknown, KUrl(props.value("proxy")), true);
214         QFrame* line = new QFrame();
215         line->setFrameShape(QFrame::HLine);
216         line->setFrameShadow(QFrame::Sunken);
217         m_proxyContainer = new QFrame();
218         m_proxyContainer->setFrameShape(QFrame::NoFrame);
219         QHBoxLayout *l = new QHBoxLayout;
220         l->addWidget(new QLabel(i18n("Proxy clip: %1").arg(KIO::convertSize(f.size()))));
221         l->addStretch(5);
222         QPushButton *pb = new QPushButton(i18n("Delete proxy"));
223         l->addWidget(pb);
224         connect(pb, SIGNAL(clicked()), this, SLOT(slotDeleteProxy()));
225         m_proxyContainer->setLayout(l);
226         if (t == IMAGE) {
227             m_view.tab_image->layout()->addWidget(line);
228             m_view.tab_image->layout()->addWidget(m_proxyContainer);
229         }
230         else if (t == AUDIO) {
231             m_view.tab_audio->layout()->addWidget(line);
232             m_view.tab_audio->layout()->addWidget(m_proxyContainer);
233         }
234         else {
235             m_view.tab_video->layout()->addWidget(line);
236             m_view.tab_video->layout()->addWidget(m_proxyContainer);
237         }
238     }
239     
240     if (t != AUDIO && t != AV) {
241         m_view.clip_force_aindex->setEnabled(false);
242     }
243
244     if (t != VIDEO && t != AV) {
245         m_view.clip_force_vindex->setEnabled(false);
246     }
247
248     if (t == IMAGE) {
249         m_view.tabWidget->removeTab(SLIDETAB);
250         m_view.tabWidget->removeTab(COLORTAB);
251         m_view.tabWidget->removeTab(AUDIOTAB);
252         m_view.tabWidget->removeTab(VIDEOTAB);
253         if (props.contains("frame_size"))
254             m_view.image_size->setText(props.value("frame_size"));
255         if (props.contains("transparency"))
256             m_view.image_transparency->setChecked(props.value("transparency").toInt());
257         connect(m_view.image_transparency, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
258         int width = 180.0 * KdenliveSettings::project_display_ratio();
259         if (width % 2 == 1) width++;
260         m_view.clip_thumb->setPixmap(QPixmap(url.path()).scaled(QSize(width, 180), Qt::KeepAspectRatio));
261     } else if (t == COLOR) {
262         m_view.clip_path->setEnabled(false);
263         m_view.tabWidget->removeTab(METATAB);
264         m_view.tabWidget->removeTab(IMAGETAB);
265         m_view.tabWidget->removeTab(SLIDETAB);
266         m_view.tabWidget->removeTab(AUDIOTAB);
267         m_view.tabWidget->removeTab(VIDEOTAB);
268         m_view.clip_thumb->setHidden(true);
269         m_view.clip_color->setColor(QColor('#' + props.value("colour").right(8).left(6)));
270         connect(m_view.clip_color, SIGNAL(changed(QColor)), this, SLOT(slotModified()));
271     } else if (t == SLIDESHOW) {
272         if (url.fileName().startsWith(".all.")) {
273             // the image sequence is defined by mimetype
274             m_view.clip_path->setText(url.directory());
275         } else {
276             // the image sequence is defined by pattern
277             m_view.slide_type_label->setHidden(true);
278             m_view.image_type->setHidden(true);
279             m_view.clip_path->setText(url.path());
280         }
281
282         m_view.tabWidget->removeTab(METATAB);
283         m_view.tabWidget->removeTab(IMAGETAB);
284         m_view.tabWidget->removeTab(COLORTAB);
285         m_view.tabWidget->removeTab(AUDIOTAB);
286         m_view.tabWidget->removeTab(VIDEOTAB);
287
288         //WARNING: Keep in sync with slideshowclip.cpp
289         m_view.image_type->addItem("JPG (*.jpg)", "jpg");
290         m_view.image_type->addItem("JPEG (*.jpeg)", "jpeg");
291         m_view.image_type->addItem("PNG (*.png)", "png");
292         m_view.image_type->addItem("BMP (*.bmp)", "bmp");
293         m_view.image_type->addItem("GIF (*.gif)", "gif");
294         m_view.image_type->addItem("TGA (*.tga)", "tga");
295         m_view.image_type->addItem("TIF (*.tif)", "tif");
296         m_view.image_type->addItem("TIFF (*.tiff)", "tiff");
297         m_view.image_type->addItem("Open EXR (*.exr)", "exr");
298         m_view.animation->addItem(i18n("None"), QString());
299         m_view.animation->addItem(i18n("Pan"), "Pan");
300         m_view.animation->addItem(i18n("Pan, low-pass"), "Pan, low-pass");
301         m_view.animation->addItem(i18n("Pan and zoom"), "Pan and zoom");
302         m_view.animation->addItem(i18n("Pan and zoom, low-pass"), "Pan and zoom, low-pass");
303         m_view.animation->addItem(i18n("Zoom"), "Zoom");
304         m_view.animation->addItem(i18n("Zoom, low-pass"), "Zoom, low-pass");
305
306         m_view.slide_loop->setChecked(props.value("loop").toInt());
307         m_view.slide_crop->setChecked(props.value("crop").toInt());
308         m_view.slide_fade->setChecked(props.value("fade").toInt());
309         m_view.luma_softness->setValue(props.value("softness").toInt());
310         if (!props.value("animation").isEmpty())
311             m_view.animation->setCurrentItem(props.value("animation"));
312         else
313             m_view.animation->setCurrentIndex(0);
314         QString path = props.value("resource");
315         QString ext = path.section('.', -1);
316         for (int i = 0; i < m_view.image_type->count(); i++) {
317             if (m_view.image_type->itemData(i).toString() == ext) {
318                 m_view.image_type->setCurrentIndex(i);
319                 break;
320             }
321         }
322         m_view.slide_duration->setText(tc.getTimecodeFromFrames(props.value("ttl").toInt()));
323
324         m_view.slide_duration_format->addItem(i18n("hh:mm:ss:ff"));
325         m_view.slide_duration_format->addItem(i18n("Frames"));
326         connect(m_view.slide_duration_format, SIGNAL(activated(int)), this, SLOT(slotUpdateDurationFormat(int)));
327         m_view.slide_duration_frames->setHidden(true);
328         m_view.luma_duration_frames->setHidden(true);
329
330         parseFolder();
331
332         m_view.luma_duration->setText(tc.getTimecodeFromFrames(props.value("luma_duration").toInt()));
333         QString lumaFile = props.value("luma_file");
334
335         // Check for Kdenlive installed luma files
336         QStringList filters;
337         filters << "*.pgm" << "*.png";
338
339         QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas");
340         foreach(const QString & folder, customLumas) {
341             QStringList filesnames = QDir(folder).entryList(filters, QDir::Files);
342             foreach(const QString & fname, filesnames) {
343                 QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
344                 m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
345             }
346         }
347
348         // Check for MLT lumas
349         QString profilePath = KdenliveSettings::mltpath();
350         QString folder = profilePath.section('/', 0, -3);
351         folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files
352         QDir lumafolder(folder);
353         QStringList filesnames = lumafolder.entryList(filters, QDir::Files);
354         foreach(const QString & fname, filesnames) {
355             QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
356             m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
357         }
358
359         if (!lumaFile.isEmpty()) {
360             m_view.slide_luma->setChecked(true);
361             m_view.luma_file->setCurrentIndex(m_view.luma_file->findData(lumaFile));
362         } else m_view.luma_file->setEnabled(false);
363         slotEnableLuma(m_view.slide_fade->checkState());
364         slotEnableLumaFile(m_view.slide_luma->checkState());
365
366         connect(m_view.slide_fade, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
367         connect(m_view.slide_luma, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
368         connect(m_view.slide_loop, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
369         connect(m_view.slide_crop, SIGNAL(toggled(bool)), this, SLOT(slotModified()));
370         connect(m_view.slide_duration, SIGNAL(textChanged(QString)), this, SLOT(slotModified()));
371         connect(m_view.slide_duration_frames, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
372         connect(m_view.luma_duration, SIGNAL(textChanged(QString)), this, SLOT(slotModified()));
373         connect(m_view.luma_softness, SIGNAL(valueChanged(int)), this, SLOT(slotModified()));
374         connect(m_view.luma_file, SIGNAL(currentIndexChanged(int)), this, SLOT(slotModified()));
375         connect(m_view.animation, SIGNAL(currentIndexChanged(int)), this, SLOT(slotModified()));
376
377
378         connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int)));
379         connect(m_view.slide_luma, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int)));
380         connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
381
382     } else if (t != AUDIO) {
383         m_view.tabWidget->removeTab(IMAGETAB);
384         m_view.tabWidget->removeTab(SLIDETAB);
385         m_view.tabWidget->removeTab(COLORTAB);
386
387         PropertiesViewDelegate *del1 = new PropertiesViewDelegate(this);
388         PropertiesViewDelegate *del2 = new PropertiesViewDelegate(this);
389         m_view.clip_vproperties->setItemDelegate(del1);
390         m_view.clip_aproperties->setItemDelegate(del2);
391         m_view.clip_aproperties->setStyleSheet(QString("QTreeWidget { background-color: transparent;}"));
392         m_view.clip_vproperties->setStyleSheet(QString("QTreeWidget { background-color: transparent;}"));
393
394         if (props.contains("videocodec"))
395             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Video codec") << props.value("videocodec"));
396
397         if (props.contains("frame_size"))
398             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Frame size") << props.value("frame_size"));
399
400         if (props.contains("fps")) {
401             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Frame rate") << props.value("fps"));
402             if (!m_view.clip_framerate->isEnabled()) m_view.clip_framerate->setValue(props.value("fps").toDouble());
403         }
404         if (props.contains("aspect_ratio"))
405             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Pixel aspect ratio") << props.value("aspect_ratio"));
406
407         if (props.contains("pix_fmt"))
408             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Pixel format") << props.value("pix_fmt"));
409
410         if (props.contains("colorspace"))
411             new QTreeWidgetItem(m_view.clip_vproperties, QStringList() << i18n("Colorspace") << ProfilesDialog::getColorspaceDescription(props.value("colorspace").toInt()));
412
413         int width = 180.0 * KdenliveSettings::project_display_ratio();
414         if (width % 2 == 1) width++;
415         QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), width, 180);
416         m_view.clip_thumb->setPixmap(pix);
417         if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB);
418     } else {
419         m_view.tabWidget->removeTab(IMAGETAB);
420         m_view.tabWidget->removeTab(SLIDETAB);
421         m_view.tabWidget->removeTab(COLORTAB);
422         m_view.tabWidget->removeTab(VIDEOTAB);
423         m_view.clip_thumb->setHidden(true);
424     }
425
426     if (t != SLIDESHOW && t != COLOR) {
427         KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true);
428         m_view.clip_filesize->setText(KIO::convertSize(f.size()));
429     } else {
430         m_view.clip_filesize->setHidden(true);
431         m_view.label_size->setHidden(true);
432     }
433     m_view.clip_duration->setInputMask("");
434     m_view.clip_duration->setValidator(tc.validator());
435     m_view.clip_duration->setText(tc.getTimecode(m_clip->duration()));
436     if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true);
437     else {
438         connect(m_view.clip_duration, SIGNAL(editingFinished()), this, SLOT(slotCheckMaxLength()));
439         connect(m_view.clip_duration, SIGNAL(textChanged(QString)), this, SLOT(slotModified()));
440     }
441
442     // markers
443     m_view.marker_new->setIcon(KIcon("document-new"));
444     m_view.marker_new->setToolTip(i18n("Add marker"));
445     m_view.marker_edit->setIcon(KIcon("document-properties"));
446     m_view.marker_edit->setToolTip(i18n("Edit marker"));
447     m_view.marker_delete->setIcon(KIcon("trash-empty"));
448     m_view.marker_delete->setToolTip(i18n("Delete marker"));
449
450     slotFillMarkersList();
451     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
452     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
453     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
454     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
455
456     connect(this, SIGNAL(accepted()), this, SLOT(slotApplyProperties()));
457     connect(m_view.buttonBox->button(QDialogButtonBox::Apply), SIGNAL(clicked()), this, SLOT(slotApplyProperties()));
458     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
459     //adjustSize();
460 }
461
462
463 // Used for multiple clips editing
464 ClipProperties::ClipProperties(QList <DocClipBase *>cliplist, Timecode tc, QMap <QString, QString> commonproperties, QWidget * parent) :
465     QDialog(parent),
466     m_clip(NULL),
467     m_tc(tc),
468     m_fps(0),
469     m_count(0),
470     m_clipNeedsRefresh(false),
471     m_clipNeedsReLoad(false)
472 {
473     setFont(KGlobalSettings::toolBarFont());
474     m_view.setupUi(this);
475     QString title = windowTitle();
476     title.append(" " + i18np("(%1 clip)", "(%1 clips)", cliplist.count()));
477     setWindowTitle(title);
478     QMap <QString, QString> props = cliplist.at(0)->properties();
479     m_old_props = commonproperties;
480
481     if (commonproperties.contains("force_aspect_num") && !commonproperties.value("force_aspect_num").isEmpty() && commonproperties.value("force_aspect_den").toInt() > 0) {
482         m_view.clip_force_ar->setChecked(true);
483         m_view.clip_ar_num->setEnabled(true);
484         m_view.clip_ar_den->setEnabled(true);
485         m_view.clip_ar_num->setValue(commonproperties.value("force_aspect_num").toInt());
486         m_view.clip_ar_den->setValue(commonproperties.value("force_aspect_den").toInt());
487     }
488
489     if (commonproperties.contains("force_fps") && !commonproperties.value("force_fps").isEmpty() && commonproperties.value("force_fps").toDouble() > 0) {
490         m_view.clip_force_framerate->setChecked(true);
491         m_view.clip_framerate->setEnabled(true);
492         m_view.clip_framerate->setValue(commonproperties.value("force_fps").toDouble());
493     }
494
495     if (commonproperties.contains("force_progressive") && !commonproperties.value("force_progressive").isEmpty()) {
496         m_view.clip_force_progressive->setChecked(true);
497         m_view.clip_progressive->setEnabled(true);
498         m_view.clip_progressive->setValue(commonproperties.value("force_progressive").toInt());
499     }
500
501     if (commonproperties.contains("force_tff") && !commonproperties.value("force_tff").isEmpty()) {
502         m_view.clip_force_fieldorder->setChecked(true);
503         m_view.clip_fieldorder->setEnabled(true);
504         m_view.clip_fieldorder->setCurrentIndex(commonproperties.value("force_tff").toInt());
505     }
506     
507     if (commonproperties.contains("threads") && !commonproperties.value("threads").isEmpty() && commonproperties.value("threads").toInt() != 1) {
508         m_view.clip_force_threads->setChecked(true);
509         m_view.clip_threads->setEnabled(true);
510         m_view.clip_threads->setValue(commonproperties.value("threads").toInt());
511     }
512
513     if (commonproperties.contains("video_index") && !commonproperties.value("video_index").isEmpty() && commonproperties.value("video_index").toInt() != 0) {
514         m_view.clip_force_vindex->setChecked(true);
515         m_view.clip_vindex->setEnabled(true);
516         m_view.clip_vindex->setValue(commonproperties.value("video_index").toInt());
517     }
518
519     if (commonproperties.contains("audio_index") && !commonproperties.value("audio_index").isEmpty() && commonproperties.value("audio_index").toInt() != 0) {
520         m_view.clip_force_aindex->setChecked(true);
521         m_view.clip_aindex->setEnabled(true);
522         m_view.clip_aindex->setValue(commonproperties.value("audio_index").toInt());
523     }
524
525     if (props.contains("audio_max")) {
526         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
527     }
528
529     if (props.contains("video_max")) {
530         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
531     }
532     
533     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(601), 601);
534     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(709), 709);
535     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(240), 240);
536     
537     if (commonproperties.contains("force_colorspace") && !commonproperties.value("force_colorspace").isEmpty() && commonproperties.value("force_colorspace").toInt() != 0) {
538         m_view.clip_force_colorspace->setChecked(true);
539         m_view.clip_colorspace->setEnabled(true);
540         m_view.clip_colorspace->setCurrentIndex(m_view.clip_colorspace->findData(commonproperties.value("force_colorspace").toInt()));
541     }
542     
543     if (commonproperties.contains("full_luma") && !commonproperties.value("full_luma").isEmpty()) {
544         m_view.clip_full_luma->setChecked(true);
545     }
546     
547     if (commonproperties.contains("transparency")) {
548         // image transparency checkbox
549         int transparency = commonproperties.value("transparency").toInt();
550         if (transparency == 0) {
551             m_view.clip_force_transparency->setChecked(true);
552         }
553         else if (transparency == 1) {
554             m_view.clip_force_transparency->setChecked(true);
555             m_view.clip_transparency->setCurrentIndex(1);
556         }
557     }
558     else {
559         m_view.clip_force_transparency->setHidden(true);
560         m_view.clip_transparency->setHidden(true);
561     }
562     
563
564     connect(m_view.clip_force_transparency, SIGNAL(toggled(bool)), m_view.clip_transparency, SLOT(setEnabled(bool)));
565     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_num, SLOT(setEnabled(bool)));
566     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_den, SLOT(setEnabled(bool)));
567     connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), m_view.clip_progressive, SLOT(setEnabled(bool)));
568     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
569     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
570     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
571     connect(m_view.clip_force_out, SIGNAL(toggled(bool)), m_view.clip_out, SLOT(setEnabled(bool)));
572     connect(m_view.clip_force_colorspace, SIGNAL(toggled(bool)), m_view.clip_colorspace, SLOT(setEnabled(bool)));
573
574     m_view.tabWidget->removeTab(METATAB);
575     m_view.tabWidget->removeTab(MARKERTAB);
576     m_view.tabWidget->removeTab(IMAGETAB);
577     m_view.tabWidget->removeTab(SLIDETAB);
578     m_view.tabWidget->removeTab(COLORTAB);
579     m_view.tabWidget->removeTab(AUDIOTAB);
580     m_view.tabWidget->removeTab(VIDEOTAB);
581
582     m_view.clip_path->setHidden(true);
583     m_view.label_path->setHidden(true);
584     m_view.label_description->setHidden(true);
585     m_view.label_size->setHidden(true);
586     m_view.clip_filesize->setHidden(true);
587     m_view.clip_filesize->setHidden(true);
588     m_view.clip_path->setHidden(true);
589     m_view.clip_description->setHidden(true);
590     m_view.clip_thumb->setHidden(true);
591     m_view.label_duration->setHidden(true);
592     m_view.clip_duration->setHidden(true);
593
594     if (commonproperties.contains("out")) {
595         if (commonproperties.value("out").toInt() > 0) {
596             m_view.clip_force_out->setChecked(true);
597             m_view.clip_out->setText(m_tc.getTimecodeFromFrames(commonproperties.value("out").toInt()));
598         } else m_view.clip_out->setText(KdenliveSettings::image_duration());
599     } else {
600         m_view.clip_force_out->setHidden(true);
601         m_view.clip_out->setHidden(true);
602     }
603 }
604
605 ClipProperties::~ClipProperties()
606 {
607     QAbstractItemDelegate *del1 = m_view.clip_vproperties->itemDelegate();
608     if (del1) delete del1;
609     QAbstractItemDelegate *del2 = m_view.clip_aproperties->itemDelegate();
610     if (del2) delete del2;
611 }
612
613 void ClipProperties::slotApplyProperties()
614 {
615     if (m_clip != NULL)
616         emit applyNewClipProperties(m_clip->getId(), m_clip->properties(), properties(), needsTimelineRefresh(), needsTimelineReload());
617     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
618 }
619
620 void ClipProperties::disableClipId(const QString &id)
621 {
622     if (m_clip && m_view.buttonBox->button(QDialogButtonBox::Ok)->isEnabled()) {
623         if (m_clip->getId() == id) {
624             // clip was removed from project, close this properties dialog
625             close();
626         }
627     }
628 }
629
630 void ClipProperties::slotModified()
631 {
632     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(true);
633 }
634
635
636 void ClipProperties::slotEnableLuma(int state)
637 {
638     bool enable = false;
639     if (state == Qt::Checked) enable = true;
640     m_view.luma_duration->setEnabled(enable);
641     m_view.luma_duration_frames->setEnabled(enable);
642     m_view.slide_luma->setEnabled(enable);
643     if (enable) {
644         m_view.luma_file->setEnabled(m_view.slide_luma->isChecked());
645     } else m_view.luma_file->setEnabled(false);
646     m_view.label_softness->setEnabled(m_view.slide_luma->isChecked() && enable);
647     m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled());
648 }
649
650 void ClipProperties::slotEnableLumaFile(int state)
651 {
652     bool enable = false;
653     if (state == Qt::Checked) enable = true;
654     m_view.luma_file->setEnabled(enable);
655     m_view.luma_softness->setEnabled(enable);
656     m_view.label_softness->setEnabled(enable);
657 }
658
659 void ClipProperties::slotFillMarkersList()
660 {
661     m_view.markers_list->clear();
662     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
663     for (int count = 0; count < marks.count(); ++count) {
664         QString time = m_tc.getTimecode(marks[count].time());
665         QStringList itemtext;
666         itemtext << time << marks[count].comment();
667         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
668     }
669 }
670
671 void ClipProperties::slotAddMarker()
672 {
673     CommentedTime marker(GenTime(), i18n("Marker"));
674     MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this);
675     if (d.exec() == QDialog::Accepted) {
676         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
677     }
678     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
679 }
680
681 void ClipProperties::slotEditMarker()
682 {
683     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
684     int pos = m_view.markers_list->currentIndex().row();
685     if (pos < 0 || pos > marks.count() - 1) return;
686     MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this);
687     if (d.exec() == QDialog::Accepted) {
688         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
689     }
690     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
691 }
692
693 void ClipProperties::slotDeleteMarker()
694 {
695     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
696     int pos = m_view.markers_list->currentIndex().row();
697     if (pos < 0 || pos > marks.count() - 1) return;
698     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
699
700     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
701 }
702
703 const QString &ClipProperties::clipId() const
704 {
705     return m_clip->getId();
706 }
707
708
709 QMap <QString, QString> ClipProperties::properties()
710 {
711     QMap <QString, QString> props;
712     QLocale locale;
713     CLIPTYPE t = UNKNOWN;
714     if (m_clip != NULL) {
715         t = m_clip->clipType();
716         m_old_props = m_clip->properties();
717     }
718
719     int aspectNumerator = m_view.clip_ar_num->value();
720     int aspectDenominator = m_view.clip_ar_den->value();
721     if (m_view.clip_force_ar->isChecked()) {
722         if (aspectNumerator != m_old_props.value("force_aspect_num").toInt() ||
723             aspectDenominator != m_old_props.value("force_aspect_den").toInt()) {
724             props["force_aspect_num"] = QString::number(aspectNumerator);
725             props["force_aspect_den"] = QString::number(aspectDenominator);
726             props["force_aspect_ratio"].clear();
727             m_clipNeedsRefresh = true;
728         }
729     } else {
730         if (m_old_props.contains("force_aspect_num") && !m_old_props.value("force_aspect_num").isEmpty()) {
731             props["force_aspect_num"].clear();
732             m_clipNeedsRefresh = true;
733         }
734         if (m_old_props.contains("force_aspect_den") && !m_old_props.value("force_aspect_den").isEmpty()) {
735             props["force_aspect_den"].clear();
736             m_clipNeedsRefresh = true;
737         }
738     }
739
740     double fps = m_view.clip_framerate->value();
741     if (m_view.clip_force_framerate->isChecked()) {
742         if (fps != m_old_props.value("force_fps").toDouble()) {
743             props["force_fps"] = locale.toString(fps);
744             m_clipNeedsRefresh = true;
745         }
746     } else if (m_old_props.contains("force_fps") && !m_old_props.value("force_fps").isEmpty()) {
747         props["force_fps"].clear();
748         m_clipNeedsRefresh = true;
749     }
750
751     int progressive = m_view.clip_progressive->value();
752     if (m_view.clip_force_progressive->isChecked()) {
753         if (progressive != m_old_props.value("force_progressive").toInt()) {
754             props["force_progressive"] = QString::number(progressive);
755         }
756     } else if (m_old_props.contains("force_progressive") && !m_old_props.value("force_progressive").isEmpty()) {
757         props["force_progressive"].clear();
758     }
759
760     int fieldOrder = m_view.clip_fieldorder->currentIndex();
761     if (m_view.clip_force_fieldorder->isChecked()) {
762         if (fieldOrder != m_old_props.value("force_tff").toInt()) {
763             props["force_tff"] = QString::number(fieldOrder);
764         }
765     } else if (m_old_props.contains("force_tff") && !m_old_props.value("force_tff").isEmpty()) {
766         props["force_tff"].clear();
767     }
768
769     int threads = m_view.clip_threads->value();
770     if (m_view.clip_force_threads->isChecked()) {
771         if (threads != m_old_props.value("threads").toInt()) {
772             props["threads"] = QString::number(threads);
773         }
774     } else if (m_old_props.contains("threads") && !m_old_props.value("threads").isEmpty()) {
775         props["threads"].clear();
776     }
777
778     int vindex = m_view.clip_vindex->value();
779     if (m_view.clip_force_vindex->isChecked()) {
780         if (vindex != m_old_props.value("video_index").toInt()) {
781             props["video_index"] = QString::number(vindex);
782         }
783     } else if (m_old_props.contains("video_index") && !m_old_props.value("video_index").isEmpty()) {
784         props["video_index"].clear();
785     }
786
787     int aindex = m_view.clip_aindex->value();
788     if (m_view.clip_force_aindex->isChecked()) {
789         if (aindex != m_old_props.value("audio_index").toInt()) {
790             props["audio_index"] = QString::number(aindex);
791         }
792     } else if (m_old_props.contains("audio_index") && !m_old_props.value("audio_index").isEmpty()) {
793         props["audio_index"].clear();
794     }
795     
796     int colorspace = m_view.clip_colorspace->itemData(m_view.clip_colorspace->currentIndex()).toInt();
797     if (m_view.clip_force_colorspace->isChecked()) {
798         if (colorspace != m_old_props.value("force_colorspace").toInt()) {
799             props["force_colorspace"] = QString::number(colorspace);
800             m_clipNeedsRefresh = true;
801         }
802     } else if (m_old_props.contains("force_colorspace") && !m_old_props.value("force_colorspace").isEmpty()) {
803         props["force_colorspace"].clear();
804         m_clipNeedsRefresh = true;
805     }
806
807     if (m_view.clip_full_luma->isChecked()) {
808         props["full_luma"] = QString::number(1);
809         m_clipNeedsRefresh = true;
810     } else if (m_old_props.contains("full_luma") && !m_old_props.value("full_luma").isEmpty()) {
811         props["full_luma"].clear();
812         m_clipNeedsRefresh = true;
813     }
814     
815     if (m_view.clip_force_transparency->isChecked()) {
816         QString transp = QString::number(m_view.clip_transparency->currentIndex());
817         if (transp != m_old_props.value("transparency")) props["transparency"] = transp;
818     }
819
820     // If we adjust several clips, return now
821     if (m_clip == NULL) {
822         if (m_view.clip_out->isEnabled()) {
823             int duration = m_tc.getFrameCount(m_view.clip_out->text());
824             if (duration != m_old_props.value("out").toInt()) {
825                 props["out"] = QString::number(duration - 1);
826             }
827         }
828         return props;
829     }
830
831     if (m_old_props.value("description") != m_view.clip_description->text())
832         props["description"] = m_view.clip_description->text();
833
834     if (t == COLOR) {
835         QString new_color = m_view.clip_color->color().name();
836         if (new_color != QString('#' + m_old_props.value("colour").right(8).left(6))) {
837             m_clipNeedsRefresh = true;
838             props["colour"] = "0x" + new_color.right(6) + "ff";
839         }
840         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
841         if (duration != m_clip->duration().frames(m_fps)) {
842             props["out"] = QString::number(duration - 1);
843         }
844     } else if (t == IMAGE) {
845         if ((int) m_view.image_transparency->isChecked() != m_old_props.value("transparency").toInt()) {
846             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
847             //m_clipNeedsRefresh = true;
848         }
849         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
850         if (duration != m_clip->duration().frames(m_fps)) {
851             props["out"] = QString::number(duration - 1);
852         }
853     } else if (t == SLIDESHOW) {
854         QString value = QString::number((int) m_view.slide_loop->isChecked());
855         if (m_old_props.value("loop") != value) props["loop"] = value;
856         value = QString::number((int) m_view.slide_crop->isChecked());
857         if (m_old_props.value("crop") != value) props["crop"] = value;
858         value = QString::number((int) m_view.slide_fade->isChecked());
859         if (m_old_props.value("fade") != value) props["fade"] = value;
860         value = QString::number((int) m_view.luma_softness->value());
861         if (m_old_props.value("softness") != value) props["softness"] = value;
862
863         bool isMime = !(m_view.clip_path->text().contains('%'));
864         if (isMime) {
865             QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
866             QString new_path = m_view.clip_path->text() + extension;
867             if (new_path != m_old_props.value("resource")) {
868                 m_clipNeedsReLoad = true;
869                 props["resource"] = new_path;
870                 kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << m_old_props.value("resource");
871             }
872         }
873         int duration;
874         if (m_view.slide_duration_format->currentIndex() == 1) {
875             // we are in frames mode
876             duration = m_view.slide_duration_frames->value();
877         } else duration = m_tc.getFrameCount(m_view.slide_duration->text());
878         if (duration != m_old_props.value("ttl").toInt()) {
879             m_clipNeedsRefresh = true;
880             props["ttl"] = QString::number(duration);
881             props["length"] = QString::number(duration * m_count);
882         }
883
884         if (duration * m_count - 1 != m_old_props.value("out").toInt()) {
885             m_clipNeedsRefresh = true;
886             props["out"] = QString::number(duration * m_count - 1);
887         }
888         if (m_view.slide_fade->isChecked()) {
889             int luma_duration;
890             if (m_view.slide_duration_format->currentIndex() == 1) {
891                 // we are in frames mode
892                 luma_duration = m_view.luma_duration_frames->value();
893             } else luma_duration = m_tc.getFrameCount(m_view.luma_duration->text());
894             if (luma_duration != m_old_props.value("luma_duration").toInt()) {
895                 m_clipNeedsRefresh = true;
896                 props["luma_duration"] = QString::number(luma_duration);
897             }
898             QString lumaFile;
899             if (m_view.slide_luma->isChecked())
900                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
901             if (lumaFile != m_old_props.value("luma_file")) {
902                 m_clipNeedsRefresh = true;
903                 props["luma_file"] = lumaFile;
904             }
905         } else {
906             if (!m_old_props.value("luma_file").isEmpty()) {
907                 props["luma_file"].clear();
908             }
909         }
910
911         QString animation = m_view.animation->itemData(m_view.animation->currentIndex()).toString();
912         if (animation != m_old_props.value("animation")) {
913             if (animation.isEmpty()) {
914                 props["animation"].clear();
915             } else {
916                 props["animation"] = animation;
917             }
918             m_clipNeedsRefresh = true;
919         }
920     }
921     return props;
922 }
923
924 bool ClipProperties::needsTimelineRefresh() const
925 {
926     return m_clipNeedsRefresh;
927 }
928
929 bool ClipProperties::needsTimelineReload() const
930 {
931     return m_clipNeedsReLoad;
932 }
933
934
935 void ClipProperties::parseFolder()
936 {
937     QString path = m_view.clip_path->text();
938     bool isMime = !(path.contains('%'));
939     if (!isMime) path = KUrl(path).directory();
940     QDir dir(path);
941
942     QStringList filters;
943     QString extension;
944
945     if (isMime) {
946         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
947         filters << "*." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
948         extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
949         dir.setNameFilters(filters);
950     }
951
952     QStringList result = dir.entryList(QDir::Files);
953
954     if (!isMime) {
955         // find pattern
956         QString filter = KUrl(m_view.clip_path->text()).fileName();
957         QString ext = filter.section('.', -1);
958         filter = filter.section('%', 0, -2);
959         QString regexp = "^" + filter + "\\d+\\." + ext + "$";
960         QRegExp rx(regexp);
961         QStringList entries;
962         foreach(const QString & path, result) {
963             if (rx.exactMatch(path)) entries << path;
964         }
965         result = entries;
966     }
967
968     m_count = result.count();
969     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(m_count > 0);
970     if (m_count == 0) {
971         // no images, do not accept that
972         m_view.slide_info->setText(i18n("No image found"));
973         m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
974         return;
975     }
976     m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
977     m_view.slide_info->setText(i18np("1 image found", "%1 images found", m_count));
978     QDomElement xml = m_clip->toXML();
979     xml.setAttribute("resource", m_view.clip_path->text() + extension);
980     int width = 180.0 * KdenliveSettings::project_display_ratio();
981     if (width % 2 == 1) width++;
982     QString filePath = m_view.clip_path->text();
983     if (isMime) filePath.append(extension);
984     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(filePath), 1, width, 180);
985     QMap <QString, QString> props = m_clip->properties();
986     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
987     m_view.clip_thumb->setPixmap(pix);
988 }
989
990 void ClipProperties::slotCheckMaxLength()
991 {
992     if (m_clip->maxDuration() == GenTime()) return;
993     int duration = m_tc.getFrameCount(m_view.clip_duration->text());
994     if (duration > m_clip->maxDuration().frames(m_fps)) {
995         m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration()));
996     }
997 }
998
999 void ClipProperties::slotUpdateDurationFormat(int ix)
1000 {
1001     bool framesFormat = ix == 1;
1002     if (framesFormat) {
1003         // switching to frames count, update widget
1004         m_view.slide_duration_frames->setValue(m_tc.getFrameCount(m_view.slide_duration->text()));
1005         m_view.luma_duration_frames->setValue(m_tc.getFrameCount(m_view.luma_duration->text()));
1006         m_view.slide_duration->setHidden(true);
1007         m_view.luma_duration->setHidden(true);
1008         m_view.slide_duration_frames->setHidden(false);
1009         m_view.luma_duration_frames->setHidden(false);
1010     } else {
1011         // switching to timecode format
1012         m_view.slide_duration->setText(m_tc.getTimecodeFromFrames(m_view.slide_duration_frames->value()));
1013         m_view.luma_duration->setText(m_tc.getTimecodeFromFrames(m_view.luma_duration_frames->value()));
1014         m_view.slide_duration_frames->setHidden(true);
1015         m_view.luma_duration_frames->setHidden(true);
1016         m_view.slide_duration->setHidden(false);
1017         m_view.luma_duration->setHidden(false);
1018     }
1019 }
1020
1021 void ClipProperties::slotDeleteProxy()
1022 {
1023       QString proxy = m_clip->getProperty("proxy");
1024       if (proxy.isEmpty()) return;
1025       emit deleteProxy(proxy);
1026       if (m_proxyContainer) delete m_proxyContainer;
1027 }
1028
1029 #include "clipproperties.moc"
1030
1031
1032