]> git.sesse.net Git - kdenlive/blob - src/monitor.h
Try to fix audio mixing bug ( http://www.kdenlive.org:80/mantis/view.php?id=228 )
[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
21 #ifndef MONITOR_H
22 #define MONITOR_H
23
24 #include <KIcon>
25 #include <KAction>
26 #include <KRestrictedLine>
27 #include <QDomElement>
28
29 #include "ui_monitor_ui.h"
30
31 class MonitorManager;
32 class Render;
33 class SmallRuler;
34 class DocClipBase;
35
36 class MonitorRefresh : public QWidget {
37     Q_OBJECT
38 public:
39     MonitorRefresh(QWidget* parent);
40     virtual void paintEvent(QPaintEvent * event);
41     void setRenderer(Render* render);
42
43 private:
44     Render *m_renderer;
45 };
46
47 class Monitor : public QWidget {
48     Q_OBJECT
49
50 public:
51     Monitor(QString name, MonitorManager *manager, QWidget *parent = 0);
52     Render *render;
53     void resetProfile();
54     QString name() const;
55     void resetSize();
56     bool isActive() const;
57     void pause();
58     void setupMenu(QMenu *goMenu);
59     QDomDocument sceneList();
60
61 protected:
62     virtual void mousePressEvent(QMouseEvent * event);
63     virtual void mouseReleaseEvent(QMouseEvent * event);
64     virtual void wheelEvent(QWheelEvent * event);
65     virtual void mouseMoveEvent(QMouseEvent *event);
66     virtual QStringList mimeTypes() const;
67     /*    virtual void dragMoveEvent(QDragMoveEvent * event);
68         virtual Qt::DropActions supportedDropActions() const;*/
69
70 //    virtual void resizeEvent(QResizeEvent * event);
71 //    virtual void paintEvent(QPaintEvent * event);
72
73 private:
74     Ui::Monitor_UI ui;
75     MonitorManager *m_monitorManager;
76     MonitorRefresh *m_monitorRefresh;
77     QString m_name;
78     double m_scale;
79     int m_length;
80     int m_position;
81     SmallRuler *m_ruler;
82     KIcon m_playIcon;
83     KIcon m_pauseIcon;
84     bool m_isActive;
85     KRestrictedLine *m_timePos;
86     QAction *m_playAction;
87     QMenu *m_contextMenu;
88     QMenu *m_configMenu;
89     QMenu *m_playMenu;
90     DocClipBase *m_currentClip;
91     QPoint m_DragStartPosition;
92     bool m_dragStarted;
93
94 private slots:
95     void adjustRulerSize(int length);
96     void seekCursor(int pos);
97     void rendererStopped(int pos);
98     void slotExtractCurrentFrame();
99     void slotSetThumbFrame();
100     void slotSetSizeOneToOne();
101     void slotSetSizeOneToTwo();
102     void slotSaveZone();
103     void slotSeek();
104
105 public slots:
106     void slotOpenFile(const QString &);
107     void slotSetXml(DocClipBase *clip, const int position = -1);
108     void initMonitor();
109     void refreshMonitor(bool visible);
110     void slotSeek(int pos);
111     void stop();
112     void start();
113     void activateMonitor();
114     void slotPlay();
115     void slotPlayZone();
116     void slotLoopZone();
117     void slotForward(double speed = 0);
118     void slotRewind(double speed = 0);
119     void slotRewindOneFrame();
120     void slotForwardOneFrame();
121     void saveSceneList(QString path, QDomElement info = QDomElement());
122     void slotStart();
123     void slotEnd();
124     void slotSetZoneStart();
125     void slotSetZoneEnd();
126     void slotZoneStart();
127     void slotZoneEnd();
128     void slotZoneMoved(int start, int end);
129
130 signals:
131     void renderPosition(int);
132     void durationChanged(int);
133     void refreshClipThumbnail(const QString &);
134     void adjustMonitorSize();
135     void zoneUpdated(QPoint);
136     void saveZone(Render *, QPoint);
137 };
138
139 #endif