]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.cpp
use const ref
[kdenlive] / src / customtrackscene.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 #include "customtrackscene.h"
21 #include "kdenlivedoc.h"
22
23 #include <KStandardDirs>
24
25 CustomTrackScene::CustomTrackScene(KdenliveDoc *doc, QObject *parent) :
26         QGraphicsScene(parent),
27         m_document(doc),
28         m_scale(1.0, 1.0),
29         m_editMode(NORMALEDIT)
30 {
31 }
32
33 CustomTrackScene::~CustomTrackScene()
34 {
35 }
36
37 double CustomTrackScene::getSnapPointForPos(double pos, bool doSnap)
38 {
39     double maximumOffset;
40     if (doSnap) {
41         if (m_scale.x() > 3) maximumOffset = 10 / m_scale.x();
42         else maximumOffset = 6 / m_scale.x();
43         for (int i = 0; i < m_snapPoints.size(); ++i) {
44             if (qAbs((int)(pos - m_snapPoints.at(i).frames(m_document->fps()))) < maximumOffset) {
45                 return m_snapPoints.at(i).frames(m_document->fps());
46             }
47             if (m_snapPoints.at(i).frames(m_document->fps()) > pos) break;
48         }
49     }
50     return GenTime(pos, m_document->fps()).frames(m_document->fps());
51 }
52
53 void CustomTrackScene::setSnapList(const QList <GenTime>& snaps)
54 {
55     m_snapPoints = snaps;
56 }
57
58 GenTime CustomTrackScene::previousSnapPoint(GenTime pos) const
59 {
60     for (int i = 0; i < m_snapPoints.size(); ++i) {
61         if (m_snapPoints.at(i) >= pos) {
62             if (i == 0) return GenTime();
63             return m_snapPoints.at(i - 1);
64         }
65     }
66     return GenTime();
67 }
68
69 GenTime CustomTrackScene::nextSnapPoint(GenTime pos) const
70 {
71     for (int i = 0; i < m_snapPoints.size(); ++i) {
72         if (m_snapPoints.at(i) > pos) {
73             return m_snapPoints.at(i);
74         }
75     }
76     return pos;
77 }
78
79 void CustomTrackScene::setScale(double scale, double vscale)
80 {
81     m_scale.setX(scale);
82     m_scale.setY(vscale);
83 }
84
85 QPointF CustomTrackScene::scale() const
86 {
87     return m_scale;
88 }
89
90 int CustomTrackScene::tracksCount() const
91 {
92     return m_document->tracksCount();
93 }
94
95 MltVideoProfile CustomTrackScene::profile() const
96 {
97     return m_document->mltProfile();
98 }
99
100 void CustomTrackScene::setEditMode(EDITMODE mode)
101 {
102     m_editMode = mode;
103 }
104
105 EDITMODE CustomTrackScene::editMode() const
106 {
107     return m_editMode;
108 }
109
110 #include "customtrackscene.moc"