]> git.sesse.net Git - kdenlive/blob - src/customruler.cpp
Fix timeline seek sometimes not refreshing on last frame of the seek, small update...
[kdenlive] / src / customruler.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 "customruler.h"
21 #include "kdenlivesettings.h"
22
23 #include <KDebug>
24 #include <KIcon>
25 #include <KCursor>
26 #include <KGlobalSettings>
27 #include <KColorScheme>
28
29 #include <QApplication>
30 #include <QMouseEvent>
31 #include <QStylePainter>
32
33 static int MAX_HEIGHT;
34 // Width of a frame in pixels
35 static int FRAME_SIZE;
36 // Height of the timecode text
37 static int LABEL_SIZE;
38
39 static int BIG_MARK_X;
40 static int MIDDLE_MARK_X;
41 static int LITTLE_MARK_X;
42
43 static int littleMarkDistance;
44 static int mediumMarkDistance;
45 static int bigMarkDistance;
46
47 #define SEEK_INACTIVE (-1)
48
49 #include "definitions.h"
50
51 const int CustomRuler::comboScale[] = { 1, 2, 5, 10, 25, 50, 125, 250, 500, 750, 1500, 3000, 6000, 12000};
52
53 CustomRuler::CustomRuler(Timecode tc, CustomTrackView *parent) :
54         QWidget(parent),
55         m_timecode(tc),
56         m_view(parent),
57         m_duration(0),
58         m_offset(0),
59         m_lastSeekPosition(SEEK_INACTIVE),
60         m_clickedGuide(-1),
61         m_rate(-1),
62         m_mouseMove(NO_MOVE),
63         m_cursorColor(palette().text())
64 {
65     setFont(KGlobalSettings::toolBarFont());
66     QFontMetricsF fontMetrics(font());
67     // Define size variables
68     LABEL_SIZE = fontMetrics.ascent();
69     setMinimumHeight(LABEL_SIZE * 2);
70     setMaximumHeight(LABEL_SIZE * 2);
71     MAX_HEIGHT = height();
72     BIG_MARK_X = LABEL_SIZE + 1;
73     int mark_length = MAX_HEIGHT - BIG_MARK_X;
74     MIDDLE_MARK_X = BIG_MARK_X + mark_length / 2;
75     LITTLE_MARK_X = BIG_MARK_X + mark_length / 3;
76     updateFrameSize();
77     m_scale = 3;
78     m_zoneColor = KStatefulBrush(KColorScheme::View, KColorScheme::FocusColor, KSharedConfig::openConfig(KdenliveSettings::colortheme())).brush(this).color();
79     m_zoneColor.setAlpha(180);
80     m_zoneStart = 0;
81     m_zoneEnd = 100;
82     m_contextMenu = new QMenu(this);
83     QAction *addGuide = m_contextMenu->addAction(KIcon("document-new"), i18n("Add Guide"));
84     connect(addGuide, SIGNAL(triggered()), m_view, SLOT(slotAddGuide()));
85     m_editGuide = m_contextMenu->addAction(KIcon("document-properties"), i18n("Edit Guide"));
86     connect(m_editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
87     m_deleteGuide = m_contextMenu->addAction(KIcon("edit-delete"), i18n("Delete Guide"));
88     connect(m_deleteGuide , SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
89     QAction *delAllGuides = m_contextMenu->addAction(KIcon("edit-delete"), i18n("Delete All Guides"));
90     connect(delAllGuides, SIGNAL(triggered()), m_view, SLOT(slotDeleteAllGuides()));
91     m_goMenu = m_contextMenu->addMenu(i18n("Go To"));
92     connect(m_goMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotGoToGuide(QAction *)));
93     setMouseTracking(true);
94 }
95
96 void CustomRuler::updatePalette()
97 {
98     m_zoneColor = KStatefulBrush(KColorScheme::View, KColorScheme::FocusColor, KSharedConfig::openConfig(KdenliveSettings::colortheme())).brush(this).color();
99     m_zoneColor.setAlpha(180);
100 }
101
102 void CustomRuler::updateProjectFps(Timecode t)
103 {
104     m_timecode = t;
105     mediumMarkDistance = FRAME_SIZE * m_timecode.fps();
106     bigMarkDistance = FRAME_SIZE * m_timecode.fps() * 60;
107     update();
108 }
109
110 void CustomRuler::updateFrameSize()
111 {
112     FRAME_SIZE = m_view->getFrameWidth();
113     littleMarkDistance = FRAME_SIZE;
114     mediumMarkDistance = FRAME_SIZE * m_timecode.fps();
115     bigMarkDistance = FRAME_SIZE * m_timecode.fps() * 60;
116     updateProjectFps(m_timecode);
117     if (m_rate > 0) setPixelPerMark(m_rate);
118 }
119
120 void CustomRuler::slotEditGuide()
121 {
122     m_view->slotEditGuide(m_clickedGuide);
123 }
124
125 void CustomRuler::slotDeleteGuide()
126 {
127     m_view->slotDeleteGuide(m_clickedGuide);
128 }
129
130 void CustomRuler::slotGoToGuide(QAction *act)
131 {
132     m_view->seekCursorPos(act->data().toInt());
133     m_view->initCursorPos(act->data().toInt());
134 }
135
136 void CustomRuler::setZone(QPoint p)
137 {
138     m_zoneStart = p.x();
139     m_zoneEnd = p.y();
140     update();
141 }
142
143 void CustomRuler::mouseReleaseEvent(QMouseEvent * /*event*/)
144 {
145     if (m_moveCursor == RULER_START || m_moveCursor == RULER_END || m_moveCursor == RULER_MIDDLE) {
146         emit zoneMoved(m_zoneStart, m_zoneEnd);
147         m_view->setDocumentModified();
148     }
149     m_mouseMove = NO_MOVE;
150
151 }
152
153 // virtual
154 void CustomRuler::mousePressEvent(QMouseEvent * event)
155 {
156     int pos = (int)((event->x() + offset()));
157     if (event->button() == Qt::RightButton) {
158         m_clickedGuide = m_view->hasGuide((int)(pos / m_factor), (int)(5 / m_factor + 1));
159         m_editGuide->setEnabled(m_clickedGuide > 0);
160         m_deleteGuide->setEnabled(m_clickedGuide > 0);
161         m_view->buildGuidesMenu(m_goMenu);
162         m_contextMenu->exec(event->globalPos());
163         return;
164     }
165     setFocus(Qt::MouseFocusReason);
166     m_view->activateMonitor();
167     m_moveCursor = RULER_CURSOR;
168     if (event->y() > 10) {
169         if (qAbs(pos - m_zoneStart * m_factor) < 4) m_moveCursor = RULER_START;
170         else if (qAbs(pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2.0) * m_factor) < 4) m_moveCursor = RULER_MIDDLE;
171         else if (qAbs(pos - m_zoneEnd * m_factor) < 4) m_moveCursor = RULER_END;
172         m_view->updateSnapPoints(NULL);
173     }
174     if (m_moveCursor == RULER_CURSOR) {
175         m_view->seekCursorPos((int) pos / m_factor);
176         m_clickPoint = event->pos();
177         m_startRate = m_rate;
178     }
179 }
180
181 // virtual
182 void CustomRuler::mouseMoveEvent(QMouseEvent * event)
183 {
184     if (event->buttons() == Qt::LeftButton) {
185         int pos;
186         if (m_moveCursor == RULER_START || m_moveCursor == RULER_END) {
187             pos = m_view->getSnapPointForPos((int)((event->x() + offset()) / m_factor));
188         } else pos = (int)((event->x() + offset()) / m_factor);
189         int zoneStart = m_zoneStart;
190         int zoneEnd = m_zoneEnd;
191         if (pos < 0) pos = 0;
192         if (m_moveCursor == RULER_CURSOR) {
193             QPoint diff = event->pos() - m_clickPoint;
194             if (m_mouseMove == NO_MOVE) {
195                 if (qAbs(diff.x()) >= QApplication::startDragDistance()) {
196                     m_mouseMove = HORIZONTAL_MOVE;
197                 } else if (KdenliveSettings::verticalzoom() && qAbs(diff.y()) >= QApplication::startDragDistance()) {
198                     m_mouseMove = VERTICAL_MOVE;
199                 } else return;
200             }
201             if (m_mouseMove == HORIZONTAL_MOVE) {
202                 if (pos != m_lastSeekPosition && pos != m_view->cursorPos()) {
203                     m_view->seekCursorPos(pos);
204                     m_view->slotCheckPositionScrolling();
205                 }
206             } else {
207                 int verticalDiff = m_startRate - (diff.y()) / 7;
208                 if (verticalDiff != m_rate) emit adjustZoom(verticalDiff);
209             }
210             return;
211         } else if (m_moveCursor == RULER_START) m_zoneStart = qMin(pos, m_zoneEnd - 1);
212         else if (m_moveCursor == RULER_END) m_zoneEnd = qMax(pos, m_zoneStart + 1);
213         else if (m_moveCursor == RULER_MIDDLE) {
214             int move = pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2);
215             if (move + m_zoneStart < 0) move = - m_zoneStart;
216             m_zoneStart += move;
217             m_zoneEnd += move;
218         }
219         int min = qMin(m_zoneStart, zoneStart);
220         int max = qMax(m_zoneEnd, zoneEnd);
221         update(min * m_factor - m_offset - 2, 0, (max - min) * m_factor + 4, height());
222
223     } else {
224         int pos = (int)((event->x() + m_offset));
225         if (m_cursorColor == palette().text() && qAbs(pos - m_view->cursorPos() * m_factor) < 7) {
226             // Mouse is over cursor
227             m_cursorColor = palette().link();
228             update(m_view->cursorPos() * m_factor - m_offset - 10, LABEL_SIZE + 2, 20, MAX_HEIGHT - LABEL_SIZE - 2);
229         }
230         else if (m_cursorColor == palette().link() && qAbs(pos - m_view->cursorPos() * m_factor) >= 7) {
231             m_cursorColor = palette().text();
232             update(m_view->cursorPos() * m_factor - m_offset - 10, LABEL_SIZE + 2, 20, MAX_HEIGHT - LABEL_SIZE - 2);
233         }
234         
235         if (event->y() <= 10) setCursor(Qt::ArrowCursor);
236         else if (qAbs(pos - m_zoneStart * m_factor) < 4) {
237             setCursor(KCursor("left_side", Qt::SizeHorCursor));
238             if (KdenliveSettings::frametimecode()) setToolTip(i18n("Zone start: %1", m_zoneStart));
239             else setToolTip(i18n("Zone start: %1", m_timecode.getTimecodeFromFrames(m_zoneStart)));
240         } else if (qAbs(pos - m_zoneEnd * m_factor) < 4) {
241             setCursor(KCursor("right_side", Qt::SizeHorCursor));
242             if (KdenliveSettings::frametimecode()) setToolTip(i18n("Zone end: %1", m_zoneEnd));
243             else setToolTip(i18n("Zone end: %1", m_timecode.getTimecodeFromFrames(m_zoneEnd)));
244         } else if (qAbs(pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2.0) * m_factor) < 4) {
245             setCursor(Qt::SizeHorCursor);
246             if (KdenliveSettings::frametimecode()) setToolTip(i18n("Zone duration: %1", m_zoneEnd - m_zoneStart));
247             else setToolTip(i18n("Zone duration: %1", m_timecode.getTimecodeFromFrames(m_zoneEnd - m_zoneStart)));
248         } else {
249             setCursor(Qt::ArrowCursor);
250             if (KdenliveSettings::frametimecode()) setToolTip(i18n("Position: %1", (int)(pos / m_factor)));
251             else setToolTip(i18n("Position: %1", m_timecode.getTimecodeFromFrames(pos / m_factor)));
252         }
253     }
254 }
255
256
257 // virtual
258 void CustomRuler::leaveEvent(QEvent * event)
259 {
260     QWidget::leaveEvent(event);
261     if (m_cursorColor == palette().link()) {
262         m_cursorColor = palette().text();
263         update();
264     }
265 }
266
267 // virtual
268 void CustomRuler::wheelEvent(QWheelEvent * e)
269 {
270     int delta = 1;
271     if (e->modifiers() == Qt::ControlModifier) delta = m_timecode.fps();
272     if (e->delta() < 0) delta = 0 - delta;
273     m_view->moveCursorPos(delta);
274 }
275
276 int CustomRuler::inPoint() const
277 {
278     return m_zoneStart;
279 }
280
281 int CustomRuler::outPoint() const
282 {
283     return m_zoneEnd;
284 }
285
286 void CustomRuler::slotMoveRuler(int newPos)
287 {
288     m_offset = newPos;
289     update();
290 }
291
292 int CustomRuler::offset() const
293 {
294     return m_offset;
295 }
296
297 void CustomRuler::slotCursorMoved(int oldpos, int newpos)
298 {
299     int min = qMin(oldpos, newpos);
300     int max = qMax(oldpos, newpos);
301     if (m_lastSeekPosition != SEEK_INACTIVE) {
302         if (m_lastSeekPosition == newpos) {
303             m_lastSeekPosition = SEEK_INACTIVE;
304         }
305         else {
306             min = qMin(min, m_lastSeekPosition);
307             max = qMax(max, m_lastSeekPosition);
308         }
309     }
310     update(min * m_factor - m_offset - 6, BIG_MARK_X, (max - min) * m_factor + 14, MAX_HEIGHT - BIG_MARK_X);
311 }
312
313 void CustomRuler::updateRuler()
314 {
315     // Update requested seek position
316     int min = SEEK_INACTIVE;
317     int max = SEEK_INACTIVE;
318     if (m_lastSeekPosition != SEEK_INACTIVE) {
319         min = max = m_lastSeekPosition;
320     }
321     m_lastSeekPosition = m_view->seekPosition();
322     if (m_lastSeekPosition != SEEK_INACTIVE) {
323         if (min == SEEK_INACTIVE) {
324             min = max = m_lastSeekPosition;
325         }
326         else {
327             min = qMin(min, m_lastSeekPosition);
328             max = qMax(max, m_lastSeekPosition);
329         }
330     }
331     if (min != SEEK_INACTIVE) {
332         update(min * m_factor - offset() - 3, BIG_MARK_X, (max - min) * m_factor + 6, MAX_HEIGHT - BIG_MARK_X);
333     }
334 }
335
336 void CustomRuler::setPixelPerMark(int rate)
337 {
338     int scale = comboScale[rate];
339     m_rate = rate;
340     m_factor = 1.0 / (double) scale * FRAME_SIZE;
341     m_scale = 1.0 / (double) scale;
342     double fend = m_scale * littleMarkDistance;
343     if (rate > 8) {
344         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
345         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 300;
346     } else if (rate > 6) {
347         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 10;
348         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 30;
349     } else if (rate > 3) {
350         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
351         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 5;
352     } else {
353         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
354         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
355     }
356     switch (rate) {
357     case 0:
358         m_textSpacing = fend;
359         break;
360     case 1:
361         m_textSpacing = fend * 5;
362         break;
363     case 2:
364     case 3:
365     case 4:
366         m_textSpacing = fend * m_timecode.fps();
367         break;
368     case 5:
369         m_textSpacing = fend * m_timecode.fps() * 5;
370         break;
371     case 6:
372         m_textSpacing = fend * m_timecode.fps() * 10;
373         break;
374     case 7:
375         m_textSpacing = fend * m_timecode.fps() * 30;
376         break;
377     case 8:
378     case 9:
379         m_textSpacing = fend * m_timecode.fps() * 40;
380         break;
381     case 10:
382         m_textSpacing = fend * m_timecode.fps() * 80;
383         break;
384     case 11:
385     case 12:
386         m_textSpacing = fend * m_timecode.fps() * 400;
387         break;
388     case 13:
389         m_textSpacing = fend * m_timecode.fps() * 800;
390         break;
391     }
392     update();
393 }
394
395 void CustomRuler::setDuration(int d)
396 {
397     int oldduration = m_duration;
398     m_duration = d;
399     update(qMin(oldduration, m_duration) * m_factor - 1 - offset(), 0, qAbs(oldduration - m_duration) * m_factor + 2, height());
400 }
401
402 // virtual
403 void CustomRuler::paintEvent(QPaintEvent *e)
404 {
405     QStylePainter p(this);
406     const QRect &paintRect = e->rect();
407     p.setClipRect(paintRect);
408
409     // Draw zone background
410     const int zoneStart = (int)(m_zoneStart * m_factor);
411     const int zoneEnd = (int)(m_zoneEnd * m_factor);
412     p.fillRect(zoneStart - m_offset, LABEL_SIZE + 2, zoneEnd - zoneStart, MAX_HEIGHT - LABEL_SIZE - 2, m_zoneColor);
413     
414     int minval = (paintRect.left() + m_offset) / FRAME_SIZE - 1;
415     const int maxval = (paintRect.right() + m_offset) / FRAME_SIZE + 1;
416     if (minval < 0)
417         minval = 0;
418
419     double f, fend;
420     const int offsetmax = maxval * FRAME_SIZE;
421     int offsetmin;
422
423     p.setPen(palette().text().color());
424
425     // draw time labels
426     if (paintRect.y() < LABEL_SIZE) {
427         offsetmin = (paintRect.left() + m_offset) / m_textSpacing;
428         offsetmin = offsetmin * m_textSpacing;
429         for (f = offsetmin; f < offsetmax; f += m_textSpacing) {
430             QString lab;
431             if (KdenliveSettings::frametimecode())
432                 lab = QString::number((int)(f / m_factor + 0.5));
433             else
434                 lab = m_timecode.getTimecodeFromFrames((int)(f / m_factor + 0.5));
435             p.drawText(f - m_offset + 2, LABEL_SIZE, lab);
436         }
437     }
438     p.setPen(palette().dark().color());
439     offsetmin = (paintRect.left() + m_offset) / littleMarkDistance;
440     offsetmin = offsetmin * littleMarkDistance;
441     // draw the little marks
442     fend = m_scale * littleMarkDistance;
443     if (fend > 5) {
444         for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
445             p.drawLine((int)f, LITTLE_MARK_X, (int)f, MAX_HEIGHT);
446     }
447
448     offsetmin = (paintRect.left() + m_offset) / mediumMarkDistance;
449     offsetmin = offsetmin * mediumMarkDistance;
450     // draw medium marks
451     fend = m_scale * mediumMarkDistance;
452     if (fend > 5) {
453         for (f = offsetmin - m_offset - fend; f < offsetmax - m_offset + fend; f += fend)
454             p.drawLine((int)f, MIDDLE_MARK_X, (int)f, MAX_HEIGHT);
455     }
456
457     offsetmin = (paintRect.left() + m_offset) / bigMarkDistance;
458     offsetmin = offsetmin * bigMarkDistance;
459     // draw big marks
460     fend = m_scale * bigMarkDistance;
461     if (fend > 5) {
462         for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
463             p.drawLine((int)f, BIG_MARK_X, (int)f, MAX_HEIGHT);
464     }
465
466     // draw zone cursors
467     if (zoneStart > 0) {
468         QPolygon pa(4);
469         pa.setPoints(4, zoneStart - m_offset + 3, LABEL_SIZE + 2, zoneStart - m_offset, LABEL_SIZE + 2, zoneStart - m_offset, MAX_HEIGHT - 1, zoneStart - m_offset + 3, MAX_HEIGHT - 1);
470         p.drawPolyline(pa);
471     }
472
473     if (zoneEnd > 0) {
474         QColor center(Qt::white);
475         center.setAlpha(150);
476         QRect rec(zoneStart - m_offset + (zoneEnd - zoneStart) / 2 - 4, LABEL_SIZE + 2, 8, MAX_HEIGHT - LABEL_SIZE - 3);
477         p.fillRect(rec, center);
478         p.drawRect(rec);
479
480         QPolygon pa(4);
481         pa.setPoints(4, zoneEnd - m_offset - 3, LABEL_SIZE + 2, zoneEnd - m_offset, LABEL_SIZE + 2, zoneEnd - m_offset, MAX_HEIGHT - 1, zoneEnd - m_offset - 3, MAX_HEIGHT - 1);
482         p.drawPolyline(pa);
483     }
484     
485     // draw pointer
486     const int value  =  m_view->cursorPos() * m_factor - m_offset;
487     QPolygon pa(3);
488     pa.setPoints(3, value - 6, LABEL_SIZE + 3, value + 6, LABEL_SIZE + 3, value, MAX_HEIGHT);
489     p.setBrush(m_cursorColor);
490     p.setPen(Qt::NoPen);
491     p.drawPolygon(pa);
492     
493     if (m_lastSeekPosition != SEEK_INACTIVE && m_lastSeekPosition != m_view->cursorPos()) {
494         p.fillRect(m_lastSeekPosition * m_factor - m_offset - 1, BIG_MARK_X + 1, 3, MAX_HEIGHT - BIG_MARK_X - 1, palette().linkVisited());
495     }
496
497 }
498
499 #include "customruler.moc"