]> git.sesse.net Git - kdenlive/blob - src/slideshowclip.h
Use KDE's thumbnailer for slideshow preview
[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 <KIO/PreviewJob>
31
32 class SlideshowClip : public QDialog
33 {
34     Q_OBJECT
35
36 public:
37     SlideshowClip(Timecode tc, QWidget * parent = 0);
38     virtual ~ SlideshowClip();
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 slotUpdateDurationFormat(int ix);
56     void slotGenerateThumbs();
57     void slotSetPixmap(const KFileItem &fileItem, const QPixmap &pix);
58
59 private:
60     Ui::SlideshowClip_UI m_view;
61     int m_count;
62     Timecode m_timecode;
63     KIO::PreviewJob *m_thumbJob;
64 };
65
66
67 #endif
68