]> git.sesse.net Git - kdenlive/blob - thumbnailer/westleypreview.h
Westley thumbnailer: reindent + cleanup useless includes
[kdenlive] / thumbnailer / westleypreview.h
1 /***************************************************************************
2    Copyright (C) 2006-2008
3    by Marco Gulino <marco@kmobiletools.org>
4    adapted for MLT video preview by Jean-Baptiste Mardelle <jb@kdenlive.org>
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the
18    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19     Boston, MA 02110-1301, USA.
20  ***************************************************************************/
21
22
23 #ifndef _westleypreview_H_
24 #define _westleypreview_H_
25
26 #include <qstring.h>
27
28 #include <qpixmap.h>
29 #include <kio/thumbcreator.h>
30 #include <qobject.h>
31
32 class QProcess;
33 class KTempDir;
34 class KRandomSequence;
35
36
37
38
39 class WestleyPreview : public QObject, public ThumbCreator {
40     Q_OBJECT
41 public:
42     WestleyPreview();
43     virtual ~WestleyPreview();
44     virtual bool create(const QString &path, int width, int height, QImage &img);
45     virtual Flags flags() const;
46
47 protected:
48     QPixmap getFrame(const QString &path);
49     static uint imageVariance(QImage image);
50
51 private:
52     QPixmap m_pixmap;
53     QProcess *m_inigoprocess;
54     QStringList customargs;
55     KRandomSequence *m_rand;
56     QString playerBin;
57     bool startAndWaitProcess(const QStringList &args);
58     enum frameflags { framerandom = 0x1, framestart = 0x2, frameend = 0x4 };
59     struct {
60         int towidth;
61         int toheight;
62         int fps;
63         int seconds;
64     } fileinfo;
65 };
66
67 #endif