]> git.sesse.net Git - kdenlive/blob - src/monitor.h
Force refresh of clip monitor when clip was edited
[kdenlive] / src / monitor.h
1 /***************************************************************************
2  *   Copyright (C) 2007 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 #ifndef MONITOR_H
21 #define MONITOR_H
22
23
24 #include "gentime.h"
25 #include "renderer.h"
26 #include "timecodedisplay.h"
27 #include "abstractmonitor.h"
28 #ifdef USE_OPENGL
29 #include "videoglwidget.h"
30 #endif
31
32 #include <QLabel>
33 #include <QDomElement>
34 #include <QToolBar>
35 #include <QSlider>
36
37 #include <KIcon>
38 #include <KAction>
39 #include <KRestrictedLine>
40
41 class SmallRuler;
42 class DocClipBase;
43 class AbstractClipItem;
44 class Transition;
45 class ClipItem;
46 class MonitorEditWidget;
47 class Monitor;
48 class MonitorManager;
49
50 class VideoContainer : public QFrame
51 {
52     Q_OBJECT
53 public:
54     VideoContainer(Monitor *parent = 0);
55     void switchFullScreen();
56
57 protected:
58     virtual void mouseDoubleClickEvent(QMouseEvent * event);
59     virtual void mousePressEvent(QMouseEvent * event);
60     virtual void mouseReleaseEvent(QMouseEvent *event);
61     virtual void mouseMoveEvent(QMouseEvent *event);
62     void keyPressEvent(QKeyEvent *event);
63     virtual void wheelEvent(QWheelEvent * event);
64
65 private:
66     Qt::WindowFlags m_baseFlags;
67     Monitor *m_monitor;
68 };
69
70 class MonitorRefresh : public QWidget
71 {
72     Q_OBJECT
73 public:
74     MonitorRefresh(QWidget *parent = 0);
75     void setRenderer(Render* render);
76
77 private:
78     Render *m_renderer;
79 };
80
81 class Overlay : public QLabel
82 {
83     Q_OBJECT
84 public:
85     Overlay(QWidget* parent = 0);
86     void setOverlayText(const QString &, bool isZone = true);
87
88 private:
89     bool m_isZone;
90
91 protected:
92     virtual void mouseDoubleClickEvent ( QMouseEvent * event );
93     virtual void mousePressEvent ( QMouseEvent * event );
94     virtual void mouseReleaseEvent ( QMouseEvent * event );
95     
96 signals:
97     void editMarker();
98 };
99
100 class Monitor : public AbstractMonitor
101 {
102     Q_OBJECT
103
104 public:
105     Monitor(QString name, MonitorManager *manager, QString profile = QString(), QWidget *parent = 0);
106     ~Monitor();
107     Render *render;
108     AbstractRender *abstractRender();
109     void resetProfile(const QString &profile);
110     const QString name() const;
111     void resetSize();
112     bool isActive() const;
113     void pause();
114     void setupMenu(QMenu *goMenu, QAction *playZone, QAction *loopZone, QMenu *markerMenu = NULL, QAction *loopClip = NULL);
115     const QString sceneList();
116     DocClipBase *activeClip();
117     GenTime position();
118     void checkOverlay();
119     void updateTimecodeFormat();
120     void updateMarkers(DocClipBase *source);
121     MonitorEditWidget *getEffectEdit();
122     QWidget *container();
123     QFrame *m_volumePopup;
124
125 protected:
126     virtual void mousePressEvent(QMouseEvent * event);
127     virtual void mouseReleaseEvent(QMouseEvent * event);
128     virtual void resizeEvent(QResizeEvent *event);
129
130     /** @brief Move to another position on mouse wheel event.
131      *
132      * Moves towards the end of the clip/timeline on mouse wheel down/back, the
133      * opposite on mouse wheel up/forward.
134      * Ctrl + wheel moves by a second, without Ctrl it moves by a single frame. */
135     virtual void wheelEvent(QWheelEvent * event);
136     virtual void mouseMoveEvent(QMouseEvent *event);
137     virtual QStringList mimeTypes() const;
138     /*virtual void dragMoveEvent(QDragMoveEvent * event);
139     virtual Qt::DropActions supportedDropActions() const;*/
140
141     //virtual void resizeEvent(QResizeEvent * event);
142     //virtual void paintEvent(QPaintEvent * event);
143
144 private:
145     QString m_name;
146     MonitorManager *m_monitorManager;
147     DocClipBase *m_currentClip;
148     SmallRuler *m_ruler;
149     Overlay *m_overlay;
150     double m_scale;
151     int m_length;
152     bool m_dragStarted;
153     MonitorRefresh *m_monitorRefresh;
154     KIcon m_playIcon;
155     KIcon m_pauseIcon;
156     TimecodeDisplay *m_timePos;
157     QAction *m_playAction;
158     /** Has to be available so we can enable and disable it. */
159     QAction *m_loopClipAction;
160     QMenu *m_contextMenu;
161     QMenu *m_configMenu;
162     QMenu *m_playMenu;
163     QMenu *m_markerMenu;
164     QPoint m_DragStartPosition;
165     MonitorEditWidget *m_effectWidget;
166     VideoContainer *m_videoBox;
167     /** Selected clip/transition in timeline. Used for looping it. */
168     AbstractClipItem *m_selectedClip;
169     /** true if selected clip is transition, false = selected clip is clip.
170      *  Necessary because sometimes we get two signals, e.g. we get a clip and we get selected transition = NULL. */
171     bool m_loopClipTransition;
172
173 #ifdef USE_OPENGL
174     VideoGLWidget *m_glWidget;
175     bool createOpenGlWidget(QWidget *parent, const QString profile);
176 #endif
177
178     GenTime getSnapForPos(bool previous);
179     Qt::WindowFlags m_baseFlags;
180     QToolBar *m_toolbar;
181     QWidget *m_volumeWidget;
182     QSlider *m_audioSlider;
183     QAction *m_editMarker;
184
185 private slots:
186     void seekCursor(int pos);
187     void rendererStopped(int pos);
188     void slotExtractCurrentFrame();
189     void slotSetThumbFrame();
190     void slotSetSizeOneToOne();
191     void slotSetSizeOneToTwo();
192     void slotSaveZone();
193     void slotSeek();
194     void setClipZone(QPoint pos);
195     void slotSwitchMonitorInfo(bool show);
196     void slotSwitchDropFrames(bool show);
197     void slotGoToMarker(QAction *action);
198     void slotSetVolume(int volume);
199     void slotShowVolume();
200     void slotEditMarker();
201
202 public slots:
203     void slotOpenFile(const QString &);
204     void slotSetClipProducer(DocClipBase *clip, QPoint zone = QPoint(), bool forceUpdate = false, int position = -1);
205     void updateClipProducer(Mlt::Producer *prod);
206     void refreshMonitor(bool visible);
207     void refreshMonitor();
208     void slotSeek(int pos);
209     void stop();
210     void start();
211     bool activateMonitor();
212     void slotPlay();
213     void slotPlayZone();
214     void slotLoopZone();
215     /** @brief Loops the selected item (clip or transition). */
216     void slotLoopClip();
217     void slotForward(double speed = 0);
218     void slotRewind(double speed = 0);
219     void slotRewindOneFrame(int diff = 1);
220     void slotForwardOneFrame(int diff = 1);
221     void saveSceneList(QString path, QDomElement info = QDomElement());
222     void slotStart();
223     void slotEnd();
224     void slotSetZoneStart();
225     void slotSetZoneEnd();
226     void slotZoneStart();
227     void slotZoneEnd();
228     void slotZoneMoved(int start, int end);
229     void slotSeekToNextSnap();
230     void slotSeekToPreviousSnap();
231     void adjustRulerSize(int length);
232     void setTimePos(const QString &pos);
233     QStringList getZoneInfo() const;
234     void slotEffectScene(bool show = true);
235     bool effectSceneDisplayed();
236
237     /** @brief Sets m_selectedClip to @param item. Used for looping it. */
238     void slotSetSelectedClip(AbstractClipItem *item);
239     void slotSetSelectedClip(ClipItem *item);
240     void slotSetSelectedClip(Transition *item);
241     void slotMouseSeek(int eventDelta, bool fast);
242     void slotSwitchFullScreen();
243
244 signals:
245     void renderPosition(int);
246     void durationChanged(int);
247     void refreshClipThumbnail(const QString &, bool);
248     void adjustMonitorSize();
249     void zoneUpdated(QPoint);
250     void saveZone(Render *, QPoint, DocClipBase *);
251     /** @brief  Editing transitions / effects over the monitor requires the renderer to send frames as QImage.
252      *      This causes a major slowdown, so we only enable it if required */
253     void requestFrameForAnalysis(bool);
254 };
255
256 #endif