]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.cpp
Reindent the codebase using 'linux' bracket placement.
[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), m_document(doc), m_scale(1.0)
27 {
28     m_transitionPixmap = QPixmap(KStandardDirs::locate("appdata", "transition.png"));
29 }
30
31 CustomTrackScene::~CustomTrackScene()
32 {
33 }
34
35 double CustomTrackScene::getSnapPointForPos(double pos, bool doSnap)
36 {
37     double maximumOffset;
38     if (doSnap) {
39         if (m_scale > 3) maximumOffset = 10 / m_scale;
40         else maximumOffset = 6 / m_scale;
41         for (int i = 0; i < m_snapPoints.size(); ++i) {
42             if (qAbs((int)(pos - m_snapPoints.at(i).frames(m_document->fps()))) < maximumOffset) {
43                 return m_snapPoints.at(i).frames(m_document->fps());
44             }
45             if (m_snapPoints.at(i).frames(m_document->fps()) > pos) break;
46         }
47     }
48     return GenTime(pos, m_document->fps()).frames(m_document->fps());
49 }
50
51 void CustomTrackScene::setSnapList(QList <GenTime> snaps)
52 {
53     m_snapPoints = snaps;
54 }
55
56 GenTime CustomTrackScene::previousSnapPoint(GenTime pos)
57 {
58     for (int i = 0; i < m_snapPoints.size(); ++i) {
59         if (m_snapPoints.at(i) >= pos) {
60             if (i == 0) i = 1;
61             return m_snapPoints.at(i - 1);
62         }
63     }
64     return GenTime();
65 }
66
67 GenTime CustomTrackScene::nextSnapPoint(GenTime pos)
68 {
69     for (int i = 0; i < m_snapPoints.size(); ++i) {
70         if (m_snapPoints.at(i) > pos) {
71             return m_snapPoints.at(i);
72         }
73     }
74     return pos;
75 }
76
77 void CustomTrackScene::setScale(double scale)
78 {
79     m_scale = scale;
80 }
81
82 double CustomTrackScene::scale() const
83 {
84     return m_scale;
85 }
86
87 int CustomTrackScene::tracksCount() const
88 {
89     return m_document->tracksCount();
90 }
91
92 #include "customtrackscene.moc"