]> git.sesse.net Git - kdenlive/blob - src/monitormanager.cpp
Allow to enable / disable audio levels display
[kdenlive] / src / monitormanager.cpp
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 #include "monitormanager.h"
22 #include "renderer.h"
23 #include "kdenlivesettings.h"
24
25 #include <mlt++/Mlt.h>
26
27 #include <QObject>
28 #include <QTimer>
29
30
31 MonitorManager::MonitorManager(QWidget *parent) :
32         QObject(parent),
33         m_clipMonitor(NULL),
34         m_projectMonitor(NULL),
35         m_blocked(false)
36 {
37 }
38
39 Timecode MonitorManager::timecode()
40 {
41     return m_timecode;
42 }
43
44 void MonitorManager::initMonitors(Monitor *clipMonitor, Monitor *projectMonitor)
45 {
46     m_clipMonitor = clipMonitor;
47     m_projectMonitor = projectMonitor;
48 }
49
50 void MonitorManager::activateMonitor(QString name)
51 {
52     if (m_blocked || m_clipMonitor == NULL || m_projectMonitor == NULL)
53         return;
54     if (m_activeMonitor == name)
55         return;
56     if (name == "clip") {
57         m_projectMonitor->stop();
58         m_clipMonitor->start();
59         emit raiseClipMonitor(true);
60     } else {
61         m_clipMonitor->stop();
62         m_projectMonitor->start();
63         emit raiseClipMonitor(false);
64     }
65     m_activeMonitor = name;
66     emit checkColorScopes();
67 }
68
69 void MonitorManager::slotSwitchMonitors(bool activateClip)
70 {
71     if (activateClip)
72         activateMonitor("clip");
73     else
74         activateMonitor("project");
75 }
76
77 void MonitorManager::stopActiveMonitor()
78 {
79     if (m_blocked) return;
80     if (m_clipMonitor->isActive()) m_clipMonitor->pause();
81     else m_projectMonitor->pause();
82 }
83
84 void MonitorManager::slotPlay()
85 {
86     if (m_clipMonitor->isActive()) m_clipMonitor->slotPlay();
87     else m_projectMonitor->slotPlay();
88 }
89
90 void MonitorManager::slotPlayZone()
91 {
92     if (m_clipMonitor->isActive()) m_clipMonitor->slotPlayZone();
93     else m_projectMonitor->slotPlayZone();
94 }
95
96 void MonitorManager::slotLoopZone()
97 {
98     if (m_clipMonitor->isActive()) m_clipMonitor->slotLoopZone();
99     else m_projectMonitor->slotLoopZone();
100 }
101
102 void MonitorManager::slotRewind(double speed)
103 {
104     if (m_clipMonitor->isActive()) m_clipMonitor->slotRewind(speed);
105     else m_projectMonitor->slotRewind(speed);
106 }
107
108 void MonitorManager::slotForward(double speed)
109 {
110     if (m_clipMonitor->isActive()) m_clipMonitor->slotForward(speed);
111     else m_projectMonitor->slotForward(speed);
112 }
113
114 void MonitorManager::slotRewindOneFrame()
115 {
116     if (m_clipMonitor->isActive()) m_clipMonitor->slotRewindOneFrame();
117     else m_projectMonitor->slotRewindOneFrame();
118 }
119
120 void MonitorManager::slotForwardOneFrame()
121 {
122     if (m_clipMonitor->isActive()) m_clipMonitor->slotForwardOneFrame();
123     else m_projectMonitor->slotForwardOneFrame();
124 }
125
126 void MonitorManager::slotRewindOneSecond()
127 {
128     if (m_clipMonitor->isActive()) m_clipMonitor->slotRewindOneFrame(m_timecode.fps());
129     else m_projectMonitor->slotRewindOneFrame(m_timecode.fps());
130 }
131
132 void MonitorManager::slotForwardOneSecond()
133 {
134     if (m_clipMonitor->isActive()) m_clipMonitor->slotForwardOneFrame(m_timecode.fps());
135     else m_projectMonitor->slotForwardOneFrame(m_timecode.fps());
136 }
137
138 void MonitorManager::slotStart()
139 {
140     if (m_clipMonitor->isActive()) m_clipMonitor->slotStart();
141     else m_projectMonitor->slotStart();
142 }
143
144 void MonitorManager::slotEnd()
145 {
146     if (m_clipMonitor->isActive()) m_clipMonitor->slotEnd();
147     else m_projectMonitor->slotEnd();
148 }
149
150 void MonitorManager::resetProfiles(Timecode tc)
151 {
152     if (m_blocked) return;
153     m_timecode = tc;
154     slotResetProfiles();
155     //QTimer::singleShot(300, this, SLOT(slotResetProfiles()));
156 }
157
158 void MonitorManager::slotResetProfiles()
159 {
160     if (m_blocked) return;
161     if (m_projectMonitor == NULL || m_clipMonitor == NULL) return;
162     QString active = m_activeMonitor;
163     activateMonitor("clip");
164     m_clipMonitor->resetProfile(KdenliveSettings::current_profile());
165     m_clipMonitor->updateTimecodeFormat();
166     activateMonitor("project");
167     m_projectMonitor->resetProfile(KdenliveSettings::current_profile());
168     m_projectMonitor->updateTimecodeFormat();
169     //m_projectMonitor->refreshMonitor(true);
170     activateMonitor(active);
171 }
172
173 void MonitorManager::slotRefreshCurrentMonitor()
174 {
175     if (m_clipMonitor->isActive()) m_clipMonitor->refreshMonitor();
176     else m_projectMonitor->refreshMonitor();
177 }
178
179 void MonitorManager::slotUpdateAudioMonitoring()
180 {
181     m_clipMonitor->render->analyseAudio = KdenliveSettings::monitor_audio();
182     m_projectMonitor->render->analyseAudio = KdenliveSettings::monitor_audio();
183 }
184
185 #include "monitormanager.moc"