]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
59dfe0c203db8302abb58b8b6fc0fa023391e4a7
[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             QGridLayout *l = static_cast<QGridLayout *>(layout());
479             QString ltype = res.property(Nepomuk::Vocabulary::NIE::licenseType()).toString();
480             m_view.clip_license->setText(i18n("License: %1", res.property(Nepomuk::Vocabulary::NIE::license()).toString()));
481             if (ltype.startsWith("http")) {
482                 m_view.clip_license->setUrl(ltype);
483                 connect(m_view.clip_license, SIGNAL(leftClickedUrl(const QString &)), this, SLOT(slotOpenUrl(const QString &)));
484             }
485         }
486         else m_view.clip_license->setHidden(true);
487     }
488     else m_view.clip_license->setHidden(true);
489 #else
490     m_view.clip_license->setHidden(true);
491 #endif
492 #else
493     m_view.clip_license->setHidden(true);
494 #endif
495     
496     slotFillMarkersList();
497     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
498     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
499     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
500     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
501
502     connect(this, SIGNAL(accepted()), this, SLOT(slotApplyProperties()));
503     connect(m_view.buttonBox->button(QDialogButtonBox::Apply), SIGNAL(clicked()), this, SLOT(slotApplyProperties()));
504     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
505     adjustSize();
506 }
507
508
509 // Used for multiple clips editing
510 ClipProperties::ClipProperties(QList <DocClipBase *>cliplist, Timecode tc, QMap <QString, QString> commonproperties, QWidget * parent) :
511     QDialog(parent),
512     m_clip(NULL),
513     m_tc(tc),
514     m_fps(0),
515     m_count(0),
516     m_clipNeedsRefresh(false),
517     m_clipNeedsReLoad(false)
518 {
519     setFont(KGlobalSettings::toolBarFont());
520     m_view.setupUi(this);
521     QString title = windowTitle();
522     title.append(" " + i18np("(%1 clip)", "(%1 clips)", cliplist.count()));
523     setWindowTitle(title);
524     QMap <QString, QString> props = cliplist.at(0)->properties();
525     m_old_props = commonproperties;
526
527     if (commonproperties.contains("force_aspect_num") && !commonproperties.value("force_aspect_num").isEmpty() && commonproperties.value("force_aspect_den").toInt() > 0) {
528         m_view.clip_force_ar->setChecked(true);
529         m_view.clip_ar_num->setEnabled(true);
530         m_view.clip_ar_den->setEnabled(true);
531         m_view.clip_ar_num->setValue(commonproperties.value("force_aspect_num").toInt());
532         m_view.clip_ar_den->setValue(commonproperties.value("force_aspect_den").toInt());
533     }
534
535     if (commonproperties.contains("force_fps") && !commonproperties.value("force_fps").isEmpty() && commonproperties.value("force_fps").toDouble() > 0) {
536         m_view.clip_force_framerate->setChecked(true);
537         m_view.clip_framerate->setEnabled(true);
538         m_view.clip_framerate->setValue(commonproperties.value("force_fps").toDouble());
539     }
540
541     if (commonproperties.contains("force_progressive") && !commonproperties.value("force_progressive").isEmpty()) {
542         m_view.clip_force_progressive->setChecked(true);
543         m_view.clip_progressive->setEnabled(true);
544         m_view.clip_progressive->setValue(commonproperties.value("force_progressive").toInt());
545     }
546
547     if (commonproperties.contains("force_tff") && !commonproperties.value("force_tff").isEmpty()) {
548         m_view.clip_force_fieldorder->setChecked(true);
549         m_view.clip_fieldorder->setEnabled(true);
550         m_view.clip_fieldorder->setCurrentIndex(commonproperties.value("force_tff").toInt());
551     }
552     
553     if (commonproperties.contains("threads") && !commonproperties.value("threads").isEmpty() && commonproperties.value("threads").toInt() != 1) {
554         m_view.clip_force_threads->setChecked(true);
555         m_view.clip_threads->setEnabled(true);
556         m_view.clip_threads->setValue(commonproperties.value("threads").toInt());
557     }
558
559     if (commonproperties.contains("video_index") && !commonproperties.value("video_index").isEmpty() && commonproperties.value("video_index").toInt() != 0) {
560         m_view.clip_force_vindex->setChecked(true);
561         m_view.clip_vindex->setEnabled(true);
562         m_view.clip_vindex->setValue(commonproperties.value("video_index").toInt());
563     }
564
565     if (commonproperties.contains("audio_index") && !commonproperties.value("audio_index").isEmpty() && commonproperties.value("audio_index").toInt() != 0) {
566         m_view.clip_force_aindex->setChecked(true);
567         m_view.clip_aindex->setEnabled(true);
568         m_view.clip_aindex->setValue(commonproperties.value("audio_index").toInt());
569     }
570
571     if (props.contains("audio_max")) {
572         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
573     }
574
575     if (props.contains("video_max")) {
576         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
577     }
578     
579     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(601), 601);
580     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(709), 709);
581     m_view.clip_colorspace->addItem(ProfilesDialog::getColorspaceDescription(240), 240);
582     
583     if (commonproperties.contains("force_colorspace") && !commonproperties.value("force_colorspace").isEmpty() && commonproperties.value("force_colorspace").toInt() != 0) {
584         m_view.clip_force_colorspace->setChecked(true);
585         m_view.clip_colorspace->setEnabled(true);
586         m_view.clip_colorspace->setCurrentIndex(m_view.clip_colorspace->findData(commonproperties.value("force_colorspace").toInt()));
587     }
588     
589     if (commonproperties.contains("full_luma") && !commonproperties.value("full_luma").isEmpty()) {
590         m_view.clip_full_luma->setChecked(true);
591     }
592     
593     if (commonproperties.contains("transparency")) {
594         // image transparency checkbox
595         int transparency = commonproperties.value("transparency").toInt();
596         if (transparency == 0) {
597             m_view.clip_force_transparency->setChecked(true);
598         }
599         else if (transparency == 1) {
600             m_view.clip_force_transparency->setChecked(true);
601             m_view.clip_transparency->setCurrentIndex(1);
602         }
603     }
604     else {
605         m_view.clip_force_transparency->setHidden(true);
606         m_view.clip_transparency->setHidden(true);
607     }
608     
609
610     connect(m_view.clip_force_transparency, SIGNAL(toggled(bool)), m_view.clip_transparency, SLOT(setEnabled(bool)));
611     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_num, SLOT(setEnabled(bool)));
612     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar_den, SLOT(setEnabled(bool)));
613     connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), m_view.clip_progressive, SLOT(setEnabled(bool)));
614     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
615     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
616     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
617     connect(m_view.clip_force_out, SIGNAL(toggled(bool)), m_view.clip_out, SLOT(setEnabled(bool)));
618     connect(m_view.clip_force_colorspace, SIGNAL(toggled(bool)), m_view.clip_colorspace, SLOT(setEnabled(bool)));
619
620     m_view.tabWidget->removeTab(METATAB);
621     m_view.tabWidget->removeTab(MARKERTAB);
622     m_view.tabWidget->removeTab(IMAGETAB);
623     m_view.tabWidget->removeTab(SLIDETAB);
624     m_view.tabWidget->removeTab(COLORTAB);
625     m_view.tabWidget->removeTab(AUDIOTAB);
626     m_view.tabWidget->removeTab(VIDEOTAB);
627
628     m_view.clip_path->setHidden(true);
629     m_view.label_path->setHidden(true);
630     m_view.label_description->setHidden(true);
631     m_view.label_size->setHidden(true);
632     m_view.clip_filesize->setHidden(true);
633     m_view.clip_filesize->setHidden(true);
634     m_view.clip_path->setHidden(true);
635     m_view.clip_description->setHidden(true);
636     m_view.clip_thumb->setHidden(true);
637     m_view.label_duration->setHidden(true);
638     m_view.clip_duration->setHidden(true);
639
640     if (commonproperties.contains("out")) {
641         if (commonproperties.value("out").toInt() > 0) {
642             m_view.clip_force_out->setChecked(true);
643             m_view.clip_out->setText(m_tc.getTimecodeFromFrames(commonproperties.value("out").toInt()));
644         } else m_view.clip_out->setText(KdenliveSettings::image_duration());
645     } else {
646         m_view.clip_force_out->setHidden(true);
647         m_view.clip_out->setHidden(true);
648     }
649 }
650
651 ClipProperties::~ClipProperties()
652 {
653     QAbstractItemDelegate *del1 = m_view.clip_vproperties->itemDelegate();
654     if (del1) delete del1;
655     QAbstractItemDelegate *del2 = m_view.clip_aproperties->itemDelegate();
656     if (del2) delete del2;
657 }
658
659 void ClipProperties::slotApplyProperties()
660 {
661     if (m_clip != NULL) {
662         QMap <QString, QString> props = properties();
663         emit applyNewClipProperties(m_clip->getId(), m_clip->currentProperties(props), props, needsTimelineRefresh(), needsTimelineReload());
664     }
665     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
666 }
667
668 void ClipProperties::disableClipId(const QString &id)
669 {
670     if (m_clip && m_view.buttonBox->button(QDialogButtonBox::Ok)->isEnabled()) {
671         if (m_clip->getId() == id) {
672             // clip was removed from project, close this properties dialog
673             close();
674         }
675     }
676 }
677
678 void ClipProperties::slotModified()
679 {
680     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(true);
681 }
682
683
684 void ClipProperties::slotEnableLuma(int state)
685 {
686     bool enable = false;
687     if (state == Qt::Checked) enable = true;
688     m_view.luma_duration->setEnabled(enable);
689     m_view.luma_duration_frames->setEnabled(enable);
690     m_view.slide_luma->setEnabled(enable);
691     if (enable) {
692         m_view.luma_file->setEnabled(m_view.slide_luma->isChecked());
693     } else m_view.luma_file->setEnabled(false);
694     m_view.label_softness->setEnabled(m_view.slide_luma->isChecked() && enable);
695     m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled());
696 }
697
698 void ClipProperties::slotEnableLumaFile(int state)
699 {
700     bool enable = false;
701     if (state == Qt::Checked) enable = true;
702     m_view.luma_file->setEnabled(enable);
703     m_view.luma_softness->setEnabled(enable);
704     m_view.label_softness->setEnabled(enable);
705 }
706
707 void ClipProperties::slotFillMarkersList()
708 {
709     m_view.markers_list->clear();
710     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
711     for (int count = 0; count < marks.count(); ++count) {
712         QString time = m_tc.getTimecode(marks[count].time());
713         QStringList itemtext;
714         itemtext << time << marks[count].comment();
715         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
716     }
717 }
718
719 void ClipProperties::slotAddMarker()
720 {
721     CommentedTime marker(GenTime(), i18n("Marker"));
722     MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this);
723     if (d.exec() == QDialog::Accepted) {
724         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
725     }
726     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
727 }
728
729 void ClipProperties::slotEditMarker()
730 {
731     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
732     int pos = m_view.markers_list->currentIndex().row();
733     if (pos < 0 || pos > marks.count() - 1) return;
734     MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this);
735     if (d.exec() == QDialog::Accepted) {
736         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
737     }
738     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
739 }
740
741 void ClipProperties::slotDeleteMarker()
742 {
743     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
744     int pos = m_view.markers_list->currentIndex().row();
745     if (pos < 0 || pos > marks.count() - 1) return;
746     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
747
748     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
749 }
750
751 const QString &ClipProperties::clipId() const
752 {
753     return m_clip->getId();
754 }
755
756
757 QMap <QString, QString> ClipProperties::properties()
758 {
759     QMap <QString, QString> props;
760     QLocale locale;
761     CLIPTYPE t = UNKNOWN;
762     if (m_clip != NULL) {
763         t = m_clip->clipType();
764         m_old_props = m_clip->properties();
765     }
766
767     int aspectNumerator = m_view.clip_ar_num->value();
768     int aspectDenominator = m_view.clip_ar_den->value();
769     if (m_view.clip_force_ar->isChecked()) {
770         if (aspectNumerator != m_old_props.value("force_aspect_num").toInt() ||
771             aspectDenominator != m_old_props.value("force_aspect_den").toInt()) {
772             props["force_aspect_num"] = QString::number(aspectNumerator);
773             props["force_aspect_den"] = QString::number(aspectDenominator);
774             props["force_aspect_ratio"].clear();
775             m_clipNeedsRefresh = true;
776         }
777     } else {
778         if (m_old_props.contains("force_aspect_num") && !m_old_props.value("force_aspect_num").isEmpty()) {
779             props["force_aspect_num"].clear();
780             m_clipNeedsRefresh = true;
781         }
782         if (m_old_props.contains("force_aspect_den") && !m_old_props.value("force_aspect_den").isEmpty()) {
783             props["force_aspect_den"].clear();
784             m_clipNeedsRefresh = true;
785         }
786     }
787
788     double fps = m_view.clip_framerate->value();
789     if (m_view.clip_force_framerate->isChecked()) {
790         if (fps != m_old_props.value("force_fps").toDouble()) {
791             props["force_fps"] = locale.toString(fps);
792             m_clipNeedsRefresh = true;
793         }
794     } else if (m_old_props.contains("force_fps") && !m_old_props.value("force_fps").isEmpty()) {
795         props["force_fps"].clear();
796         m_clipNeedsRefresh = true;
797     }
798
799     int progressive = m_view.clip_progressive->value();
800     if (m_view.clip_force_progressive->isChecked()) {
801         if (progressive != m_old_props.value("force_progressive").toInt()) {
802             props["force_progressive"] = QString::number(progressive);
803         }
804     } else if (m_old_props.contains("force_progressive") && !m_old_props.value("force_progressive").isEmpty()) {
805         props["force_progressive"].clear();
806     }
807
808     int fieldOrder = m_view.clip_fieldorder->currentIndex();
809     if (m_view.clip_force_fieldorder->isChecked()) {
810         if (fieldOrder != m_old_props.value("force_tff").toInt()) {
811             props["force_tff"] = QString::number(fieldOrder);
812         }
813     } else if (m_old_props.contains("force_tff") && !m_old_props.value("force_tff").isEmpty()) {
814         props["force_tff"].clear();
815     }
816
817     int threads = m_view.clip_threads->value();
818     if (m_view.clip_force_threads->isChecked()) {
819         if (threads != m_old_props.value("threads").toInt()) {
820             props["threads"] = QString::number(threads);
821         }
822     } else if (m_old_props.contains("threads") && !m_old_props.value("threads").isEmpty()) {
823         props["threads"].clear();
824     }
825
826     int vindex = m_view.clip_vindex->value();
827     if (m_view.clip_force_vindex->isChecked()) {
828         if (vindex != m_old_props.value("video_index").toInt()) {
829             props["video_index"] = QString::number(vindex);
830         }
831     } else if (m_old_props.contains("video_index") && !m_old_props.value("video_index").isEmpty()) {
832         props["video_index"].clear();
833     }
834
835     int aindex = m_view.clip_aindex->value();
836     if (m_view.clip_force_aindex->isChecked()) {
837         if (aindex != m_old_props.value("audio_index").toInt()) {
838             props["audio_index"] = QString::number(aindex);
839         }
840     } else if (m_old_props.contains("audio_index") && !m_old_props.value("audio_index").isEmpty()) {
841         props["audio_index"].clear();
842     }
843     
844     int colorspace = m_view.clip_colorspace->itemData(m_view.clip_colorspace->currentIndex()).toInt();
845     if (m_view.clip_force_colorspace->isChecked()) {
846         if (colorspace != m_old_props.value("force_colorspace").toInt()) {
847             props["force_colorspace"] = QString::number(colorspace);
848             m_clipNeedsRefresh = true;
849         }
850     } else if (m_old_props.contains("force_colorspace") && !m_old_props.value("force_colorspace").isEmpty()) {
851         props["force_colorspace"].clear();
852         m_clipNeedsRefresh = true;
853     }
854
855     if (m_view.clip_full_luma->isChecked()) {
856         props["full_luma"] = QString::number(1);
857         m_clipNeedsRefresh = true;
858     } else if (m_old_props.contains("full_luma") && !m_old_props.value("full_luma").isEmpty()) {
859         props["full_luma"].clear();
860         m_clipNeedsRefresh = true;
861     }
862     
863     if (m_view.clip_force_transparency->isChecked()) {
864         QString transp = QString::number(m_view.clip_transparency->currentIndex());
865         if (transp != m_old_props.value("transparency")) props["transparency"] = transp;
866     }
867
868     // If we adjust several clips, return now
869     if (m_clip == NULL) {
870         if (m_view.clip_out->isEnabled()) {
871             int duration = m_tc.getFrameCount(m_view.clip_out->text());
872             if (duration != m_old_props.value("out").toInt()) {
873                 props["out"] = QString::number(duration - 1);
874             }
875         }
876         return props;
877     }
878
879     if (m_old_props.value("description") != m_view.clip_description->text())
880         props["description"] = m_view.clip_description->text();
881
882     if (t == COLOR) {
883         QString new_color = m_view.clip_color->color().name();
884         if (new_color != QString('#' + m_old_props.value("colour").right(8).left(6))) {
885             m_clipNeedsRefresh = true;
886             props["colour"] = "0x" + new_color.right(6) + "ff";
887         }
888         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
889         if (duration != m_clip->duration().frames(m_fps)) {
890             props["out"] = QString::number(duration - 1);
891         }
892     } else if (t == IMAGE) {
893         if ((int) m_view.image_transparency->isChecked() != m_old_props.value("transparency").toInt()) {
894             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
895             //m_clipNeedsRefresh = true;
896         }
897         int duration = m_tc.getFrameCount(m_view.clip_duration->text());
898         if (duration != m_clip->duration().frames(m_fps)) {
899             props["out"] = QString::number(duration - 1);
900         }
901     } else if (t == SLIDESHOW) {
902         QString value = QString::number((int) m_view.slide_loop->isChecked());
903         if (m_old_props.value("loop") != value) props["loop"] = value;
904         value = QString::number((int) m_view.slide_crop->isChecked());
905         if (m_old_props.value("crop") != value) props["crop"] = value;
906         value = QString::number((int) m_view.slide_fade->isChecked());
907         if (m_old_props.value("fade") != value) props["fade"] = value;
908         value = QString::number((int) m_view.luma_softness->value());
909         if (m_old_props.value("softness") != value) props["softness"] = value;
910
911         bool isMime = !(m_view.clip_path->text().contains('%'));
912         if (isMime) {
913             QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
914             QString new_path = m_view.clip_path->text() + extension;
915             if (new_path != m_old_props.value("resource")) {
916                 m_clipNeedsReLoad = true;
917                 props["resource"] = new_path;
918                 kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << m_old_props.value("resource");
919             }
920         }
921         int duration;
922         if (m_view.slide_duration_format->currentIndex() == 1) {
923             // we are in frames mode
924             duration = m_view.slide_duration_frames->value();
925         } else duration = m_tc.getFrameCount(m_view.slide_duration->text());
926         if (duration != m_old_props.value("ttl").toInt()) {
927             m_clipNeedsRefresh = true;
928             props["ttl"] = QString::number(duration);
929             props["length"] = QString::number(duration * m_count);
930         }
931
932         if (duration * m_count - 1 != m_old_props.value("out").toInt()) {
933             m_clipNeedsRefresh = true;
934             props["out"] = QString::number(duration * m_count - 1);
935         }
936         if (m_view.slide_fade->isChecked()) {
937             int luma_duration;
938             if (m_view.slide_duration_format->currentIndex() == 1) {
939                 // we are in frames mode
940                 luma_duration = m_view.luma_duration_frames->value();
941             } else luma_duration = m_tc.getFrameCount(m_view.luma_duration->text());
942             if (luma_duration != m_old_props.value("luma_duration").toInt()) {
943                 m_clipNeedsRefresh = true;
944                 props["luma_duration"] = QString::number(luma_duration);
945             }
946             QString lumaFile;
947             if (m_view.slide_luma->isChecked())
948                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
949             if (lumaFile != m_old_props.value("luma_file")) {
950                 m_clipNeedsRefresh = true;
951                 props["luma_file"] = lumaFile;
952             }
953         } else {
954             if (!m_old_props.value("luma_file").isEmpty()) {
955                 props["luma_file"].clear();
956             }
957         }
958
959         QString animation = m_view.animation->itemData(m_view.animation->currentIndex()).toString();
960         if (animation != m_old_props.value("animation")) {
961             if (animation.isEmpty()) {
962                 props["animation"].clear();
963             } else {
964                 props["animation"] = animation;
965             }
966             m_clipNeedsRefresh = true;
967         }
968     }
969     return props;
970 }
971
972 bool ClipProperties::needsTimelineRefresh() const
973 {
974     return m_clipNeedsRefresh;
975 }
976
977 bool ClipProperties::needsTimelineReload() const
978 {
979     return m_clipNeedsReLoad;
980 }
981
982
983 void ClipProperties::parseFolder()
984 {
985     QString path = m_view.clip_path->text();
986     bool isMime = !(path.contains('%'));
987     if (!isMime) path = KUrl(path).directory();
988     QDir dir(path);
989
990     QStringList filters;
991     QString extension;
992
993     if (isMime) {
994         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
995         filters << "*." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
996         extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
997         dir.setNameFilters(filters);
998     }
999
1000     QStringList result = dir.entryList(QDir::Files);
1001
1002     if (!isMime) {
1003         // find pattern
1004         QString filter = KUrl(m_view.clip_path->text()).fileName();
1005         QString ext = filter.section('.', -1);
1006         filter = filter.section('%', 0, -2);
1007         QString regexp = "^" + filter + "\\d+\\." + ext + "$";
1008         QRegExp rx(regexp);
1009         QStringList entries;
1010         foreach(const QString & path, result) {
1011             if (rx.exactMatch(path)) entries << path;
1012         }
1013         result = entries;
1014     }
1015
1016     m_count = result.count();
1017     m_view.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(m_count > 0);
1018     if (m_count == 0) {
1019         // no images, do not accept that
1020         m_view.slide_info->setText(i18n("No image found"));
1021         m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
1022         return;
1023     }
1024     m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
1025     m_view.slide_info->setText(i18np("1 image found", "%1 images found", m_count));
1026     QDomElement xml = m_clip->toXML();
1027     xml.setAttribute("resource", m_view.clip_path->text() + extension);
1028     int width = 180.0 * KdenliveSettings::project_display_ratio();
1029     if (width % 2 == 1) width++;
1030     QString filePath = m_view.clip_path->text();
1031     if (isMime) filePath.append(extension);
1032     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(filePath), 1, width, 180);
1033     QMap <QString, QString> props = m_clip->properties();
1034     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
1035     m_view.clip_thumb->setPixmap(pix);
1036 }
1037
1038 void ClipProperties::slotCheckMaxLength()
1039 {
1040     if (m_clip->maxDuration() == GenTime()) return;
1041     int duration = m_tc.getFrameCount(m_view.clip_duration->text());
1042     if (duration > m_clip->maxDuration().frames(m_fps)) {
1043         m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration()));
1044     }
1045 }
1046
1047 void ClipProperties::slotUpdateDurationFormat(int ix)
1048 {
1049     bool framesFormat = ix == 1;
1050     if (framesFormat) {
1051         // switching to frames count, update widget
1052         m_view.slide_duration_frames->setValue(m_tc.getFrameCount(m_view.slide_duration->text()));
1053         m_view.luma_duration_frames->setValue(m_tc.getFrameCount(m_view.luma_duration->text()));
1054         m_view.slide_duration->setHidden(true);
1055         m_view.luma_duration->setHidden(true);
1056         m_view.slide_duration_frames->setHidden(false);
1057         m_view.luma_duration_frames->setHidden(false);
1058     } else {
1059         // switching to timecode format
1060         m_view.slide_duration->setText(m_tc.getTimecodeFromFrames(m_view.slide_duration_frames->value()));
1061         m_view.luma_duration->setText(m_tc.getTimecodeFromFrames(m_view.luma_duration_frames->value()));
1062         m_view.slide_duration_frames->setHidden(true);
1063         m_view.luma_duration_frames->setHidden(true);
1064         m_view.slide_duration->setHidden(false);
1065         m_view.luma_duration->setHidden(false);
1066     }
1067 }
1068
1069 void ClipProperties::slotDeleteProxy()
1070 {
1071       QString proxy = m_clip->getProperty("proxy");
1072       if (proxy.isEmpty()) return;
1073       emit deleteProxy(proxy);
1074       if (m_proxyContainer) delete m_proxyContainer;
1075 }
1076
1077 void ClipProperties::slotOpenUrl(const QString &url)
1078 {
1079     new KRun(KUrl(url), this);
1080 }
1081
1082 #include "clipproperties.moc"
1083
1084
1085