]> git.sesse.net Git - kdenlive/blob - src/spacerdialog.cpp
fix crash when starting under macOSX
[kdenlive] / src / spacerdialog.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 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 <QWheelEvent>
21 #include <KDebug>
22
23 #include "spacerdialog.h"
24 #include "kthumb.h"
25 #include "kdenlivesettings.h"
26
27 SpacerDialog::SpacerDialog(const GenTime duration, Timecode tc, int track, int trackNumber, QWidget * parent): QDialog(parent), m_tc(tc) {
28     setFont(KGlobalSettings::toolBarFont());
29     m_fps = m_tc.fps();
30     m_view.setupUi(this);
31     m_view.space_duration->setText(tc.getTimecode(duration, m_fps));
32     QStringList tracks;
33     tracks << i18n("All tracks");
34     for (int i = 0; i < trackNumber - 1; i++) {
35         tracks << QString::number(i);
36     }
37     m_view.track_number->addItems(tracks);
38     m_view.track_number->setCurrentIndex(track);
39
40     connect(m_view.position_up, SIGNAL(clicked()), this, SLOT(slotTimeUp()));
41     connect(m_view.position_down, SIGNAL(clicked()), this, SLOT(slotTimeDown()));
42
43     adjustSize();
44 }
45
46 SpacerDialog::~SpacerDialog() {
47 }
48
49 void SpacerDialog::slotTimeUp() {
50     int duration = m_tc.getFrameCount(m_view.space_duration->text(), m_fps);
51     duration ++;
52     m_view.space_duration->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
53 }
54
55 void SpacerDialog::slotTimeDown() {
56     int duration = m_tc.getFrameCount(m_view.space_duration->text(), m_fps);
57     if (duration <= 0) return;
58     duration --;
59     m_view.space_duration->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
60 }
61
62 GenTime SpacerDialog::selectedDuration() {
63     return GenTime(m_tc.getFrameCount(m_view.space_duration->text(), m_fps), m_fps);
64 }
65
66 void SpacerDialog::wheelEvent(QWheelEvent * event) {
67     if (m_view.space_duration->underMouse()) {
68         if (event->delta() > 0)
69             slotTimeUp();
70         else
71             slotTimeDown();
72     }
73 }
74
75 int SpacerDialog::selectedTrack() {
76     return m_view.track_number->currentIndex() - 1;
77 }
78
79 #include "spacerdialog.moc"
80
81