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