]> git.sesse.net Git - kdenlive/blob - src/customtrackview.cpp
Make project monitor usable
[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) m_startPos = QPointF(m_dragItem->startPos(), m_dragItem->track());
282         else if (m_operationMode == RESIZEEND) m_startPos = QPointF(m_dragItem->endPos(), m_dragItem->track());
283         kDebug()<<"//////// ITEM CLICKED: "<<m_startPos;
284         collision = true;
285         break;
286       }
287     }
288     if (!collision) {
289       kDebug()<<"//////// NO ITEM FOUND ON CLICK";
290       m_dragItem = NULL;
291       setCursor(Qt::ArrowCursor);
292       setCursorPos((int) mapToScene(event->x(), 0).x());
293       emit cursorMoved(cursorPos());
294     }
295   }
296   updateSnapPoints(m_dragItem);
297   //kDebug()<<pos;
298   QGraphicsView::mousePressEvent(event);
299 }
300
301 void CustomTrackView::dragEnterEvent ( QDragEnterEvent * event )
302 {
303   if (event->mimeData()->hasText()) {
304     QString clip = event->mimeData()->text();
305     addItem(clip, event->pos());
306     event->acceptProposedAction();
307   }
308 }
309
310
311 void CustomTrackView::addItem(QString producer, QPoint pos)
312 {
313   QDomDocument doc;
314   doc.setContent(producer);
315   QDomElement elem = doc.documentElement();
316   int in = elem.attribute("in", 0).toInt();
317   int out = elem.attribute("out", 0).toInt() - in;
318   if (out == 0) out = elem.attribute("duration", 0).toInt();
319   kDebug()<<"ADDING CLIP: "<<producer<<", OUT: "<<out<<", POS: "<<mapToScene(pos);
320   int trackTop = ((int) mapToScene(pos).y()/50) * 50 + 1;
321   m_dropItem = new ClipItem(elem, ((int) mapToScene(pos).y()/50), in, QRectF(mapToScene(pos).x() * m_scale, trackTop, out * m_scale, 49), out);
322   scene()->addItem(m_dropItem);
323 }
324
325
326 void CustomTrackView::dragMoveEvent(QDragMoveEvent * event) {
327   event->setDropAction(Qt::IgnoreAction);
328   if (m_dropItem) {
329     int track = (int) mapToScene(event->pos()).y()/50; //) * (m_scale * 50) + m_scale;
330      kDebug()<<"+++++++++++++   DRAG MOVE, : "<<mapToScene(event->pos()).x()<<", SCAL: "<<m_scale;
331     m_dropItem->moveTo(mapToScene(event->pos()).x() / m_scale, m_scale, (track - m_dropItem->track()) * 50, track);
332   }
333        //if (item) {
334   event->setDropAction(Qt::MoveAction);
335   if (event->mimeData()->hasText()) {
336     event->acceptProposedAction();
337   }
338         //}
339 }
340
341 void CustomTrackView::dragLeaveEvent ( QDragLeaveEvent * event ) {
342   if (m_dropItem) {
343     delete m_dropItem;
344     m_dropItem = NULL;
345   }
346 }
347
348 void CustomTrackView::dropEvent ( QDropEvent * event ) {
349   if (m_dropItem) {
350     AddTimelineClipCommand *command = new AddTimelineClipCommand(this, m_dropItem->xml(), m_dropItem->track(), m_dropItem->startPos(), m_dropItem->rect(), m_dropItem->duration(), false);
351     m_commandStack->push(command);
352     m_document->renderer()->mltInsertClip(m_tracksCount - m_dropItem->track() + 1, GenTime(m_dropItem->startPos(), 25), m_dropItem->xml());
353   }
354   m_dropItem = NULL;
355 }
356
357
358 QStringList CustomTrackView::mimeTypes () const
359 {
360     QStringList qstrList;
361     // list of accepted mime types for drop
362     qstrList.append("text/plain");
363     return qstrList;
364 }
365
366 Qt::DropActions CustomTrackView::supportedDropActions () const
367 {
368     // returns what actions are supported when dropping
369     return Qt::MoveAction;
370 }
371
372 void CustomTrackView::setDuration(int duration)
373 {
374   kDebug()<<"/////////////  PRO DUR: "<<duration<<", height: "<<50 * m_tracksCount;
375   m_projectDuration = duration;
376   scene()->setSceneRect(0, 0, m_projectDuration + 500, scene()->sceneRect().height()); //50 * m_tracksCount);
377 }
378
379
380 void CustomTrackView::addTrack ()
381 {
382   m_tracksCount++;
383   m_cursorLine->setLine(m_cursorLine->line().x1(), 0, m_cursorLine->line().x1(), 50 * m_tracksCount);
384   //setSceneRect(0, 0, sceneRect().width(), 50 * m_tracksCount);
385   //verticalScrollBar()->setMaximum(50 * m_tracksCount); 
386   //setFixedHeight(50 * m_tracksCount);
387 }
388
389 void CustomTrackView::removeTrack ()
390 {
391   m_tracksCount--;
392   m_cursorLine->setLine(m_cursorLine->line().x1(), 0, m_cursorLine->line().x1(), 50 * m_tracksCount);
393 }
394
395 void CustomTrackView::setCursorPos(int pos, bool seek)
396 {
397   m_cursorPos = pos;
398   m_cursorLine->setPos(pos, 0);
399   int frame = mapToScene(QPoint(pos, 0)).x() / m_scale;
400   if (seek) m_document->renderer()->seek(GenTime(frame, 25));
401 }
402
403 int CustomTrackView::cursorPos()
404 {
405   return m_cursorPos;
406 }
407
408 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
409 {
410   QGraphicsView::mouseReleaseEvent(event);
411   setDragMode(QGraphicsView::NoDrag);
412   if (m_dragItem == NULL) return;
413   //kDebug()<<"/// MOVING CLIP: "<<m_startPos<<", END: "<<QPoint(m_dragItem->rect().x(),m_dragItem->rect().y());
414   if (m_operationMode == MOVE) {
415     // move clip
416     MoveClipCommand *command = new MoveClipCommand(this, m_startPos, QPointF(m_dragItem->startPos(), m_dragItem->track()), false);
417     m_commandStack->push(command);
418   }
419   else if (m_operationMode == RESIZESTART) {
420     // resize start
421     ResizeClipCommand *command = new ResizeClipCommand(this, m_startPos, QPointF(m_dragItem->startPos(), m_dragItem->track()), true, false);
422     m_commandStack->push(command);
423   }
424   else if (m_operationMode == RESIZEEND) {
425     // resize end
426     ResizeClipCommand *command = new ResizeClipCommand(this, m_startPos, QPointF(m_dragItem->endPos(), m_dragItem->track()), false, false);
427     m_commandStack->push(command);
428   }
429   m_operationMode = NONE;
430   m_dragItem = NULL; 
431 }
432
433 void CustomTrackView::deleteClip ( const QRectF &rect )
434 {
435   ClipItem *item = (ClipItem *) scene()->itemAt(rect.x() + 1, rect.y() + 1);
436   if (!item) {
437     kDebug()<<"----------------  ERROR, CANNOT find clip to move at: "<<rect.x();
438     return;
439   }
440   delete item;
441 }
442
443 void CustomTrackView::addClip ( QDomElement xml, int track, int startpos, const QRectF &rect, int duration )
444 {
445   QRect r(startpos * m_scale, 50 * track, duration * m_scale, 49); 
446   ClipItem *item = new ClipItem(xml, track, startpos, r, duration);
447   scene()->addItem(item);
448 }
449
450 void CustomTrackView::moveClip ( const QPointF &startPos, const QPointF &endPos )
451 {
452   ClipItem *item = (ClipItem *) scene()->itemAt((startPos.x() + 1) * m_scale, startPos.y() * 50 + 25);
453   if (!item) {
454     kDebug()<<"----------------  ERROR, CANNOT find clip to move at: "<<startPos.x() * m_scale * FRAME_SIZE + 1<<", "<<startPos.y() * 50 + 25;
455     return;
456   }
457   kDebug()<<"----------------  Move CLIP FROM: "<<startPos.x()<<", END:"<<endPos.x();
458   item->moveTo(endPos.x(), m_scale, (endPos.y() - startPos.y()) * 50, endPos.y());
459 }
460
461 void CustomTrackView::resizeClip ( const QPointF &startPos, const QPointF &endPos, bool resizeClipStart )
462 {
463   int offset;
464   if (resizeClipStart) offset = 1;
465   else offset = -1;
466   ClipItem *item = (ClipItem *) scene()->itemAt((startPos.x() + offset) * m_scale, startPos.y() * 50 + 25);
467   if (!item) {
468     kDebug()<<"----------------  ERROR, CANNOT find clip to resize at: "<<startPos;
469     return;
470   }
471   qreal diff = endPos.x() - startPos.x();
472   if (resizeClipStart) {
473     item->resizeStart(endPos.x(), m_scale);
474   }
475   else {
476     item->resizeEnd(endPos.x(), m_scale);
477   }
478 }
479
480 double CustomTrackView::getSnapPointForPos(double pos)
481 {
482   for (int i = 0; i < m_snapPoints.size(); ++i) {
483     //kDebug()<<"SNAP POINT: "<<m_snapPoints.at(i);
484     if (abs(pos - m_snapPoints.at(i) * m_scale) < 6 * m_scale) {
485       //kDebug()<<" FOUND SNAP POINT AT: "<<m_snapPoints.at(i)<<", current pos: "<<pos / m_scale;
486       return m_snapPoints.at(i) * m_scale + 0.5;
487     }
488     if (m_snapPoints.at(i) > pos) break;
489   }
490   return pos;
491 }
492
493 void CustomTrackView::updateSnapPoints(ClipItem *selected)
494 {
495   m_snapPoints.clear();
496   int offset = 0;
497   if (selected) offset = selected->duration();
498   QList<QGraphicsItem *> itemList = items();
499   for (int i = 0; i < itemList.count(); i++) {
500     if (itemList.at(i)->type() == 70000 && itemList.at(i) != selected) {
501       ClipItem *item = (ClipItem *)itemList.at(i);
502       int start = item->startPos();
503       int fadein = item->fadeIn() + start;
504       int end = item->endPos();
505       int fadeout = end - item->fadeOut();
506       m_snapPoints.append(start);
507       if (fadein != start) m_snapPoints.append(fadein);
508       m_snapPoints.append(end);
509       if (fadeout != end) m_snapPoints.append(fadeout);
510       if (offset != 0) {
511         m_snapPoints.append(start - offset);
512         if (fadein != start) m_snapPoints.append(fadein - offset);
513         m_snapPoints.append(end - offset);
514         if (fadeout != end) m_snapPoints.append(fadeout - offset);
515       }
516     }
517   }
518   kDebug()<<" GOT SNAPPOINTS TOTAL: "<<m_snapPoints.count();
519   qSort(m_snapPoints);
520   for (int i = 0; i < m_snapPoints.size(); ++i)
521     kDebug()<<"SNAP POINT: "<<m_snapPoints.at(i);
522 }
523
524
525 void CustomTrackView::setScale(double scaleFactor)
526 {
527   //scale(scaleFactor, scaleFactor);
528   m_scale = scaleFactor;
529   kDebug()<<" HHHHHHHH  SCALING: "<<m_scale;
530   QList<QGraphicsItem *> itemList = items();
531
532   for (int i = 0; i < itemList.count(); i++) {
533       if (itemList.at(i)->type() == 70000) {
534         ClipItem *clip = (ClipItem *)itemList.at(i);
535         clip->setRect(clip->startPos() * m_scale, clip->rect().y(), clip->duration() * m_scale, clip->rect().height());
536       }
537       /*else if (itemList.at(i)->type() == 70001) {
538         LabelItem *label = (LabelItem *)itemList.at(i);
539         QGraphicsItem *parent = label->parentItem();
540         QRectF r = label->boundingRect();
541         QRectF p = parent->boundingRect();
542         label->setPos(p.x() + p.width() / 2 - r.width() / 2, p.y() + p.height() / 2 - r.height() / 2);
543         //label->setRect(clip->startPos() * m_scale, clip->rect().y(), clip->duration() * m_scale, clip->rect().height());
544       }*/
545     }
546 }
547
548 void CustomTrackView::drawBackground ( QPainter * painter, const QRectF & rect )  
549 {
550   QColor base = palette().button().color();
551   painter->setPen(base);
552   painter->setClipRect(rect);
553   painter->drawLine(0, 0, rect.width(), 0);
554     for (uint i = 0; i < m_tracksCount;i++)
555     {
556     painter->drawLine(0, 50 * (i+1), width(), 50 * (i+1));
557       //painter->drawText(QRectF(10, 50 * i, 100, 50 * i + 49), Qt::AlignLeft, i18n(" Track ") + QString::number(i));
558     }
559   int lowerLimit = 50 * m_tracksCount;
560   if (height() > lowerLimit)
561   painter->fillRect(QRectF(0, lowerLimit, rect.width(), height() - lowerLimit), QBrush(base));
562 }
563 /*
564 void CustomTrackView::drawForeground ( QPainter * painter, const QRectF & rect )  
565 {
566   //kDebug()<<"/////  DRAWING FB: "<<rect.x()<<", width: "<<rect.width();
567   painter->fillRect(rect, QColor(50, rand() % 250,50,100));
568   painter->drawLine(m_cursorPos, rect.y(), m_cursorPos, rect.y() + rect.height());
569 }
570 */
571 #include "customtrackview.moc"