]> git.sesse.net Git - kdenlive/blob - src/monitormanager.cpp
9a94f2379d8a2a3c213c813658bea3a1c4370a55
[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 "kdenlivesettings.h"
23
24 #include <mlt++/Mlt.h>
25
26 #include <QObject>
27 #include <QTimer>
28
29
30 MonitorManager::MonitorManager(QWidget *parent) :
31         QObject(parent)
32 {
33 }
34
35 Timecode MonitorManager::timecode()
36 {
37     return m_timecode;
38 }
39
40 void MonitorManager::initMonitors(Monitor *clipMonitor, Monitor *projectMonitor)
41 {
42     m_clipMonitor = clipMonitor;
43     m_projectMonitor = projectMonitor;
44 }
45
46 void MonitorManager::activateMonitor(QString name)
47 {
48     if (m_activeMonitor == name) return;
49     if (name == "clip") {
50         m_projectMonitor->stop();
51         m_clipMonitor->start();
52         emit raiseClipMonitor(true);
53     } else {
54         m_clipMonitor->stop();
55         m_projectMonitor->start();
56         m_projectMonitor->raise();
57         emit raiseClipMonitor(false);
58     }
59     m_activeMonitor = name;
60 }
61
62 void MonitorManager::switchMonitors()
63 {
64     if (m_clipMonitor->isActive()) {
65         m_clipMonitor->stop();
66         m_projectMonitor->start();
67         m_projectMonitor->raise();
68         m_activeMonitor = m_projectMonitor->name();
69         emit raiseClipMonitor(false);
70     } else {
71         m_projectMonitor->stop();
72         m_clipMonitor->start();
73         m_activeMonitor = m_clipMonitor->name();
74         emit raiseClipMonitor(true);
75     }
76 }
77
78 void MonitorManager::stopActiveMonitor()
79 {
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     m_timecode = tc;
153     QTimer::singleShot(300, this, SLOT(slotResetProfiles()));
154 }
155
156 void MonitorManager::slotResetProfiles()
157 {
158     activateMonitor("clip");
159     m_clipMonitor->resetProfile();
160     activateMonitor("project");
161     m_projectMonitor->resetProfile();
162     //m_projectMonitor->refreshMonitor(true);
163 }
164
165 #include "monitormanager.moc"