]> git.sesse.net Git - kdenlive/blob - src/customtrackview.cpp
show effects for the clipin effectstack
[kdenlive] / src / customtrackview.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 #include <QMouseEvent>
21 #include <QStylePainter>
22 #include <QGraphicsItem>
23 #include <QDomDocument>
24 #include <QScrollBar>
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KUrl>
29
30 #include "customtrackview.h"
31 #include "clipitem.h"
32 #include "definitions.h"
33 #include "moveclipcommand.h"
34 #include "resizeclipcommand.h"
35 #include "addtimelineclipcommand.h"
36 #include "addeffectcommand.h"
37
38 CustomTrackView::CustomTrackView(KdenliveDoc *doc, QGraphicsScene * projectscene, QWidget *parent)
39     : QGraphicsView(projectscene, parent), m_tracksCount(0), m_cursorPos(0), m_dropItem(NULL), m_cursorLine(NULL), m_operationMode(NONE), m_startPos(QPointF()), m_dragItem(NULL), m_visualTip(NULL), m_moveOpMode(NONE), m_animation(NULL), m_projectDuration(0), m_scale(1.0), m_clickPoint(0), m_document(doc)
40 {
41   if (doc) m_commandStack = doc->commandStack();
42   else m_commandStack == NULL;
43   setMouseTracking(true);
44   setAcceptDrops(true);
45   m_animationTimer = new QTimeLine(800);
46   m_animationTimer->setFrameRange(0, 5);
47   m_animationTimer->setUpdateInterval(100);
48   m_animationTimer->setLoopCount(0);
49   m_tipColor = QColor(230, 50, 0, 150);
50   setContentsMargins(0, 0, 0, 0);
51   if (projectscene) {
52     m_cursorLine = projectscene->addLine(0, 0, 0, 50);
53     m_cursorLine->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIgnoresTransformations);
54     m_cursorLine->setZValue(1000);
55   }
56 }
57
58 void CustomTrackView::initView()
59 {
60
61 }
62
63 // virtual
64 void CustomTrackView::resizeEvent ( QResizeEvent * event )
65 {
66   QGraphicsView::resizeEvent(event);
67 }
68
69 // virtual
70 void CustomTrackView::wheelEvent ( QWheelEvent * e ) 
71 {
72   if (e->modifiers() == Qt::ControlModifier) {
73     if (e->delta() > 0) emit zoomIn();
74     else emit zoomOut();
75   }
76   else {
77     if (e->delta() > 0) horizontalScrollBar()->setValue (horizontalScrollBar()->value() + horizontalScrollBar()->singleStep ());
78     else  horizontalScrollBar()->setValue (horizontalScrollBar()->value() - horizontalScrollBar()->singleStep ());
79   }
80 }
81
82
83 // virtual 
84 void CustomTrackView::mouseMoveEvent ( QMouseEvent * event )
85 {
86   int pos = event->x();
87   emit mousePosition(mapToScene(event->pos()).x() / m_scale);
88   /*if (event->modifiers() == Qt::ControlModifier)
89     setDragMode(QGraphicsView::ScrollHandDrag);
90   else if (event->modifiers() == Qt::ShiftModifier) 
91     setDragMode(QGraphicsView::RubberBandDrag);
92   else*/ {
93
94       if (m_dragItem) { //event->button() == Qt::LeftButton) {
95         // a button was pressed, delete visual tips
96         if (m_operationMode == MOVE) {
97           double snappedPos = getSnapPointForPos(mapToScene(event->pos()).x() - m_clickPoint);
98           double moveX = snappedPos; //mapToScene(event->pos()).x();
99           //kDebug()<<"///////  MOVE CLIP, EVENT Y: "<<event->scenePos().y()<<", SCENE HEIGHT: "<<scene()->sceneRect().height();
100           int moveTrack = (int)  mapToScene(event->pos()).y() / 50;
101           int currentTrack = m_dragItem->track();
102
103           if (moveTrack > m_tracksCount - 1) moveTrack = m_tracksCount - 1;
104           else if (moveTrack < 0) moveTrack = 0;
105
106           int offset = moveTrack - currentTrack;
107           if (offset != 0) offset = 50 * offset;
108           m_dragItem->moveTo(moveX / m_scale, m_scale, offset, moveTrack);
109         }
110         else if (m_operationMode == RESIZESTART) {
111           int pos = mapToScene(event->pos()).x();
112           m_dragItem->resizeStart(pos / m_scale, m_scale);
113         }
114         else if (m_operationMode == RESIZEEND) {
115           int pos = mapToScene(event->pos()).x();
116           m_dragItem->resizeEnd(pos / m_scale, m_scale);
117         }
118         else if (m_operationMode == FADEIN) {
119           int pos = mapToScene(event->pos()).x() / m_scale;
120           m_dragItem->setFadeIn(pos - m_dragItem->startPos(), m_scale);
121         }
122         else if (m_operationMode == FADEOUT) {
123           int pos = mapToScene(event->pos()).x() / m_scale;
124           m_dragItem->setFadeOut(m_dragItem->endPos() - pos, m_scale);
125         }
126
127         if (m_animation) delete m_animation;
128         m_animation = NULL;
129         if (m_visualTip) delete m_visualTip;
130         m_visualTip = NULL;
131         QGraphicsView::mouseMoveEvent(event);
132         return;
133       }
134
135     QList<QGraphicsItem *> itemList = items( event->pos());
136     int i = 0;
137     QGraphicsItem *item = NULL;
138     for (int i = 0; i < itemList.count(); i++) {
139       if (itemList.at(i)->type() == 70000) {
140         item = itemList.at(i);
141         break;
142       }
143     }
144     if (item) {
145       ClipItem *clip = (ClipItem*) item;
146       double size = mapToScene(QPoint(8, 0)).x();
147       OPERATIONTYPE opMode = clip->operationMode(mapToScene(event->pos()), m_scale);
148       if (opMode == m_moveOpMode) {
149         QGraphicsView::mouseMoveEvent(event);
150         return;
151       }
152       else {
153       if (m_visualTip) {
154         if (m_animation) delete m_animation;
155         m_animation = NULL;
156         delete m_visualTip;
157         m_visualTip = NULL;
158       }
159       }
160       m_moveOpMode = opMode;
161       if (opMode == MOVE) {
162         setCursor(Qt::OpenHandCursor);
163       }
164       else if (opMode == RESIZESTART) {
165         kDebug()<<"********  RESIZE CLIP START; WIDTH: "<<size;
166         if (m_visualTip == NULL) {
167           m_visualTip = new QGraphicsRectItem(clip->rect().x(), clip->rect().y(), size, clip->rect().height());
168           ((QGraphicsRectItem*) m_visualTip)->setBrush(m_tipColor);
169           ((QGraphicsRectItem*) m_visualTip)->setPen(QPen(Qt::transparent));
170           m_visualTip->setZValue (100);
171           m_animation = new QGraphicsItemAnimation;
172           m_animation->setItem(m_visualTip);
173           m_animation->setTimeLine(m_animationTimer);
174           m_visualTip->setPos(0, 0);
175           double scale = 2.0;
176           m_animation->setScaleAt(.5, scale, 1);
177           m_animation->setPosAt(.5, QPointF(clip->rect().x() - clip->rect().x() * scale, 0));
178           scale = 1.0;
179           m_animation->setScaleAt(1, scale, 1);
180           m_animation->setPosAt(1, QPointF(clip->rect().x() - clip->rect().x() * scale, 0));
181           scene()->addItem(m_visualTip);
182           m_animationTimer->start();
183         }
184         setCursor(Qt::SizeHorCursor);
185       }
186       else if (opMode == RESIZEEND) {
187         if (m_visualTip == NULL) {
188           m_visualTip = new QGraphicsRectItem(clip->rect().x() + clip->rect().width() - size, clip->rect().y(), size, clip->rect().height());
189           ((QGraphicsRectItem*) m_visualTip)->setBrush(m_tipColor);
190           ((QGraphicsRectItem*) m_visualTip)->setPen(QPen(Qt::transparent));
191           m_visualTip->setZValue (100);
192           m_animation = new QGraphicsItemAnimation;
193           m_animation->setItem(m_visualTip);
194           m_animation->setTimeLine(m_animationTimer);
195           m_visualTip->setPos(0, 0);
196           double scale = 2.0;
197           m_animation->setScaleAt(.5, scale, 1);
198           m_animation->setPosAt(.5, QPointF(clip->rect().x() - clip->rect().x() * scale - clip->rect().width(), 0));
199           scale = 1.0;
200           m_animation->setScaleAt(1, scale, 1);
201           m_animation->setPosAt(1, QPointF(clip->rect().x() - clip->rect().x() * scale, 0));
202           scene()->addItem(m_visualTip);
203           m_animationTimer->start();
204         }
205         setCursor(Qt::SizeHorCursor);
206       }
207       else if (opMode == FADEIN) {
208         if (m_visualTip == NULL) {
209           m_visualTip = new QGraphicsEllipseItem(clip->rect().x() + clip->fadeIn() * m_scale - size, clip->rect().y() - 8, size * 2, 16);
210           ((QGraphicsEllipseItem*) m_visualTip)->setBrush(m_tipColor);
211           ((QGraphicsEllipseItem*) m_visualTip)->setPen(QPen(Qt::transparent));
212           m_visualTip->setZValue (100);
213           m_animation = new QGraphicsItemAnimation;
214           m_animation->setItem(m_visualTip);
215           m_animation->setTimeLine(m_animationTimer);
216           m_visualTip->setPos(0, 0);
217           double scale = 2.0;
218           m_animation->setScaleAt(.5, scale, scale);
219           m_animation->setPosAt(.5, QPointF(clip->rect().x() - clip->rect().x() * scale -  clip->fadeIn() * m_scale, clip->rect().y() - clip->rect().y() * scale));
220           scale = 1.0;
221           m_animation->setScaleAt(1, scale, scale);
222           m_animation->setPosAt(1, QPointF(clip->rect().x() - clip->rect().x() * scale, clip->rect().y() - clip->rect().y() * scale));
223           scene()->addItem(m_visualTip);
224           m_animationTimer->start();
225         }
226         setCursor(Qt::PointingHandCursor);
227       }
228       else if (opMode == FADEOUT) {
229         if (m_visualTip == NULL) {
230           m_visualTip = new QGraphicsEllipseItem(clip->rect().x() + clip->rect().width() - clip->fadeOut() * m_scale - size, clip->rect().y() - 8, size*2, 16);
231           ((QGraphicsEllipseItem*) m_visualTip)->setBrush(m_tipColor);
232           ((QGraphicsEllipseItem*) m_visualTip)->setPen(QPen(Qt::transparent));
233           m_visualTip->setZValue (100);
234           m_animation = new QGraphicsItemAnimation;
235           m_animation->setItem(m_visualTip);
236           m_animation->setTimeLine(m_animationTimer);
237           m_visualTip->setPos(0, 0);
238           double scale = 2.0;
239           m_animation->setScaleAt(.5, scale, scale);      
240           m_animation->setPosAt(.5, QPointF(clip->rect().x() - clip->rect().x() * scale - clip->rect().width() + clip->fadeOut() * m_scale, clip->rect().y() - clip->rect().y() * scale));
241           scale = 1.0;
242           m_animation->setScaleAt(1, scale, scale);
243           m_animation->setPosAt(1, QPointF(clip->rect().x() - clip->rect().x() * scale, clip->rect().y() - clip->rect().y() * scale));
244           scene()->addItem(m_visualTip);
245           m_animationTimer->start();
246         }
247         setCursor(Qt::PointingHandCursor);
248       }
249     }
250     else {
251       m_moveOpMode = NONE;
252       if (m_visualTip) {
253         if (m_animation) delete m_animation;
254         m_animation = NULL;
255         delete m_visualTip;
256         m_visualTip = NULL;
257       }
258       setCursor(Qt::ArrowCursor);
259     }
260   }
261   QGraphicsView::mouseMoveEvent(event);
262 }
263
264 // virtual 
265 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
266 {
267   kDebug()<<"-- TIMELINE MSE PRESSED";
268   int pos = event->x();
269   if (event->modifiers() == Qt::ControlModifier) 
270     setDragMode(QGraphicsView::ScrollHandDrag);
271   else if (event->modifiers() == Qt::ShiftModifier) 
272     setDragMode(QGraphicsView::RubberBandDrag);
273   else {
274     bool collision = false;
275     QList<QGraphicsItem *> collisionList = items(event->pos());
276     for (int i = 0; i < collisionList.size(); ++i) {
277       QGraphicsItem *item = collisionList.at(i);
278       if (item->type() == 70000) {
279         // select item
280         if (!item->isSelected()) {
281           QList<QGraphicsItem *> itemList = items();
282           for (int i = 0; i < itemList.count(); i++)
283             itemList.at(i)->setSelected(false);
284           item->setSelected(true);
285           update();
286         }
287         m_dragItem = (ClipItem *) item;
288         emit clipItemSelected(m_dragItem);
289         m_clickPoint = mapToScene(event->pos()).x() - m_dragItem->startPos() * m_scale;
290         m_operationMode = m_dragItem->operationMode(item->mapFromScene(mapToScene(event->pos())), m_scale);
291         if (m_operationMode == MOVE || m_operationMode == RESIZESTART) 
292           m_startPos = QPointF(m_dragItem->startPos(), m_dragItem->track());
293         else if (m_operationMode == RESIZEEND) 
294           m_startPos = QPointF(m_dragItem->endPos(), m_dragItem->track());
295         kDebug()<<"//////// ITEM CLICKED: "<<m_startPos;
296         collision = true;
297         break;
298       }
299     }
300     if (!collision) {
301       kDebug()<<"//////// NO ITEM FOUND ON CLICK";
302       m_dragItem = NULL;
303       setCursor(Qt::ArrowCursor);
304       setCursorPos((int) mapToScene(event->x(), 0).x());
305       emit cursorMoved(cursorPos());
306     }
307   }
308   updateSnapPoints(m_dragItem);
309   //kDebug()<<pos;
310   //QGraphicsView::mousePressEvent(event);
311 }
312
313 void CustomTrackView::dragEnterEvent ( QDragEnterEvent * event )
314 {
315   if (event->mimeData()->hasText()) {
316     kDebug()<<"///////////////  DRAG ENTERED, TEXT: "<<event->mimeData()->text();
317     QStringList ids = QString(event->mimeData()->text()).split(";");
318     //TODO: drop of several clips
319     for (int i = 0; i < ids.size(); ++i) {
320     }
321     DocClipBase *clip = m_document->getBaseClip(ids.at(0).toInt());
322     if (clip == NULL) kDebug()<<" WARNING))))))))) CLIP NOT FOUND : "<<ids.at(0).toInt();
323     addItem(clip, event->pos());
324     event->acceptProposedAction();
325   }
326 }
327
328 void CustomTrackView::addEffect(int track, GenTime pos, QString tag, QMap <QString, QString> args)
329 {
330   m_document->renderer()->mltAddEffect(track, pos, tag, args);
331   ClipItem *clip = getClipItemAt(pos.frames(m_document->fps()) + 1, m_tracksCount - track);
332         if (clip){ 
333                 clip->addEffect(args);
334                 emit clipItemSelected(clip);
335         }
336 }
337
338 void CustomTrackView::deleteEffect(int track, GenTime pos, QString tag)
339 {
340   m_document->renderer()->mltRemoveEffect(track, pos, tag, -1);  
341   ClipItem *clip = getClipItemAt(pos.frames(m_document->fps()) + 1, m_tracksCount - track);
342         if (clip){
343                 clip->deleteEffect(tag);
344                 emit clipItemSelected(clip);
345         }
346 }
347
348 void CustomTrackView::slotAddEffect(QMap <QString, QString> filter)
349 {
350   QList<QGraphicsItem *> itemList = items();
351   for (int i = 0; i < itemList.count(); i++) {
352     if (itemList.at(i)->type() == 70000 && itemList.at(i)->isSelected()) {
353       ClipItem *item = (ClipItem *)itemList.at(i);
354       QString tag = filter.value("mlt_service");
355       AddEffectCommand *command = new AddEffectCommand(this, m_tracksCount - item->track(),GenTime(item->startPos(), m_document->fps()), tag, filter, true);
356       m_commandStack->push(command);    
357     }
358   }
359 }
360
361 void CustomTrackView::addItem(DocClipBase *clip, QPoint pos)
362 {
363   int in =0;
364   int out = clip->duration().frames(m_document->fps());
365   //kdDebug()<<"- - - -CREATING CLIP, duration = "<<out<<", URL: "<<clip->fileURL();
366   int trackTop = ((int) mapToScene(pos).y()/50) * 50 + 1;
367   m_dropItem = new ClipItem(clip, ((int) mapToScene(pos).y()/50), in, QRectF(mapToScene(pos).x() * m_scale, trackTop, out * m_scale, 49), out);
368   scene()->addItem(m_dropItem);
369 }
370
371
372 void CustomTrackView::dragMoveEvent(QDragMoveEvent * event) {
373   event->setDropAction(Qt::IgnoreAction);
374   if (m_dropItem) {
375     int track = (int) mapToScene(event->pos()).y()/50; //) * (m_scale * 50) + m_scale;
376      kDebug()<<"+++++++++++++   DRAG MOVE, : "<<mapToScene(event->pos()).x()<<", SCAL: "<<m_scale;
377     m_dropItem->moveTo(mapToScene(event->pos()).x() / m_scale, m_scale, (track - m_dropItem->track()) * 50, track);
378   }
379        //if (item) {
380   event->setDropAction(Qt::MoveAction);
381   if (event->mimeData()->hasText()) {
382     event->acceptProposedAction();
383   }
384         //}
385 }
386
387 void CustomTrackView::dragLeaveEvent ( QDragLeaveEvent * event ) {
388   if (m_dropItem) {
389     delete m_dropItem;
390     m_dropItem = NULL;
391   }
392 }
393
394 void CustomTrackView::dropEvent ( QDropEvent * event ) {
395   if (m_dropItem) {
396     AddTimelineClipCommand *command = new AddTimelineClipCommand(this, m_dropItem->xml(), m_dropItem->clipProducer(), m_dropItem->track(), m_dropItem->startPos(), m_dropItem->rect(), m_dropItem->duration(), false, false);
397     m_commandStack->push(command);
398     m_dropItem->baseClip()->addReference();
399     m_document->updateClip(m_dropItem->baseClip()->getId());
400     kDebug()<<"IIIIIIIIIIIIIIIIIIIIIIII TRAX CNT: "<<m_tracksCount<<", DROP: "<<m_dropItem->track();
401     m_document->renderer()->mltInsertClip(m_tracksCount - m_dropItem->track(), GenTime(m_dropItem->startPos(), m_document->fps()), m_dropItem->xml());
402   }
403   m_dropItem = NULL;
404 }
405
406
407 QStringList CustomTrackView::mimeTypes () const
408 {
409     QStringList qstrList;
410     // list of accepted mime types for drop
411     qstrList.append("text/plain");
412     return qstrList;
413 }
414
415 Qt::DropActions CustomTrackView::supportedDropActions () const
416 {
417     // returns what actions are supported when dropping
418     return Qt::MoveAction;
419 }
420
421 void CustomTrackView::setDuration(int duration)
422 {
423   kDebug()<<"/////////////  PRO DUR: "<<duration<<", height: "<<50 * m_tracksCount;
424   m_projectDuration = duration;
425   scene()->setSceneRect(0, 0, m_projectDuration + 500, scene()->sceneRect().height()); //50 * m_tracksCount);
426 }
427
428
429 void CustomTrackView::addTrack ()
430 {
431   m_tracksCount++;
432   m_cursorLine->setLine(m_cursorLine->line().x1(), 0, m_cursorLine->line().x1(), 50 * m_tracksCount);
433   //setSceneRect(0, 0, sceneRect().width(), 50 * m_tracksCount);
434   //verticalScrollBar()->setMaximum(50 * m_tracksCount); 
435   //setFixedHeight(50 * m_tracksCount);
436 }
437
438 void CustomTrackView::removeTrack ()
439 {
440   m_tracksCount--;
441   m_cursorLine->setLine(m_cursorLine->line().x1(), 0, m_cursorLine->line().x1(), 50 * m_tracksCount);
442 }
443
444 void CustomTrackView::deleteClip(int clipId)
445 {
446   QList<QGraphicsItem *> itemList = items();
447   for (int i = 0; i < itemList.count(); i++) {
448     if (itemList.at(i)->type() == 70000) {
449       ClipItem *item = (ClipItem *)itemList.at(i);
450       if (item->clipProducer() == clipId) {
451         AddTimelineClipCommand *command = new AddTimelineClipCommand(this, item->xml(), item->clipProducer(), item->track(), item->startPos(), item->rect(), item->duration(), true, true);
452         m_commandStack->push(command);
453         //delete item;
454       }
455     }
456   }
457 }
458
459 void CustomTrackView::setCursorPos(int pos, bool seek)
460 {
461   m_cursorPos = pos;
462   m_cursorLine->setPos(pos, 0);
463   int frame = mapToScene(QPoint(pos, 0)).x() / m_scale;
464   if (seek) m_document->renderer()->seek(GenTime(frame, m_document->fps()));
465 }
466
467 int CustomTrackView::cursorPos()
468 {
469   return m_cursorPos;
470 }
471
472 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
473 {
474   QGraphicsView::mouseReleaseEvent(event);
475   setDragMode(QGraphicsView::NoDrag);
476   if (m_dragItem == NULL) return;
477   //kDebug()<<"/// MOVING CLIP: "<<m_startPos<<", END: "<<QPoint(m_dragItem->rect().x(),m_dragItem->rect().y());
478   if (m_operationMode == MOVE && m_startPos.x() != m_dragItem->startPos()) {
479     // move clip
480     MoveClipCommand *command = new MoveClipCommand(this, m_startPos, QPointF(m_dragItem->startPos(), m_dragItem->track()), false);
481     m_commandStack->push(command);
482     m_document->renderer()->mltMoveClip(m_tracksCount - m_startPos.y(), m_tracksCount - m_dragItem->track(), m_startPos.x(), m_dragItem->startPos());
483   }
484   else if (m_operationMode == RESIZESTART) {
485     // resize start
486     ResizeClipCommand *command = new ResizeClipCommand(this, m_startPos, QPointF(m_dragItem->startPos(), m_dragItem->track()), true, false);
487
488     m_document->renderer()->mltResizeClipStart(m_tracksCount - m_dragItem->track(), GenTime(m_dragItem->endPos(), m_document->fps()), GenTime(m_dragItem->startPos(), m_document->fps()), GenTime(m_startPos.x(), m_document->fps()), GenTime(m_dragItem->cropStart(), m_document->fps()), GenTime(m_dragItem->cropStart(), m_document->fps()) + GenTime(m_dragItem->endPos(), m_document->fps()) - GenTime(m_dragItem->startPos(), m_document->fps()));
489     m_commandStack->push(command);
490     m_document->renderer()->doRefresh();
491   }
492   else if (m_operationMode == RESIZEEND) {
493     // resize end
494     ResizeClipCommand *command = new ResizeClipCommand(this, m_startPos, QPointF(m_dragItem->endPos(), m_dragItem->track()), false, false);
495
496     m_document->renderer()->mltResizeClipEnd(m_tracksCount - m_dragItem->track(), GenTime(m_dragItem->startPos(), m_document->fps()), GenTime(m_dragItem->cropStart(), m_document->fps()), GenTime(m_dragItem->cropStart(), m_document->fps()) + GenTime(m_dragItem->endPos(), m_document->fps()) - GenTime(m_dragItem->startPos(), m_document->fps()));
497     m_commandStack->push(command);
498     m_document->renderer()->doRefresh();
499   }
500   m_operationMode = NONE;
501   m_dragItem = NULL; 
502 }
503
504 void CustomTrackView::deleteClip (int track, int startpos, const QRectF &rect )
505 {
506   ClipItem *item = getClipItemAt(startpos, track);
507   if (!item) {
508     kDebug()<<"----------------  ERROR, CANNOT find clip to move at: "<<rect.x();
509     return;
510   }
511   item->baseClip()->removeReference();
512   m_document->updateClip(item->baseClip()->getId());
513   delete item;
514   m_document->renderer()->mltRemoveClip(m_tracksCount - track, GenTime(startpos, m_document->fps()));
515   m_document->renderer()->doRefresh();
516 }
517
518 void CustomTrackView::addClip ( QDomElement xml, int clipId, int track, int startpos, const QRectF &rect, int duration )
519 {
520   QRect r(startpos * m_scale, 50 * track, duration * m_scale, 49); 
521   DocClipBase *baseclip = m_document->clipManager()->getClipById(clipId);
522   ClipItem *item = new ClipItem(baseclip, track, startpos, r, duration);
523   scene()->addItem(item);
524   baseclip->addReference();
525   m_document->updateClip(baseclip->getId());
526   m_document->renderer()->mltInsertClip(m_tracksCount - track, GenTime(startpos, m_document->fps()), xml);
527   m_document->renderer()->doRefresh();
528 }
529
530 ClipItem *CustomTrackView::getClipItemAt(int pos, int track)
531 {
532   return (ClipItem *) scene()->itemAt(pos * m_scale, track * 50 + 25);
533 }
534
535 void CustomTrackView::moveClip ( const QPointF &startPos, const QPointF &endPos )
536 {
537   ClipItem *item = getClipItemAt(startPos.x() + 1, startPos.y());
538   if (!item) {
539     kDebug()<<"----------------  ERROR, CANNOT find clip to move at: "<<startPos.x() * m_scale * FRAME_SIZE + 1<<", "<<startPos.y() * 50 + 25;
540     return;
541   }
542   kDebug()<<"----------------  Move CLIP FROM: "<<startPos.x()<<", END:"<<endPos.x();
543   item->moveTo(endPos.x(), m_scale, (endPos.y() - startPos.y()) * 50, endPos.y());
544   m_document->renderer()->mltMoveClip(m_tracksCount - startPos.y(), m_tracksCount - endPos.y(), startPos.x(), endPos.x());
545 }
546
547 void CustomTrackView::resizeClip ( const QPointF &startPos, const QPointF &endPos, bool resizeClipStart )
548 {
549   int offset;
550   if (resizeClipStart) offset = 1;
551   else offset = -1;
552   ClipItem *item = getClipItemAt(startPos.x() + offset, startPos.y());
553   if (!item) {
554     kDebug()<<"----------------  ERROR, CANNOT find clip to resize at: "<<startPos;
555     return;
556   }
557   qreal diff = endPos.x() - startPos.x();
558   if (resizeClipStart) {
559     m_document->renderer()->mltResizeClipStart(m_tracksCount - item->track(), GenTime(item->endPos(), m_document->fps()), GenTime(endPos.x(), m_document->fps()), GenTime(item->startPos(), m_document->fps()), GenTime(item->cropStart() + diff, m_document->fps()), GenTime(item->cropStart() + diff, m_document->fps()) + GenTime(item->endPos(), m_document->fps()) - GenTime(endPos.x(), m_document->fps()));
560     item->resizeStart(endPos.x(), m_scale);
561   }
562   else {
563     m_document->renderer()->mltResizeClipEnd(m_tracksCount - item->track(), GenTime(item->startPos(), m_document->fps()), GenTime(item->cropStart(), m_document->fps()), GenTime(item->cropStart(), m_document->fps()) + GenTime(endPos.x(), m_document->fps()) - GenTime(item->startPos(), m_document->fps()));
564     item->resizeEnd(endPos.x(), m_scale);
565   }
566   m_document->renderer()->doRefresh();
567 }
568
569 double CustomTrackView::getSnapPointForPos(double pos)
570 {
571   for (int i = 0; i < m_snapPoints.size(); ++i) {
572     //kDebug()<<"SNAP POINT: "<<m_snapPoints.at(i);
573     if (abs(pos - m_snapPoints.at(i) * m_scale) < 6 * m_scale) {
574       //kDebug()<<" FOUND SNAP POINT AT: "<<m_snapPoints.at(i)<<", current pos: "<<pos / m_scale;
575       return m_snapPoints.at(i) * m_scale + 0.5;
576     }
577     if (m_snapPoints.at(i) > pos) break;
578   }
579   return pos;
580 }
581
582 void CustomTrackView::updateSnapPoints(ClipItem *selected)
583 {
584   m_snapPoints.clear();
585   int offset = 0;
586   if (selected) offset = selected->duration();
587   QList<QGraphicsItem *> itemList = items();
588   for (int i = 0; i < itemList.count(); i++) {
589     if (itemList.at(i)->type() == 70000 && itemList.at(i) != selected) {
590       ClipItem *item = (ClipItem *)itemList.at(i);
591       int start = item->startPos();
592       int fadein = item->fadeIn() + start;
593       int end = item->endPos();
594       int fadeout = end - item->fadeOut();
595       m_snapPoints.append(start);
596       if (fadein != start) m_snapPoints.append(fadein);
597       m_snapPoints.append(end);
598       if (fadeout != end) m_snapPoints.append(fadeout);
599       if (offset != 0) {
600         m_snapPoints.append(start - offset);
601         if (fadein != start) m_snapPoints.append(fadein - offset);
602         m_snapPoints.append(end - offset);
603         if (fadeout != end) m_snapPoints.append(fadeout - offset);
604       }
605     }
606   }
607   kDebug()<<" GOT SNAPPOINTS TOTAL: "<<m_snapPoints.count();
608   qSort(m_snapPoints);
609   for (int i = 0; i < m_snapPoints.size(); ++i)
610     kDebug()<<"SNAP POINT: "<<m_snapPoints.at(i);
611 }
612
613
614 void CustomTrackView::setScale(double scaleFactor)
615 {
616   //scale(scaleFactor, scaleFactor);
617   m_scale = scaleFactor;
618   kDebug()<<" HHHHHHHH  SCALING: "<<m_scale;
619   QList<QGraphicsItem *> itemList = items();
620
621   for (int i = 0; i < itemList.count(); i++) {
622       if (itemList.at(i)->type() == 70000) {
623         ClipItem *clip = (ClipItem *)itemList.at(i);
624         clip->setRect(clip->startPos() * m_scale, clip->rect().y(), clip->duration() * m_scale, clip->rect().height());
625       }
626       /*else if (itemList.at(i)->type() == 70001) {
627         LabelItem *label = (LabelItem *)itemList.at(i);
628         QGraphicsItem *parent = label->parentItem();
629         QRectF r = label->boundingRect();
630         QRectF p = parent->boundingRect();
631         label->setPos(p.x() + p.width() / 2 - r.width() / 2, p.y() + p.height() / 2 - r.height() / 2);
632         //label->setRect(clip->startPos() * m_scale, clip->rect().y(), clip->duration() * m_scale, clip->rect().height());
633       }*/
634     }
635 }
636
637 void CustomTrackView::drawBackground ( QPainter * painter, const QRectF & rect )  
638 {
639   QColor base = palette().button().color();
640   //painter->setPen(base);
641   painter->setClipRect(rect);
642   painter->drawLine(0, 0, rect.width(), 0);
643     for (uint i = 0; i < m_tracksCount;i++)
644     {
645       painter->drawLine(0, 50 * (i+1), width(), 50 * (i+1));
646       painter->drawText(QRectF(10, 50 * i, 100, 50 * i + 49), Qt::AlignLeft, i18n(" Track ") + QString::number(i + 1));
647     }
648   int lowerLimit = 50 * m_tracksCount;
649   if (height() > lowerLimit)
650   painter->fillRect(QRectF(0, lowerLimit, rect.width(), height() - lowerLimit), QBrush(base));
651 }
652 /*
653 void CustomTrackView::drawForeground ( QPainter * painter, const QRectF & rect )  
654 {
655   //kDebug()<<"/////  DRAWING FB: "<<rect.x()<<", width: "<<rect.width();
656   painter->fillRect(rect, QColor(50, rand() % 250,50,100));
657   painter->drawLine(m_cursorPos, rect.y(), m_cursorPos, rect.y() + rect.height());
658 }
659 */
660 #include "customtrackview.moc"