]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.cpp
Various fixes to improve general stability in Qt 4.5.2
[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 {
30 }
31
32 CustomTrackScene::~CustomTrackScene()
33 {
34 }
35
36 double CustomTrackScene::getSnapPointForPos(double pos, bool doSnap)
37 {
38     double maximumOffset;
39     if (doSnap) {
40         if (m_scale.x() > 3) maximumOffset = 10 / m_scale.x();
41         else maximumOffset = 6 / m_scale.x();
42         for (int i = 0; i < m_snapPoints.size(); ++i) {
43             if (qAbs((int)(pos - m_snapPoints.at(i).frames(m_document->fps()))) < maximumOffset) {
44                 return m_snapPoints.at(i).frames(m_document->fps());
45             }
46             if (m_snapPoints.at(i).frames(m_document->fps()) > pos) break;
47         }
48     }
49     return GenTime(pos, m_document->fps()).frames(m_document->fps());
50 }
51
52 void CustomTrackScene::setSnapList(QList <GenTime> snaps)
53 {
54     m_snapPoints = snaps;
55 }
56
57 GenTime CustomTrackScene::previousSnapPoint(GenTime pos)
58 {
59     for (int i = 0; i < m_snapPoints.size(); ++i) {
60         if (m_snapPoints.at(i) >= pos) {
61             if (i == 0) i = 1;
62             return m_snapPoints.at(i - 1);
63         }
64     }
65     return GenTime();
66 }
67
68 GenTime CustomTrackScene::nextSnapPoint(GenTime pos)
69 {
70     for (int i = 0; i < m_snapPoints.size(); ++i) {
71         if (m_snapPoints.at(i) > pos) {
72             return m_snapPoints.at(i);
73         }
74     }
75     return pos;
76 }
77
78 void CustomTrackScene::setScale(double scale, double vscale)
79 {
80     m_scale.setX(scale);
81     m_scale.setY(vscale);
82 }
83
84 QPointF CustomTrackScene::scale() const
85 {
86     return m_scale;
87 }
88
89 int CustomTrackScene::tracksCount() const
90 {
91     return m_document->tracksCount();
92 }
93
94 MltVideoProfile CustomTrackScene::profile() const
95 {
96     return m_document->mltProfile();
97 }
98
99 #include "customtrackscene.moc"