]> git.sesse.net Git - kdenlive/blob - src/customruler.cpp
Fix monitor focus on ruler wheel event
[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     m_view->activateMonitor();
272     if (e->modifiers() == Qt::ControlModifier) delta = m_timecode.fps();
273     if (e->delta() < 0) delta = 0 - delta;
274     m_view->moveCursorPos(delta);
275 }
276
277 int CustomRuler::inPoint() const
278 {
279     return m_zoneStart;
280 }
281
282 int CustomRuler::outPoint() const
283 {
284     return m_zoneEnd;
285 }
286
287 void CustomRuler::slotMoveRuler(int newPos)
288 {
289     m_offset = newPos;
290     update();
291 }
292
293 int CustomRuler::offset() const
294 {
295     return m_offset;
296 }
297
298 void CustomRuler::slotCursorMoved(int oldpos, int newpos)
299 {
300     int min = qMin(oldpos, newpos);
301     int max = qMax(oldpos, newpos);
302     if (m_lastSeekPosition != SEEK_INACTIVE) {
303         if (m_lastSeekPosition == newpos) {
304             m_lastSeekPosition = SEEK_INACTIVE;
305         }
306         else {
307             min = qMin(min, m_lastSeekPosition);
308             max = qMax(max, m_lastSeekPosition);
309         }
310     }
311     update(min * m_factor - m_offset - 6, BIG_MARK_X, (max - min) * m_factor + 14, MAX_HEIGHT - BIG_MARK_X);
312 }
313
314 void CustomRuler::updateRuler()
315 {
316     // Update requested seek position
317     int min = SEEK_INACTIVE;
318     int max = SEEK_INACTIVE;
319     if (m_lastSeekPosition != SEEK_INACTIVE) {
320         min = max = m_lastSeekPosition;
321     }
322     m_lastSeekPosition = m_view->seekPosition();
323     if (m_lastSeekPosition != SEEK_INACTIVE) {
324         if (min == SEEK_INACTIVE) {
325             min = max = m_lastSeekPosition;
326         }
327         else {
328             min = qMin(min, m_lastSeekPosition);
329             max = qMax(max, m_lastSeekPosition);
330         }
331     }
332     if (min != SEEK_INACTIVE) {
333         update(min * m_factor - offset() - 3, BIG_MARK_X, (max - min) * m_factor + 6, MAX_HEIGHT - BIG_MARK_X);
334     }
335 }
336
337 void CustomRuler::setPixelPerMark(int rate)
338 {
339     int scale = comboScale[rate];
340     m_rate = rate;
341     m_factor = 1.0 / (double) scale * FRAME_SIZE;
342     m_scale = 1.0 / (double) scale;
343     double fend = m_scale * littleMarkDistance;
344     if (rate > 8) {
345         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
346         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 300;
347     } else if (rate > 6) {
348         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 10;
349         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 30;
350     } else if (rate > 3) {
351         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
352         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 5;
353     } else {
354         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
355         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
356     }
357     switch (rate) {
358     case 0:
359         m_textSpacing = fend;
360         break;
361     case 1:
362         m_textSpacing = fend * 5;
363         break;
364     case 2:
365     case 3:
366     case 4:
367         m_textSpacing = fend * m_timecode.fps();
368         break;
369     case 5:
370         m_textSpacing = fend * m_timecode.fps() * 5;
371         break;
372     case 6:
373         m_textSpacing = fend * m_timecode.fps() * 10;
374         break;
375     case 7:
376         m_textSpacing = fend * m_timecode.fps() * 30;
377         break;
378     case 8:
379     case 9:
380         m_textSpacing = fend * m_timecode.fps() * 40;
381         break;
382     case 10:
383         m_textSpacing = fend * m_timecode.fps() * 80;
384         break;
385     case 11:
386     case 12:
387         m_textSpacing = fend * m_timecode.fps() * 400;
388         break;
389     case 13:
390         m_textSpacing = fend * m_timecode.fps() * 800;
391         break;
392     }
393     update();
394 }
395
396 void CustomRuler::setDuration(int d)
397 {
398     int oldduration = m_duration;
399     m_duration = d;
400     update(qMin(oldduration, m_duration) * m_factor - 1 - offset(), 0, qAbs(oldduration - m_duration) * m_factor + 2, height());
401 }
402
403 // virtual
404 void CustomRuler::paintEvent(QPaintEvent *e)
405 {
406     QStylePainter p(this);
407     const QRect &paintRect = e->rect();
408     p.setClipRect(paintRect);
409
410     // Draw zone background
411     const int zoneStart = (int)(m_zoneStart * m_factor);
412     const int zoneEnd = (int)(m_zoneEnd * m_factor);
413     p.fillRect(zoneStart - m_offset, LABEL_SIZE + 2, zoneEnd - zoneStart, MAX_HEIGHT - LABEL_SIZE - 2, m_zoneColor);
414     
415     int minval = (paintRect.left() + m_offset) / FRAME_SIZE - 1;
416     const int maxval = (paintRect.right() + m_offset) / FRAME_SIZE + 1;
417     if (minval < 0)
418         minval = 0;
419
420     double f, fend;
421     const int offsetmax = maxval * FRAME_SIZE;
422     int offsetmin;
423
424     p.setPen(palette().text().color());
425
426     // draw time labels
427     if (paintRect.y() < LABEL_SIZE) {
428         offsetmin = (paintRect.left() + m_offset) / m_textSpacing;
429         offsetmin = offsetmin * m_textSpacing;
430         for (f = offsetmin; f < offsetmax; f += m_textSpacing) {
431             QString lab;
432             if (KdenliveSettings::frametimecode())
433                 lab = QString::number((int)(f / m_factor + 0.5));
434             else
435                 lab = m_timecode.getTimecodeFromFrames((int)(f / m_factor + 0.5));
436             p.drawText(f - m_offset + 2, LABEL_SIZE, lab);
437         }
438     }
439     p.setPen(palette().dark().color());
440     offsetmin = (paintRect.left() + m_offset) / littleMarkDistance;
441     offsetmin = offsetmin * littleMarkDistance;
442     // draw the little marks
443     fend = m_scale * littleMarkDistance;
444     if (fend > 5) {
445         for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
446             p.drawLine((int)f, LITTLE_MARK_X, (int)f, MAX_HEIGHT);
447     }
448
449     offsetmin = (paintRect.left() + m_offset) / mediumMarkDistance;
450     offsetmin = offsetmin * mediumMarkDistance;
451     // draw medium marks
452     fend = m_scale * mediumMarkDistance;
453     if (fend > 5) {
454         for (f = offsetmin - m_offset - fend; f < offsetmax - m_offset + fend; f += fend)
455             p.drawLine((int)f, MIDDLE_MARK_X, (int)f, MAX_HEIGHT);
456     }
457
458     offsetmin = (paintRect.left() + m_offset) / bigMarkDistance;
459     offsetmin = offsetmin * bigMarkDistance;
460     // draw big marks
461     fend = m_scale * bigMarkDistance;
462     if (fend > 5) {
463         for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
464             p.drawLine((int)f, BIG_MARK_X, (int)f, MAX_HEIGHT);
465     }
466
467     // draw zone cursors
468     if (zoneStart > 0) {
469         QPolygon pa(4);
470         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);
471         p.drawPolyline(pa);
472     }
473
474     if (zoneEnd > 0) {
475         QColor center(Qt::white);
476         center.setAlpha(150);
477         QRect rec(zoneStart - m_offset + (zoneEnd - zoneStart) / 2 - 4, LABEL_SIZE + 2, 8, MAX_HEIGHT - LABEL_SIZE - 3);
478         p.fillRect(rec, center);
479         p.drawRect(rec);
480
481         QPolygon pa(4);
482         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);
483         p.drawPolyline(pa);
484     }
485     
486     // draw pointer
487     const int value  =  m_view->cursorPos() * m_factor - m_offset;
488     QPolygon pa(3);
489     pa.setPoints(3, value - 6, LABEL_SIZE + 3, value + 6, LABEL_SIZE + 3, value, MAX_HEIGHT);
490     p.setBrush(m_cursorColor);
491     p.setPen(Qt::NoPen);
492     p.drawPolygon(pa);
493     
494     if (m_lastSeekPosition != SEEK_INACTIVE && m_lastSeekPosition != m_view->cursorPos()) {
495         p.fillRect(m_lastSeekPosition * m_factor - m_offset - 1, BIG_MARK_X + 1, 3, MAX_HEIGHT - BIG_MARK_X - 1, palette().linkVisited());
496     }
497
498 }
499
500 #include "customruler.moc"