1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
20 #include "customtrackscene.h"
21 #include "kdenlivedoc.h"
23 #include <KStandardDirs>
25 CustomTrackScene::CustomTrackScene(KdenliveDoc *doc, QObject *parent) :
26 QGraphicsScene(parent),
29 m_editMode(NORMALEDIT)
33 CustomTrackScene::~CustomTrackScene()
37 double CustomTrackScene::getSnapPointForPos(double pos, bool 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());
47 if (m_snapPoints.at(i).frames(m_document->fps()) > pos) break;
50 return GenTime(pos, m_document->fps()).frames(m_document->fps());
53 void CustomTrackScene::setSnapList(const QList <GenTime>& snaps)
58 GenTime CustomTrackScene::previousSnapPoint(const GenTime &pos) const
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);
69 GenTime CustomTrackScene::nextSnapPoint(const GenTime &pos) const
71 for (int i = 0; i < m_snapPoints.size(); ++i) {
72 if (m_snapPoints.at(i) > pos) {
73 return m_snapPoints.at(i);
79 void CustomTrackScene::setScale(double scale, double vscale)
85 QPointF CustomTrackScene::scale() const
90 int CustomTrackScene::tracksCount() const
92 return m_document->tracksCount();
95 MltVideoProfile CustomTrackScene::profile() const
97 return m_document->mltProfile();
100 void CustomTrackScene::setEditMode(EDITMODE mode)
105 EDITMODE CustomTrackScene::editMode() const
110 #include "customtrackscene.moc"