]> git.sesse.net Git - kdenlive/blob - src/slideshowclip.h
Fix thumbnail creation in slideshow dialog:
[kdenlive] / src / slideshowclip.h
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 #ifndef SLIDESHOWCLIP_H
22 #define SLIDESHOWCLIP_H
23
24
25 #include "definitions.h"
26 #include "docclipbase.h"
27 #include "timecode.h"
28 #include "ui_slideshowclip_ui.h"
29
30 #include <QFuture>
31 #include <QFutureWatcher>
32
33 class SlideshowClip : public QDialog
34 {
35     Q_OBJECT
36
37 public:
38     SlideshowClip(Timecode tc, QWidget * parent = 0);
39     /** return selected path for slideshow in MLT format */
40     QString selectedPath() const;
41     QString clipName() const;
42     QString clipDuration() const;
43     QString lumaDuration() const;
44     int imageCount() const;
45     bool loop() const;
46     bool fade() const;
47     QString lumaFile() const;
48     int softness() const;
49
50 private slots:
51     void parseFolder();
52     void slotEnableLuma(int state);
53     void slotEnableThumbs(int state);
54     void slotEnableLumaFile(int state);
55     void doGetThumbs();
56     void slotUpdateDurationFormat(int ix);
57     void slotGenerateThumbs();
58     void slotCheckGenerateThumbs();
59
60 private:
61     Ui::SlideshowClip_UI m_view;
62     int m_count;
63     Timecode m_timecode;
64     QFuture<void> m_future;
65     QFutureWatcher<void> m_watcher;
66 };
67
68
69 #endif
70