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