]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.cpp
Reformat initializer lists in all constructors.
[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)
29 {
30     m_transitionPixmap = QPixmap(KStandardDirs::locate("appdata", "transition.png"));
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 > 3) maximumOffset = 10 / m_scale;
42         else maximumOffset = 6 / m_scale;
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(QList <GenTime> snaps)
54 {
55     m_snapPoints = snaps;
56 }
57
58 GenTime CustomTrackScene::previousSnapPoint(GenTime pos)
59 {
60     for (int i = 0; i < m_snapPoints.size(); ++i) {
61         if (m_snapPoints.at(i) >= pos) {
62             if (i == 0) i = 1;
63             return m_snapPoints.at(i - 1);
64         }
65     }
66     return GenTime();
67 }
68
69 GenTime CustomTrackScene::nextSnapPoint(GenTime pos)
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)
80 {
81     m_scale = scale;
82 }
83
84 double CustomTrackScene::scale() const
85 {
86     return m_scale;
87 }
88
89 int CustomTrackScene::tracksCount() const
90 {
91     return m_document->tracksCount();
92 }
93
94 #include "customtrackscene.moc"