1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
26 #include <KRestrictedLine>
27 #include <QDomElement>
29 #include "ui_monitor_ui.h"
36 class MonitorRefresh : public QWidget {
39 MonitorRefresh(QWidget* parent);
40 virtual void paintEvent(QPaintEvent * event);
41 void setRenderer(Render* render);
47 class Monitor : public QWidget {
51 Monitor(QString name, MonitorManager *manager, QWidget *parent = 0);
56 bool isActive() const;
60 virtual void mousePressEvent(QMouseEvent * event);
61 virtual void mouseReleaseEvent(QMouseEvent * event);
62 virtual void wheelEvent(QWheelEvent * event);
63 virtual void mouseMoveEvent(QMouseEvent *event);
64 virtual QStringList mimeTypes() const;
65 /* virtual void dragMoveEvent(QDragMoveEvent * event);
66 virtual Qt::DropActions supportedDropActions() const;*/
68 // virtual void resizeEvent(QResizeEvent * event);
69 // virtual void paintEvent(QPaintEvent * event);
73 MonitorManager *m_monitorManager;
74 MonitorRefresh *m_monitorRefresh;
83 KRestrictedLine *m_timePos;
84 QAction *m_playAction;
86 DocClipBase *m_currentClip;
87 QPoint m_DragStartPosition;
91 void adjustRulerSize(int length);
92 void seekCursor(int pos);
93 void rendererStopped(int pos);
94 void slotExtractCurrentFrame();
95 void slotSetThumbFrame();
96 void slotSetSizeOneToOne();
97 void slotSetSizeOneToTwo();
101 void slotOpenFile(const QString &);
102 void slotSetXml(DocClipBase *clip, const int position = -1);
104 void refreshMonitor(bool visible);
105 void slotSeek(int pos);
108 void activateMonitor();
112 void slotForward(double speed = 0);
113 void slotRewind(double speed = 0);
114 void slotRewindOneFrame();
115 void slotForwardOneFrame();
116 void saveSceneList(QString path, QDomElement info = QDomElement());
119 void slotSetZoneStart();
120 void slotSetZoneEnd();
121 void slotZoneStart();
123 void slotZoneMoved(int start, int end);
126 void renderPosition(int);
127 void durationChanged(int);
128 void refreshClipThumbnail(const QString &);
129 void adjustMonitorSize();
130 void zoneUpdated(QPoint);
131 void saveZone(Render *, QPoint);