]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.cpp
cf5dffde29a28ccc04f7ac2877e6bb3e8dfe755b
[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)
48                 break;
49         }
50     }
51     return GenTime(pos, m_document->fps()).frames(m_document->fps());
52 }
53
54 void CustomTrackScene::setSnapList(const QList <GenTime>& snaps)
55 {
56     m_snapPoints = snaps;
57 }
58
59 GenTime CustomTrackScene::previousSnapPoint(const GenTime &pos) const
60 {
61     for (int i = 0; i < m_snapPoints.size(); ++i) {
62         if (m_snapPoints.at(i) >= pos) {
63             if (i == 0) return GenTime();
64             return m_snapPoints.at(i - 1);
65         }
66     }
67     return GenTime();
68 }
69
70 GenTime CustomTrackScene::nextSnapPoint(const GenTime &pos) const
71 {
72     for (int i = 0; i < m_snapPoints.size(); ++i) {
73         if (m_snapPoints.at(i) > pos) {
74             return m_snapPoints.at(i);
75         }
76     }
77     return pos;
78 }
79
80 void CustomTrackScene::setScale(double scale, double vscale)
81 {
82     m_scale.setX(scale);
83     m_scale.setY(vscale);
84 }
85
86 QPointF CustomTrackScene::scale() const
87 {
88     return m_scale;
89 }
90
91 int CustomTrackScene::tracksCount() const
92 {
93     return m_document->tracksCount();
94 }
95
96 MltVideoProfile CustomTrackScene::profile() const
97 {
98     return m_document->mltProfile();
99 }
100
101 void CustomTrackScene::setEditMode(EDITMODE mode)
102 {
103     m_editMode = mode;
104 }
105
106 EDITMODE CustomTrackScene::editMode() const
107 {
108     return m_editMode;
109 }
110
111 #include "customtrackscene.moc"