]> git.sesse.net Git - kdenlive/blob - src/slideshowclip.h
Fix label
[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     explicit SlideshowClip(const Timecode& tc, QWidget * parent = 0);
38     virtual ~ SlideshowClip();
39     /** return selected path for slideshow in MLT format */
40     QString selectedPath();
41     QString clipName() const;
42     QString clipDuration() const;
43     QString lumaDuration() const;
44     int imageCount() const;
45     bool loop() const;
46     bool crop() const;
47     bool fade() const;
48     QString lumaFile() const;
49     int softness() const;
50     QString animation() const;
51
52     /** @brief Get the image frame number from a file path, for example image_047.jpg will return 47. */
53     static int getFrameNumberFromPath(const KUrl &path);
54     /** @brief return the url pattern for selected slideshow. */
55     static QString selectedPath(const KUrl &url, bool isMime, QString extension, QStringList *list);
56     /** @brief Convert the selection animation style into an affine geometry string. */
57     static QString animationToGeometry(const QString &animation, int &ttl);
58
59 private slots:
60     void parseFolder();
61     void slotEnableLuma(int state);
62     void slotEnableThumbs(int state);
63     void slotEnableLumaFile(int state);
64     void slotUpdateDurationFormat(int ix);
65     void slotGenerateThumbs();
66     void slotSetPixmap(const KFileItem &fileItem, const QPixmap &pix);
67     /** @brief Display correct widget depenging on user choice (mimetype or pattern method). */
68     void slotMethodChanged(bool active);
69
70 private:
71     Ui::SlideshowClip_UI m_view;
72     int m_count;
73     Timecode m_timecode;
74     KIO::PreviewJob *m_thumbJob;
75 };
76
77
78 #endif
79