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