]> git.sesse.net Git - kdenlive/blob - src/slideshowclip.cpp
Cleanup slideshow clip method, prepare for improved sequence support (still needs...
[kdenlive] / src / slideshowclip.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 #include "slideshowclip.h"
21 #include "kdenlivesettings.h"
22
23 #include <KStandardDirs>
24 #include <KDebug>
25 #include <KFileItem>
26 #include <kdeversion.h>
27
28 #include <QDir>
29
30
31 SlideshowClip::SlideshowClip(Timecode tc, QWidget * parent) :
32     QDialog(parent),
33     m_count(0),
34     m_patternBegin(0),
35     m_timecode(tc),
36     m_thumbJob(NULL)
37 {
38     setFont(KGlobalSettings::toolBarFont());
39     setWindowTitle(i18n("Add Slideshow Clip"));
40     m_view.setupUi(this);
41     m_view.clip_name->setText(i18n("Slideshow Clip"));
42     m_view.folder_url->setMode(KFile::Directory);
43     m_view.icon_list->setIconSize(QSize(50, 50));
44     m_view.show_thumbs->setChecked(KdenliveSettings::showslideshowthumbs());
45
46     connect(m_view.folder_url, SIGNAL(textChanged(const QString &)), this, SLOT(parseFolder()));
47     connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
48     connect(m_view.pattern_url, SIGNAL(textChanged(const QString &)), this, SLOT(parseFolder()));
49
50     connect(m_view.show_thumbs, SIGNAL(stateChanged(int)), this, SLOT(slotEnableThumbs(int)));
51     connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int)));
52     connect(m_view.luma_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int)));
53
54     //WARNING: keep in sync with clipproperties.cpp
55     m_view.image_type->addItem("JPG (*.jpg)", "jpg");
56     m_view.image_type->addItem("JPEG (*.jpeg)", "jpeg");
57     m_view.image_type->addItem("PNG (*.png)", "png");
58     m_view.image_type->addItem("BMP (*.bmp)", "bmp");
59     m_view.image_type->addItem("GIF (*.gif)", "gif");
60     m_view.image_type->addItem("TGA (*.tga)", "tga");
61     m_view.image_type->addItem("TIF (*.tif)", "tif");
62     m_view.image_type->addItem("TIFF (*.tiff)", "tiff");
63     m_view.image_type->addItem("Open EXR (*.exr)", "exr");
64     m_view.animation->addItem(i18n("None"), QString());
65     m_view.animation->addItem(i18n("Pan"), "Pan");
66     m_view.animation->addItem(i18n("Pan, low-pass"), "Pan, low-pass");
67     m_view.animation->addItem(i18n("Pan and zoom"), "Pan and zoom");
68     m_view.animation->addItem(i18n("Pan and zoom, low-pass"), "Pan and zoom, low-pass");
69     m_view.animation->addItem(i18n("Zoom"), "Zoom");
70     m_view.animation->addItem(i18n("Zoom, low-pass"), "Zoom, low-pass");
71
72     m_view.clip_duration->setInputMask(m_timecode.mask());
73     m_view.luma_duration->setInputMask(m_timecode.mask());
74     m_view.luma_duration->setText(m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))));
75     m_view.folder_url->setUrl(QDir::homePath());
76
77     m_view.clip_duration_format->addItem(i18n("hh:mm:ss:ff"));
78     m_view.clip_duration_format->addItem(i18n("Frames"));
79     connect(m_view.clip_duration_format, SIGNAL(activated(int)), this, SLOT(slotUpdateDurationFormat(int)));
80     m_view.clip_duration_frames->setHidden(true);
81     m_view.luma_duration_frames->setHidden(true);
82     m_view.method_mime->setChecked(KdenliveSettings::slideshowbymime());
83     connect(m_view.method_mime, SIGNAL(toggled(bool)), this, SLOT(slotMethodChanged(bool)));
84     slotMethodChanged(m_view.method_mime->isChecked());
85
86
87     // Check for Kdenlive installed luma files
88     QStringList filters;
89     filters << "*.pgm" << "*.png";
90
91     QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas");
92     foreach(const QString & folder, customLumas) {
93         QStringList filesnames = QDir(folder).entryList(filters, QDir::Files);
94         foreach(const QString & fname, filesnames) {
95             QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
96             m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
97         }
98     }
99
100     // Check for MLT lumas
101     QString profilePath = KdenliveSettings::mltpath();
102     QString folder = profilePath.section('/', 0, -3);
103     folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files
104     QDir lumafolder(folder);
105     QStringList filesnames = lumafolder.entryList(filters, QDir::Files);
106     foreach(const QString & fname, filesnames) {
107         QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname;
108         m_view.luma_file->addItem(KIcon(filePath), fname, filePath);
109     }
110
111     //adjustSize();
112 }
113
114 SlideshowClip::~SlideshowClip()
115 {
116     if (m_thumbJob) {
117         delete m_thumbJob;
118     }
119 }
120
121 void SlideshowClip::slotEnableLuma(int state)
122 {
123     bool enable = false;
124     if (state == Qt::Checked) enable = true;
125     m_view.luma_duration->setEnabled(enable);
126     m_view.luma_duration_frames->setEnabled(enable);
127     m_view.luma_fade->setEnabled(enable);
128     if (enable) {
129         m_view.luma_file->setEnabled(m_view.luma_fade->isChecked());
130     } else m_view.luma_file->setEnabled(false);
131     m_view.label_softness->setEnabled(m_view.luma_fade->isChecked() && enable);
132     m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled());
133 }
134
135 void SlideshowClip::slotEnableThumbs(int state)
136 {
137     if (state == Qt::Checked) {
138         KdenliveSettings::setShowslideshowthumbs(true);
139         slotGenerateThumbs();
140     } else {
141         KdenliveSettings::setShowslideshowthumbs(false);
142         if (m_thumbJob) {
143             disconnect(m_thumbJob, SIGNAL(gotPreview(const KFileItem &, const QPixmap &)), this, SLOT(slotSetPixmap(const KFileItem &, const QPixmap &)));
144             m_thumbJob->kill();
145             m_thumbJob = NULL;
146         }
147     }
148
149 }
150
151 void SlideshowClip::slotEnableLumaFile(int state)
152 {
153     bool enable = false;
154     if (state == Qt::Checked) enable = true;
155     m_view.luma_file->setEnabled(enable);
156     m_view.luma_softness->setEnabled(enable);
157     m_view.label_softness->setEnabled(enable);
158 }
159
160 // static
161 //TODO: sequence begin
162 int SlideshowClip::sequenceCount(KUrl file)
163 {
164     // find pattern
165     int count = 0;
166     QString filter = file.fileName();
167     QString ext = filter.section('.', -1);
168     filter = filter.section('.', 0, -2);
169     int fullSize = filter.size();
170     bool hasDigit = false;
171     while (filter.at(filter.size() - 1).isDigit()) {
172         hasDigit = true;
173         filter.remove(filter.size() - 1, 1);
174     }
175     if (!hasDigit) return 0;
176
177
178     // Find number of digits in sequence
179     int precision = fullSize - filter.size();
180     QString folder = file.directory(KUrl::AppendTrailingSlash);
181     // Check how many files we have
182     QDir dir(folder);
183     QString path;
184     int gap = 0;
185     for (int i = 0; gap < 100; i++) {
186         path = filter + QString::number(i).rightJustified(precision, '0', false) + ext;
187         if (dir.exists(path)) {
188             count ++;
189             gap = 0;
190         } else {
191             gap++;
192         }
193     }
194     return count;
195 }
196
197 void SlideshowClip::parseFolder()
198 {
199     m_view.icon_list->clear();
200     bool isMime = m_view.method_mime->isChecked();
201     QString path = isMime ? m_view.folder_url->url().path() : m_view.pattern_url->url().directory();
202     QDir dir(path);
203     if (path.isEmpty() || !dir.exists()) return;
204
205     KIcon unknownicon("unknown");
206     QStringList result;
207     QStringList filters;
208     QString filter;
209     if (isMime) {
210         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
211         filter = m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
212         filters << "*." + filter;
213         dir.setNameFilters(filters);
214         result = dir.entryList(QDir::Files);
215     } else {
216         // find pattern
217         filter = m_view.pattern_url->url().fileName();
218         QString ext = '.' + filter.section('.', -1);
219         filter = filter.section('.', 0, -2);
220         int fullSize = filter.size();
221         while (filter.at(filter.size() - 1).isDigit()) {
222             filter.remove(filter.size() - 1, 1);
223         }
224         int precision = fullSize - filter.size();
225         m_patternBegin = m_view.pattern_url->url().fileName().section('.', 0, -2).right(precision).toInt();
226         QString path;
227         int gap = 0;
228         for (int i = m_patternBegin; gap < 100; i++) {
229             path = filter + QString::number(i).rightJustified(precision, '0', false) + ext;
230             if (dir.exists(path)) {
231                 result.append(path);
232                 gap = 0;
233             } else {
234                 gap++;
235             }
236         }
237     }
238     QListWidgetItem *item;
239     foreach(const QString & path, result) {
240         item = new QListWidgetItem(unknownicon, KUrl(path).fileName());
241         item->setData(Qt::UserRole, dir.filePath(path));
242         m_view.icon_list->addItem(item);
243     }
244     m_count = result.count();
245     if (m_count == 0) m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
246     else m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
247     m_view.label_info->setText(i18np("1 image found", "%1 images found", m_count));
248     if (m_view.show_thumbs->isChecked()) slotGenerateThumbs();
249     m_view.icon_list->setCurrentRow(0);
250 }
251
252 void SlideshowClip::slotGenerateThumbs()
253 {
254     if (m_thumbJob) {
255         delete m_thumbJob;
256     };
257     KFileItemList fileList;
258     for (int i = 0; i < m_view.icon_list->count(); i++) {
259         QListWidgetItem* item = m_view.icon_list->item(i);
260         if (item) {
261             QString path = item->data(Qt::UserRole).toString();
262             if (!path.isEmpty()) {
263                 fileList.append(KFileItem(KFileItem::Unknown, KFileItem::Unknown, KUrl(path)));
264             }
265         }
266     }
267 #if KDE_IS_VERSION(4,7,0)
268     m_thumbJob = new KIO::PreviewJob(fileList, QSize(50, 50));
269     m_thumbJob->setScaleType(KIO::PreviewJob::Scaled);
270 #else
271     m_thumbJob = new KIO::PreviewJob(fileList, 50, 0, 0, 0, true, false, 0);
272 #endif
273
274     m_thumbJob->setAutoDelete(false);
275     connect(m_thumbJob, SIGNAL(gotPreview(const KFileItem &, const QPixmap &)), this, SLOT(slotSetPixmap(const KFileItem &, const QPixmap &)));
276     m_thumbJob->start();
277 }
278
279 void SlideshowClip::slotSetPixmap(const KFileItem &fileItem, const QPixmap &pix)
280 {
281     for (int i = 0; i < m_view.icon_list->count(); i++) {
282         QListWidgetItem* item = m_view.icon_list->item(i);
283         if (item) {
284             QString path = item->data(Qt::UserRole).toString();
285             if (path == fileItem.url().path()) {
286                 item->setIcon(KIcon(pix));
287                 item->setData(Qt::UserRole, QString());
288                 break;
289             }
290         }
291     }
292 }
293
294
295 QString SlideshowClip::selectedPath()
296 {
297     QStringList list;
298     KUrl url;
299     if (m_view.method_mime->isChecked()) url = m_view.folder_url->url();
300     else url = m_view.pattern_url->url();
301     QString path = selectedPath(url, m_view.method_mime->isChecked(), ".all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString(), &list);
302     m_count = list.count();
303     return path;
304 }
305
306 // static
307 int SlideshowClip::getFrameNumberFromPath(KUrl path)
308 {
309     QString filter = path.fileName();
310     filter = filter.section('.', 0, -2);
311     int ix = filter.size() - 1;
312     while (filter.at(ix).isDigit()) {
313         ix--;
314     }
315     return filter.remove(0, ix + 1).toInt();
316 }
317
318 // static
319 QString SlideshowClip::selectedPath(KUrl url, bool isMime, QString extension, QStringList *list)
320 {
321     QString folder;
322     if (isMime) {
323         folder = url.path(KUrl::AddTrailingSlash);
324     } else {
325         folder = url.directory(KUrl::AppendTrailingSlash);
326         QString filter = url.fileName();
327         QString ext = '.' + filter.section('.', -1);
328         filter = filter.section('.', 0, -2);
329         int fullSize = filter.size();
330
331         while (filter.at(filter.size() - 1).isDigit()) {
332             filter.chop(1);
333         }
334
335         // Find number of digits in sequence
336         int precision = fullSize - filter.size();
337
338         // Check how many files we have
339         QDir dir(folder);
340         QString path;
341         int gap = 0;
342         for (int i = 0; gap < 100; i++) {
343             path = filter + QString::number(i).rightJustified(precision, '0', false) + ext;
344             if (dir.exists(path)) {
345                 (*list).append(folder + path);
346                 gap = 0;
347             } else {
348                 gap++;
349             }
350         }
351         extension = filter + "%." + QString::number(precision) + "d" + ext;
352     }
353     kDebug() << "// FOUND " << (*list).count() << " items for " << url.path();
354     return  folder + extension;
355 }
356
357
358 QString SlideshowClip::clipName() const
359 {
360     return m_view.clip_name->text();
361 }
362
363 QString SlideshowClip::clipDuration() const
364 {
365     if (m_view.clip_duration_format->currentIndex() == 1) {
366         // we are in frames mode
367         return m_timecode.getTimecodeFromFrames(m_view.clip_duration_frames->value());
368     }
369     return m_view.clip_duration->text();
370 }
371
372 int SlideshowClip::imageCount() const
373 {
374     return m_count;
375 }
376
377 int SlideshowClip::softness() const
378 {
379     return m_view.luma_softness->value();
380 }
381
382 bool SlideshowClip::loop() const
383 {
384     return m_view.slide_loop->isChecked();
385 }
386
387 bool SlideshowClip::crop() const
388 {
389     return m_view.slide_crop->isChecked();
390 }
391
392 bool SlideshowClip::fade() const
393 {
394     return m_view.slide_fade->isChecked();
395 }
396
397 QString SlideshowClip::lumaDuration() const
398 {
399     if (m_view.clip_duration_format->currentIndex() == 1) {
400         // we are in frames mode
401         return m_timecode.getTimecodeFromFrames(m_view.luma_duration_frames->value());
402     }
403     return m_view.luma_duration->text();
404 }
405
406 QString SlideshowClip::lumaFile() const
407 {
408     if (!m_view.luma_fade->isChecked() || !m_view.luma_file->isEnabled()) return QString();
409     return m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
410 }
411
412 QString SlideshowClip::animation() const
413 {
414     if (m_view.animation->itemData(m_view.animation->currentIndex()).isNull()) return QString();
415     return m_view.animation->itemData(m_view.animation->currentIndex()).toString();
416 }
417
418 void SlideshowClip::slotUpdateDurationFormat(int ix)
419 {
420     bool framesFormat = ix == 1;
421     if (framesFormat) {
422         // switching to frames count, update widget
423         m_view.clip_duration_frames->setValue(m_timecode.getFrameCount(m_view.clip_duration->text()));
424         m_view.luma_duration_frames->setValue(m_timecode.getFrameCount(m_view.luma_duration->text()));
425     } else {
426         // switching to timecode format
427         m_view.clip_duration->setText(m_timecode.getTimecodeFromFrames(m_view.clip_duration_frames->value()));
428         m_view.luma_duration->setText(m_timecode.getTimecodeFromFrames(m_view.luma_duration_frames->value()));
429     }
430     m_view.clip_duration_frames->setHidden(!framesFormat);
431     m_view.clip_duration->setHidden(framesFormat);
432     m_view.luma_duration_frames->setHidden(!framesFormat);
433     m_view.luma_duration->setHidden(framesFormat);
434 }
435
436 void SlideshowClip::slotMethodChanged(bool active)
437 {
438     if (active) {
439         // User wants mimetype image sequence
440         m_view.clip_duration->setText(m_timecode.reformatSeparators(KdenliveSettings::image_duration()));
441         m_view.stackedWidget->setCurrentIndex(0);
442         KdenliveSettings::setSlideshowbymime(true);
443     } else {
444         // User wants pattern image sequence
445         m_view.clip_duration->setText(m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()));
446         m_view.stackedWidget->setCurrentIndex(1);
447         KdenliveSettings::setSlideshowbymime(false);
448     }
449     parseFolder();
450 }
451
452 // static
453 QString SlideshowClip::animationToGeometry(const QString &animation, int &ttl)
454 {
455     QString geometry;
456     if (animation.startsWith("Pan and zoom")) {
457         geometry = QString().sprintf("0=0/0:100%%x100%%;%d=-14%%/-14%%:120%%x120%%;%d=-5%%/-5%%:110%%x110%%;%d=0/0:110%%x110%%;%d=0/-5%%:110%%x110%%;%d=-5%%/0:110%%x110%%",
458                                      ttl - 1, ttl, ttl * 2 - 1, ttl * 2, ttl * 3 - 1);
459         ttl *= 3;
460     } else if (animation.startsWith("Pan")) {
461         geometry = QString().sprintf("0=-5%%/-5%%:110%%x110%%;%d=0/0:110%%x110%%;%d=0/0:110%%x110%%;%d=0/-5%%:110%%x110%%;%d=0/-5%%:110%%x110%%;%d=-5%%/-5%%:110%%x110%%;%d=0/-5%%:110%%x110%%;%d=-5%%/0:110%%x110%%",
462                                      ttl - 1, ttl, ttl * 2 - 1, ttl * 2, ttl * 3 - 1, ttl * 3, ttl * 4 - 1);
463         ttl *= 4;
464     } else if (animation.startsWith("Zoom")) {
465         geometry = QString().sprintf("0=0/0:100%%x100%%;%d=-14%%/-14%%:120%%x120%%", ttl - 1);
466     }
467     return geometry;
468 }
469
470 int SlideshowClip::begin() const
471 {
472    return m_patternBegin;
473 }
474
475 #include "slideshowclip.moc"
476
477