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