1 /***************************************************************************
2 * Copyright (C) 2008 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 ***************************************************************************/
21 #include "spacerdialog.h"
23 #include "kdenlivesettings.h"
25 #include <QWheelEvent>
29 SpacerDialog::SpacerDialog(const GenTime duration, Timecode tc, int track, int trackNumber, QWidget * parent) :
33 setFont(KGlobalSettings::toolBarFont());
36 m_view.space_duration->setText(tc.getTimecode(duration, m_fps));
38 tracks << i18n("All tracks");
39 for (int i = 0; i < trackNumber - 1; i++) {
40 tracks << QString::number(i);
42 m_view.track_number->addItems(tracks);
43 m_view.track_number->setCurrentIndex(track);
45 connect(m_view.position_up, SIGNAL(clicked()), this, SLOT(slotTimeUp()));
46 connect(m_view.position_down, SIGNAL(clicked()), this, SLOT(slotTimeDown()));
51 SpacerDialog::~SpacerDialog()
55 void SpacerDialog::slotTimeUp()
57 int duration = m_tc.getFrameCount(m_view.space_duration->text(), m_fps);
59 m_view.space_duration->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
62 void SpacerDialog::slotTimeDown()
64 int duration = m_tc.getFrameCount(m_view.space_duration->text(), m_fps);
65 if (duration <= 0) return;
67 m_view.space_duration->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
70 GenTime SpacerDialog::selectedDuration()
72 return GenTime(m_tc.getFrameCount(m_view.space_duration->text(), m_fps), m_fps);
75 void SpacerDialog::wheelEvent(QWheelEvent * event)
77 if (m_view.space_duration->underMouse()) {
78 if (event->delta() > 0)
85 int SpacerDialog::selectedTrack()
87 return m_view.track_number->currentIndex() - 1;
90 #include "spacerdialog.moc"