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