]> git.sesse.net Git - kdenlive/blob - src/stopmotion/stopmotion.h
Progress on stopmotion widget (make it possible to switch between HDMI and V4L)
[kdenlive] / src / stopmotion / stopmotion.h
1 /***************************************************************************
2                           titlewidget.h  -  description
3                              -------------------
4     begin                : Feb 28 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #ifndef STOPMOTION_H
19 #define STOPMOTION_H
20
21 #include "ui_stopmotion_ui.h"
22 #include "../blackmagic/capture.h"
23
24 #include <KUrl>
25 #include <QLabel>
26 #include <QFuture>
27 #include <QVBoxLayout>
28
29 class MyLabel : public QLabel
30 {
31   Q_OBJECT
32 public:
33     MyLabel(QWidget *parent = 0);
34     void setImage(QImage img);
35
36 protected:
37     virtual void paintEvent( QPaintEvent * event);
38     virtual void wheelEvent(QWheelEvent * event);
39
40 private:
41     QImage m_img;
42
43 signals:
44     /** @brief Seek to next or previous frame.
45      *  @param forward set to true to go to next frame, fals to go to previous frame */
46     void seek(bool forward);
47 };
48
49 class StopmotionWidget : public QDialog , public Ui::Stopmotion_UI
50 {
51     Q_OBJECT
52
53 public:
54
55     /** @brief Build the stopmotion dialog.
56      * @param projectFolder The current project folder, where captured files will be stored.
57      * @param parent (optional) parent widget */
58     StopmotionWidget(KUrl projectFolder, QWidget *parent = 0);
59     virtual ~StopmotionWidget();
60
61
62 protected:
63
64
65 private:
66   /** @brief Widget layout holding video and frame preview. */
67   QVBoxLayout *m_layout;
68   
69   /** @brief Current project folder (where the captured frames will be saved). */
70   KUrl m_projectFolder;
71
72   /** @brief Capture holder that will handle all video operation. */
73   CaptureHandler *m_bmCapture;
74
75   /** @brief Holds the name of the current sequence.
76    * Files will be saved in project folder with name: sequence001.png */
77   QString m_sequenceName;
78
79   /** @brief Holds the frame number of the current sequence. */
80   int m_sequenceFrame;
81
82   QAction *m_captureAction;
83   
84   /** @brief Holds the index of the frame to be displayed in the frame preview mode. */
85   int m_animatedIndex;
86
87   /** @brief Find all stopmotion sequences in current project folder. */
88   void parseExistingSequences();
89
90   /** @brief Select a frame in the list. */
91   void selectFrame(int ix);
92
93   /** @brief This widget will hold the frame preview. */
94   MyLabel *m_frame_preview;
95
96   /** @brief The list of files in the sequence to create thumbnails. */
97   QStringList m_filesList;
98   
99   /** @brief The index of currently created thumbnail. */
100   int m_currentIndex;
101   
102   /** @brief Holds the state of the threaded thumbnail generation. */
103   QFuture<void> m_future;
104
105   /** @brief Get the frame number ix. */
106   QListWidgetItem *getFrameFromIndex(int ix);
107   
108 private slots:
109   /** @brief Display the live feed from capture device.
110    @param isOn enable or disable the feature */
111   void slotLive(bool isOn);
112
113   /** @brief Display the last captured frame over current live feed.
114    @param isOn enable or disable the feature */
115   void slotShowOverlay(bool isOn);
116
117   /** @brief Display the last captured frame over current live feed. */
118   void slotUpdateOverlay();
119
120   /** @brief User changed the capture name. */
121   void sequenceNameChanged(const QString &name);
122
123   /** @brief Grab a frame from current capture feed. */
124   void slotCaptureFrame();
125
126   /** @brief Display a previous frame in monitor. */
127   void slotShowFrame(int);
128
129   /** @brief Get full path for a frame in the sequence.
130    *  @param ix the frame number.
131    *  @param seqName (optional) the name of the sequence. */
132   QString getPathForFrame(int ix, QString seqName = QString());
133
134   /** @brief Add sequence to current project. */
135   void slotAddSequence();
136
137   /** @brief Update the frame list widget with newly created frame. */
138   void slotUpdateFrameList(int ix = -1);
139   
140   /** @brief Display selected fram in monitor. */
141   void slotShowSelectedFrame();
142
143   /** @brief Start animation preview mode. */
144   void slotPlayPreview();
145   
146   /** @brief Simulate animation. */
147   void slotAnimate();
148   
149   /** @brief Seek to previous or next captured frame.
150    *  @param forward set to true for next frame, false for previous one. */
151   void slotSeekFrame(bool forward);
152
153   /** @brief Display warning / error message from capture backend. */
154   void slotGotHDMIMessage(const QString &message);
155
156   /** @brief Create thumbnails for existing sequence frames. */
157   void slotCreateThumbs(QImage img, int ix);
158
159   /** @brief Prepare thumbnails creation. */
160   void slotPrepareThumbs();
161
162   /** @brief Called when user switches the video capture backend. */
163   void slotUpdateHandler();
164
165 signals:
166   /** @brief Ask to add sequence to current project. */
167   void addOrUpdateSequence(const QString);
168
169   void doCreateThumbs(QImage, int);
170 };
171
172 #endif