]> git.sesse.net Git - kdenlive/blob - src/trackview.cpp
c2183ebda37d6932e42cd13e3f50bd3877aefd85
[kdenlive] / src / trackview.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
21 #include <QMouseEvent>
22 #include <QStylePainter>
23 #include <QScrollBar>
24
25 #include <KDebug>
26
27 #include "definitions.h"
28 #include "documentvideotrack.h"
29 #include "documentaudiotrack.h"
30 #include "headertrack.h"
31 #include "trackview.h"
32 #include "clipitem.h"
33 #include "trackpanelclipmovefunction.h"
34
35 TrackView::TrackView(KdenliveDoc *doc, QWidget *parent)
36     : QWidget(parent), m_doc(doc), m_scale(1.0), m_panelUnderMouse(NULL), m_function(NULL), m_projectTracks(0), m_projectDuration(0)
37 {
38   setMouseTracking(true);
39   view = new Ui::TimeLine_UI();
40   view->setupUi(this);
41   m_ruler = new CustomRuler(doc->timecode());
42   QVBoxLayout *layout = new QVBoxLayout;
43   view->ruler_frame->setLayout(layout);
44   layout->addWidget(m_ruler);
45
46   m_scene = new QGraphicsScene();
47   m_trackview = new CustomTrackView(doc, m_scene, this);
48   m_trackview->scale(1, 1);
49   m_trackview->setAlignment(Qt::AlignLeft | Qt::AlignTop);
50   //m_scene->addRect(QRectF(0, 0, 100, 100), QPen(), QBrush(Qt::red));
51
52   m_headersLayout = new QVBoxLayout;
53   m_headersLayout->setContentsMargins (0, 0, 0, 0);
54   view->headers_frame->setLayout(m_headersLayout);
55
56   QVBoxLayout *tracksLayout = new QVBoxLayout;
57   tracksLayout->setContentsMargins (0, 0, 0, 0);
58   view->tracks_frame->setLayout(tracksLayout);
59   tracksLayout->addWidget(m_trackview);
60
61   parseDocument(doc->toXml());
62 /*
63   TrackPanelClipMoveFunction *m_moveFunction = new TrackPanelClipMoveFunction(this);
64   registerFunction("move", m_moveFunction);
65   setEditMode("move");*/
66
67   connect(view->horizontalSlider, SIGNAL(valueChanged ( int )), this, SLOT(slotChangeZoom( int )));
68   connect(m_ruler, SIGNAL(cursorMoved ( int )), this, SLOT(setCursorPos( int )));
69   connect(m_trackview, SIGNAL(cursorMoved ( int )), this, SLOT(slotCursorMoved( int )));
70   connect(m_trackview, SIGNAL(zoomIn ()), this, SLOT(slotZoomIn()));
71   connect(m_trackview, SIGNAL(zoomOut ()), this, SLOT(slotZoomOut()));
72   connect(m_trackview->horizontalScrollBar(), SIGNAL(sliderMoved( int )), m_ruler, SLOT(slotMoveRuler( int )));
73   connect(m_trackview, SIGNAL(mousePosition(int)), this, SIGNAL(mousePosition(int)));
74
75   view->horizontalSlider->setValue(4);
76   m_currentZoom = view->horizontalSlider->value();
77   m_trackview->initView();
78 }
79
80 void TrackView::registerFunction(const QString & name, TrackPanelFunction * function) 
81 {
82   m_factory.registerFunction(name, function);
83 }
84
85 int TrackView::duration()
86 {
87   return m_projectDuration;
88 }
89
90 int TrackView::tracksNumber()
91 {
92   return m_projectTracks;
93 }
94
95 void TrackView::parseDocument(QDomDocument doc)
96 {
97   int cursorPos = 0;
98   kDebug()<<"//// DOCUMENT: "<<doc.toString();
99   QDomNode props = doc.elementsByTagName("properties").item(0);
100   if (!props.isNull()) {
101     cursorPos = props.toElement().attribute("timeline_position").toInt();
102   }
103   QDomNodeList tracks = doc.elementsByTagName("playlist");
104   m_projectDuration = 300;
105   m_projectTracks = tracks.count();
106   int duration = 0;
107   kDebug()<<"//////////// TIMELINE FOUND: "<<m_projectTracks<<" tracks";
108   for (int i = 0; i < m_projectTracks; i++)
109   {
110     if (tracks.item(i).toElement().attribute("hide", QString::null) == "video") {
111       // this is an audio track
112       duration = slotAddAudioTrack(i, tracks.item(i).toElement());
113     }
114     else if (!tracks.item(i).toElement().attribute("id", QString::null).isEmpty())
115       duration = slotAddVideoTrack(i, tracks.item(i).toElement());
116     kDebug()<<" PRO DUR: "<<m_projectDuration<<", TRACK DUR: "<<duration;
117     if (duration > m_projectDuration) m_projectDuration = duration;
118   }
119   m_trackview->setDuration(m_projectDuration);
120   slotCursorMoved(cursorPos, true);
121   //m_scrollBox->setGeometry(0, 0, 300 * zoomFactor(), m_scrollArea->height());
122 }
123
124 void TrackView::setCursorPos(int pos)
125 {
126   emit cursorMoved();
127   m_trackview->setCursorPos(pos * m_scale);
128 }
129
130 void TrackView::moveCursorPos(int pos)
131 {
132   m_trackview->setCursorPos(pos * m_scale, false);
133   //m_ruler->slotNewValue(pos * FRAME_SIZE, false);
134 }
135
136 void TrackView::slotCursorMoved(int pos, bool emitSignal)
137 {
138   m_ruler->slotNewValue(pos * FRAME_SIZE / m_scale, emitSignal); //(int) m_trackview->mapToScene(QPoint(pos, 0)).x());
139   //m_trackview->setCursorPos(pos);
140   //m_trackview->invalidateScene(QRectF(), QGraphicsScene::ForegroundLayer);
141 }
142
143 void TrackView::slotChangeZoom(int factor)
144 {
145   m_ruler->setPixelPerMark(factor);
146   m_scale = (double) FRAME_SIZE / m_ruler->comboScale[factor]; // m_ruler->comboScale[m_currentZoom] / 
147   m_currentZoom = factor;
148   m_trackview->setScale(m_scale);
149   m_trackview->centerOn(QPointF(m_trackview->cursorPos(), 50));
150 }
151
152 const double TrackView::zoomFactor() const
153 {
154   return m_scale;
155 }
156
157 void TrackView::slotZoomIn()
158 {
159   view->horizontalSlider->setValue(view->horizontalSlider->value() - 1);
160 }
161
162 void TrackView::slotZoomOut()
163 {
164   view->horizontalSlider->setValue(view->horizontalSlider->value() + 1);
165 }
166
167 const int TrackView::mapLocalToValue(int x) const
168 {
169   return (int) x * zoomFactor();
170 }
171
172 KdenliveDoc *TrackView::document()
173 {
174   return m_doc;
175 }
176
177 int TrackView::slotAddAudioTrack(int ix, QDomElement xml)
178 {
179   kDebug()<<"*************  ADD AUDIO TRACK "<<ix;
180   m_trackview->addTrack();
181   //DocumentTrack *track = new DocumentAudioTrack(xml, this, m_trackview);
182   HeaderTrack *header = new HeaderTrack();
183   //m_tracksAreaLayout->addWidget(track); //, ix, Qt::AlignTop);
184   m_headersLayout->addWidget(header); //, ix, Qt::AlignTop);
185   //documentTracks.insert(ix, track);
186   return 0;
187   //track->show();
188 }
189
190 int TrackView::slotAddVideoTrack(int ix, QDomElement xml)
191 {
192   m_trackview->addTrack();
193   //DocumentTrack *track = new DocumentVideoTrack(xml, this, m_trackview);
194   HeaderTrack *header = new HeaderTrack();
195   int trackTop = 50 * ix;
196   int trackBottom = trackTop + 50;
197   // parse track
198   int position = 0;
199   for(QDomNode n = xml.firstChild(); !n.isNull(); n = n.nextSibling())
200   {
201     QDomElement elem = n.toElement();
202     if (elem.tagName() == "blank") {
203       position += elem.attribute("length", 0).toInt();
204     }
205     else if (elem.tagName() == "entry") {
206     int in = elem.attribute("in", 0).toInt();
207     int id = elem.attribute("producer", 0).toInt();
208     DocClipBase *clip = m_doc->clipManager()->getClipById(id);
209     int out = elem.attribute("out", 0).toInt() - in;
210     //kDebug()<<"++++++++++++++\n\n / / /ADDING CLIP: "<<clip.cropTime<<", out: "<<clip.duration<<", Producer: "<<clip.producer<<"\n\n++++++++++++++++++++";
211     ClipItem *item = new ClipItem(clip, ix, position, QRectF(position * m_scale, trackTop + 1, out * m_scale, 49), out);
212     m_scene->addItem(item);
213     position += out;
214
215     //m_clipList.append(clip);
216    }
217   }
218   //m_trackDuration = position;
219
220   //m_tracksAreaLayout->addWidget(track); //, ix, Qt::AlignTop);
221   m_headersLayout->addWidget(header); //, ix, Qt::AlignTop);
222   //documentTracks.insert(ix, track);
223   kDebug()<<"*************  ADD VIDEO TRACK "<<ix<<", DURATION: "<<position;
224   return position;
225   //track->show();
226 }
227
228 DocumentTrack *TrackView::panelAt(int y)
229 {
230   return NULL;
231 }
232
233 QGraphicsScene *TrackView::projectScene()
234 {
235   return m_scene;
236 }
237
238 CustomTrackView *TrackView::projectView()
239 {
240   return m_trackview;
241 }
242
243 void TrackView::setEditMode(const QString & editMode)
244 {
245   m_editMode = editMode;
246 }
247
248 const QString & TrackView::editMode() const
249 {
250   return m_editMode;
251 }
252
253 /** This event occurs when the mouse has been moved. */
254     void TrackView::mouseMoveEvent(QMouseEvent * event) {
255         if (m_panelUnderMouse) {
256             if (event->buttons() & Qt::LeftButton) {
257                 bool result = false;
258                 if (m_function)
259                     result =
260                         m_function->mouseMoved(m_panelUnderMouse, event);
261                 if (!result) {
262                     m_panelUnderMouse = 0;
263                     m_function = 0;
264                 }
265             } else {
266                 if (m_function) {
267                     m_function->mouseReleased(m_panelUnderMouse, event);
268                     m_function = 0;
269                 }
270                 m_panelUnderMouse = 0;
271             }
272         } else {
273             DocumentTrack *panel = panelAt(event->y());
274             if (panel) {
275                 QCursor result(Qt::ArrowCursor);
276
277                 TrackPanelFunction *function =
278                     getApplicableFunction(panel, editMode(),
279                     event);
280                 if (function)
281                     result = function->getMouseCursor(panel, event);
282
283                 setCursor(result);
284             } else {
285                 setCursor(QCursor(Qt::ArrowCursor));
286             }
287         }
288     }
289
290     TrackPanelFunction *TrackView::getApplicableFunction(DocumentTrack *
291         panel, const QString & editMode, QMouseEvent * event) {
292         TrackPanelFunction *function = 0;
293
294         QStringList list = panel->applicableFunctions(editMode);
295         QStringList::iterator itt = list.begin();
296
297         while (itt != list.end()) {
298             TrackPanelFunction *testFunction = m_factory.function(*itt);
299             if (testFunction) {
300                 if (testFunction->mouseApplies(panel, event)) {
301                     function = testFunction;
302                     break;
303                 }
304             }
305
306             ++itt;
307         }
308
309         return function;
310     }
311
312
313 #include "trackview.moc"