]> git.sesse.net Git - kdenlive/blob - src/monitor.h
Merge branch 'master' into stabilize
[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     void reloadProducer(const QString &id);
124     QFrame *m_volumePopup;
125
126 protected:
127     virtual void mousePressEvent(QMouseEvent * event);
128     virtual void mouseReleaseEvent(QMouseEvent * event);
129     virtual void resizeEvent(QResizeEvent *event);
130
131     /** @brief Move to another position on mouse wheel event.
132      *
133      * Moves towards the end of the clip/timeline on mouse wheel down/back, the
134      * opposite on mouse wheel up/forward.
135      * Ctrl + wheel moves by a second, without Ctrl it moves by a single frame. */
136     virtual void wheelEvent(QWheelEvent * event);
137     virtual void mouseMoveEvent(QMouseEvent *event);
138     virtual QStringList mimeTypes() const;
139     /*virtual void dragMoveEvent(QDragMoveEvent * event);
140     virtual Qt::DropActions supportedDropActions() const;*/
141
142     //virtual void resizeEvent(QResizeEvent * event);
143     //virtual void paintEvent(QPaintEvent * event);
144
145 private:
146     QString m_name;
147     MonitorManager *m_monitorManager;
148     DocClipBase *m_currentClip;
149     SmallRuler *m_ruler;
150     Overlay *m_overlay;
151     double m_scale;
152     int m_length;
153     bool m_dragStarted;
154     MonitorRefresh *m_monitorRefresh;
155     KIcon m_playIcon;
156     KIcon m_pauseIcon;
157     TimecodeDisplay *m_timePos;
158     QAction *m_playAction;
159     /** Has to be available so we can enable and disable it. */
160     QAction *m_loopClipAction;
161     QMenu *m_contextMenu;
162     QMenu *m_configMenu;
163     QMenu *m_playMenu;
164     QMenu *m_markerMenu;
165     QPoint m_DragStartPosition;
166     MonitorEditWidget *m_effectWidget;
167     VideoContainer *m_videoBox;
168     /** Selected clip/transition in timeline. Used for looping it. */
169     AbstractClipItem *m_selectedClip;
170     /** true if selected clip is transition, false = selected clip is clip.
171      *  Necessary because sometimes we get two signals, e.g. we get a clip and we get selected transition = NULL. */
172     bool m_loopClipTransition;
173
174 #ifdef USE_OPENGL
175     VideoGLWidget *m_glWidget;
176     bool createOpenGlWidget(QWidget *parent, const QString profile);
177 #endif
178
179     GenTime getSnapForPos(bool previous);
180     Qt::WindowFlags m_baseFlags;
181     QToolBar *m_toolbar;
182     QWidget *m_volumeWidget;
183     QSlider *m_audioSlider;
184     QAction *m_editMarker;
185
186 private slots:
187     void seekCursor(int pos);
188     void rendererStopped(int pos);
189     void slotExtractCurrentFrame();
190     void slotSetThumbFrame();
191     void slotSetSizeOneToOne();
192     void slotSetSizeOneToTwo();
193     void slotSaveZone();
194     void slotSeek();
195     void setClipZone(QPoint pos);
196     void slotSwitchMonitorInfo(bool show);
197     void slotSwitchDropFrames(bool show);
198     void slotGoToMarker(QAction *action);
199     void slotSetVolume(int volume);
200     void slotShowVolume();
201     void slotEditMarker();
202
203 public slots:
204     void slotOpenFile(const QString &);
205     void slotSetClipProducer(DocClipBase *clip, QPoint zone = QPoint(), bool forceUpdate = false, int position = -1);
206     void updateClipProducer(Mlt::Producer *prod);
207     void refreshMonitor(bool visible);
208     void refreshMonitor();
209     void slotSeek(int pos);
210     void stop();
211     void start();
212     bool activateMonitor();
213     void slotPlay();
214     void slotPlayZone();
215     void slotLoopZone();
216     /** @brief Loops the selected item (clip or transition). */
217     void slotLoopClip();
218     void slotForward(double speed = 0);
219     void slotRewind(double speed = 0);
220     void slotRewindOneFrame(int diff = 1);
221     void slotForwardOneFrame(int diff = 1);
222     void saveSceneList(QString path, QDomElement info = QDomElement());
223     void slotStart();
224     void slotEnd();
225     void slotSetZoneStart();
226     void slotSetZoneEnd();
227     void slotZoneStart();
228     void slotZoneEnd();
229     void slotZoneMoved(int start, int end);
230     void slotSeekToNextSnap();
231     void slotSeekToPreviousSnap();
232     void adjustRulerSize(int length);
233     void setTimePos(const QString &pos);
234     QStringList getZoneInfo() const;
235     void slotEffectScene(bool show = true);
236     bool effectSceneDisplayed();
237
238     /** @brief Sets m_selectedClip to @param item. Used for looping it. */
239     void slotSetSelectedClip(AbstractClipItem *item);
240     void slotSetSelectedClip(ClipItem *item);
241     void slotSetSelectedClip(Transition *item);
242     void slotMouseSeek(int eventDelta, bool fast);
243     void slotSwitchFullScreen();
244
245 signals:
246     void renderPosition(int);
247     void durationChanged(int);
248     void refreshClipThumbnail(const QString &, bool);
249     void adjustMonitorSize();
250     void zoneUpdated(QPoint);
251     void saveZone(Render *, QPoint, DocClipBase *);
252     /** @brief  Editing transitions / effects over the monitor requires the renderer to send frames as QImage.
253      *      This causes a major slowdown, so we only enable it if required */
254     void requestFrameForAnalysis(bool);
255 };
256
257 #endif