]> git.sesse.net Git - kdenlive/blob - src/monitormanager.cpp
Reindent all source files
[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 <QObject>
22 #include <QTimer>
23
24 #include "monitormanager.h"
25 #include <mlt++/Mlt.h>
26
27 MonitorManager::MonitorManager(QWidget *parent)
28         : QObject(parent) {
29
30
31 }
32
33 void MonitorManager::setTimecode(Timecode tc) {
34     m_timecode = tc;
35 }
36
37 Timecode MonitorManager::timecode() {
38     return m_timecode;
39 }
40
41 void MonitorManager::initMonitors(Monitor *clipMonitor, Monitor *projectMonitor) {
42     m_clipMonitor = clipMonitor;
43     m_projectMonitor = projectMonitor;
44     //QTimer::singleShot(1750, this, SLOT(initClipMonitor()));
45     initClipMonitor();
46     //initProjectMonitor();
47 }
48
49 void MonitorManager::initClipMonitor() {
50     m_clipMonitor->initMonitor();
51     emit connectMonitors();
52     //initProjectMonitor();
53     //QTimer::singleShot(1500, this, SLOT(initProjectMonitor()));
54 }
55
56 void MonitorManager::initProjectMonitor() {
57     //m_clipMonitor->stop();
58     m_projectMonitor->initMonitor();
59     // activateMonitor("project");
60     emit connectMonitors();
61 }
62
63 void MonitorManager::activateMonitor(QString name) {
64     if (m_activeMonitor == name) return;
65     if (name == "clip") {
66         m_projectMonitor->stop();
67         m_clipMonitor->start();
68         emit raiseClipMonitor(true);
69     } else {
70         m_clipMonitor->stop();
71         m_projectMonitor->start();
72         m_projectMonitor->raise();
73         emit raiseClipMonitor(false);
74     }
75     m_activeMonitor = name;
76 }
77
78 #include "monitormanager.moc"