]> git.sesse.net Git - kdenlive/blob - src/markerdialog.cpp
cleanup
[kdenlive] / src / markerdialog.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
21 #include "markerdialog.h"
22 #include "kthumb.h"
23 #include "kdenlivesettings.h"
24
25 #include <QWheelEvent>
26 #include <KDebug>
27
28
29 MarkerDialog::MarkerDialog(DocClipBase *clip, CommentedTime t, Timecode tc, const QString &caption, QWidget * parent) :
30         QDialog(parent),
31         m_producer(NULL),
32         m_profile(NULL),
33         m_clip(clip),
34         m_tc(tc)
35 {
36     setFont(KGlobalSettings::toolBarFont());
37     m_fps = m_tc.fps();
38     setupUi(this);
39     setWindowTitle(caption);
40     m_previewTimer = new QTimer(this);
41
42     if (m_clip != NULL) {
43         m_previewTimer->setInterval(500);
44         connect(m_previewTimer, SIGNAL(timeout()), this, SLOT(slotUpdateThumb()));
45         m_profile = new Mlt::Profile((char*) KdenliveSettings::current_profile().data());
46         m_dar = m_profile->dar();
47         QDomDocument doc;
48         QDomElement mlt = doc.createElement("mlt");
49         QDomElement play = doc.createElement("mlt");
50         doc.appendChild(mlt);
51         mlt.appendChild(play);
52         play.appendChild(doc.importNode(clip->toXML(), true));
53         //char *tmp = doc.toString().toUtf8().data();
54         m_producer = new Mlt::Producer(*m_profile, "xml-string", doc.toString().toUtf8().data());
55         //delete[] tmp;
56         int width = 100.0 * m_dar;
57         if (width % 2 == 1) width++;
58         QPixmap p(width, 100);
59         QString colour = clip->getProperty("colour");
60         switch (m_clip->clipType()) {
61         case VIDEO:
62         case AV:
63         case SLIDESHOW:
64         case PLAYLIST:
65             connect(this, SIGNAL(updateThumb()), m_previewTimer, SLOT(start()));
66         case IMAGE:
67         case TEXT:
68             p = KThumb::getFrame(m_producer, t.time().frames(m_fps), width, 100);
69             break;
70         case COLOR:
71             colour = colour.replace(0, 2, "#");
72             p.fill(QColor(colour.left(7)));
73             break;
74         default:
75             p.fill(Qt::black);
76         }
77         if (!p.isNull()) {
78             clip_thumb->setFixedWidth(p.width());
79             clip_thumb->setFixedHeight(p.height());
80             clip_thumb->setPixmap(p);
81         }
82         connect(marker_position, SIGNAL(textChanged(const QString &)), this, SIGNAL(updateThumb()));
83     } else clip_thumb->setHidden(true);
84
85     marker_position->setText(tc.getTimecode(t.time()));
86
87     marker_comment->setText(t.comment());
88     marker_comment->selectAll();
89     marker_comment->setFocus();
90
91     connect(position_up, SIGNAL(clicked()), this, SLOT(slotTimeUp()));
92     connect(position_down, SIGNAL(clicked()), this, SLOT(slotTimeDown()));
93
94     adjustSize();
95 }
96
97 MarkerDialog::~MarkerDialog()
98 {
99     delete m_previewTimer;
100     delete m_producer;
101     delete m_profile;
102 }
103
104 void MarkerDialog::slotUpdateThumb()
105 {
106     m_previewTimer->stop();
107     int pos = m_tc.getFrameCount(marker_position->text());
108     int width = 100.0 * m_dar;
109     if (width % 2 == 1) width++;
110     QPixmap p = KThumb::getFrame(m_producer, pos, width, 100);
111     if (!p.isNull()) clip_thumb->setPixmap(p);
112     else kDebug() << "!!!!!!!!!!!  ERROR CREATING THUMB";
113 }
114
115 void MarkerDialog::slotTimeUp()
116 {
117     int duration = m_tc.getFrameCount(marker_position->text());
118     if (m_clip && duration >= m_clip->duration().frames(m_fps)) return;
119     duration ++;
120     marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps)));
121 }
122
123 void MarkerDialog::slotTimeDown()
124 {
125     int duration = m_tc.getFrameCount(marker_position->text());
126     if (duration <= 0) return;
127     duration --;
128     marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps)));
129 }
130
131 CommentedTime MarkerDialog::newMarker()
132 {
133     return CommentedTime(GenTime(m_tc.getFrameCount(marker_position->text()), m_fps), marker_comment->text());
134 }
135
136 void MarkerDialog::wheelEvent(QWheelEvent * event)
137 {
138     if (marker_position->underMouse() || clip_thumb->underMouse()) {
139         if (event->delta() > 0)
140             slotTimeUp();
141         else
142             slotTimeDown();
143     }
144 }
145
146 #include "markerdialog.moc"
147
148