]> git.sesse.net Git - kdenlive/blob - src/customruler.cpp
Improve guide actions from timeline ruler context menu:
[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
22 #include <KDebug>
23 #include <KIcon>
24 #include <KCursor>
25 #include <KGlobalSettings>
26
27 #include <QMouseEvent>
28 #include <QStylePainter>
29
30 static const int FIX_WIDTH = 24; /* widget width in pixel */
31 static const int LINE_END = (FIX_WIDTH - 3);
32 static const int END_MARK_LENGTH = (FIX_WIDTH - 8);
33 static const int BIG_MARK_LENGTH = (END_MARK_LENGTH * 3 / 4);
34 static const int BIG_MARK_X2 = LINE_END;
35 static const int BIG_MARK_X1 = (BIG_MARK_X2 - BIG_MARK_LENGTH);
36 static const int MIDDLE_MARK_LENGTH = (END_MARK_LENGTH / 2);
37 static const int MIDDLE_MARK_X2 = LINE_END;
38 static const int MIDDLE_MARK_X1 = (MIDDLE_MARK_X2 - MIDDLE_MARK_LENGTH);
39 static const int LITTLE_MARK_LENGTH = (MIDDLE_MARK_LENGTH / 2);
40 static const int LITTLE_MARK_X2 = LINE_END;
41 static const int LITTLE_MARK_X1 = (LITTLE_MARK_X2 - LITTLE_MARK_LENGTH);
42
43 static const int LABEL_SIZE = 9;
44 static const int END_LABEL_X = 4;
45 static const int END_LABEL_Y = (END_LABEL_X + LABEL_SIZE - 2);
46
47 static int littleMarkDistance;
48 static int mediumMarkDistance;
49 static int bigMarkDistance;
50
51 #include "definitions.h"
52
53 const int CustomRuler::comboScale[] = { 1, 2, 5, 10, 25, 50, 125, 250, 500, 750, 1500, 3000, 6000, 12000};
54
55 CustomRuler::CustomRuler(Timecode tc, CustomTrackView *parent) :
56         QWidget(parent),
57         m_timecode(tc),
58         m_view(parent),
59         m_duration(0),
60         m_offset(0),
61         m_clickedGuide(-1)
62 {
63     setFont(KGlobalSettings::toolBarFont());
64     m_scale = 3;
65     m_zoneColor = QColor(133, 255, 143);
66     littleMarkDistance = FRAME_SIZE;
67     mediumMarkDistance = FRAME_SIZE * m_timecode.fps();
68     bigMarkDistance = FRAME_SIZE * m_timecode.fps() * 60;
69     m_zoneStart = 0;
70     m_zoneEnd = 100;
71     m_contextMenu = new QMenu(this);
72     QAction *addGuide = m_contextMenu->addAction(KIcon("document-new"), i18n("Add Guide"));
73     connect(addGuide, SIGNAL(triggered()), m_view, SLOT(slotAddGuide()));
74     m_editGuide = m_contextMenu->addAction(KIcon("document-properties"), i18n("Edit Guide"));
75     connect(m_editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
76     m_deleteGuide = m_contextMenu->addAction(KIcon("edit-delete"), i18n("Delete Guide"));
77     connect(m_deleteGuide , SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
78     QAction *delAllGuides = m_contextMenu->addAction(KIcon("edit-delete"), i18n("Delete All Guides"));
79     connect(delAllGuides, SIGNAL(triggered()), m_view, SLOT(slotDeleteAllGuides()));
80     setMouseTracking(true);
81     setMinimumHeight(20);
82 }
83
84 void CustomRuler::slotEditGuide()
85 {
86     m_view->slotEditGuide(m_clickedGuide);
87 }
88
89 void CustomRuler::slotDeleteGuide()
90 {
91     m_view->slotDeleteGuide(m_clickedGuide);
92 }
93
94 void CustomRuler::setZone(QPoint p)
95 {
96     int min = qMin(m_zoneStart, p.x());
97     int max = qMax(m_zoneEnd, p.y());
98     m_zoneStart = p.x();
99     m_zoneEnd = p.y();
100     update(min * m_factor - 2, 0, (max - min) * m_factor + 4, height());
101 }
102
103 // virtual
104 void CustomRuler::mousePressEvent(QMouseEvent * event)
105 {
106     int pos = (int)((event->x() + offset()));
107     if (event->button() == Qt::RightButton) {
108         m_clickedGuide = m_view->hasGuide((int)(pos / m_factor), (int)(5 / m_factor + 1));
109         m_editGuide->setEnabled(m_clickedGuide > 0);
110         m_deleteGuide->setEnabled(m_clickedGuide > 0);
111         m_contextMenu->exec(event->globalPos());
112         return;
113     }
114     m_view->activateMonitor();
115     m_moveCursor = RULER_CURSOR;
116     if (event->y() > 10) {
117         if (qAbs(pos - m_zoneStart * m_factor) < 4) m_moveCursor = RULER_START;
118         else if (qAbs(pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2) * m_factor) < 4) m_moveCursor = RULER_MIDDLE;
119         else if (qAbs(pos - m_zoneEnd * m_factor) < 4) m_moveCursor = RULER_END;
120     }
121     if (m_moveCursor == RULER_CURSOR)
122         m_view->setCursorPos((int) pos / m_factor);
123 }
124
125 // virtual
126 void CustomRuler::mouseMoveEvent(QMouseEvent * event)
127 {
128     if (event->buttons() == Qt::LeftButton) {
129         int pos = (int)((event->x() + offset()) / m_factor);
130         int zoneStart = m_zoneStart;
131         int zoneEnd = m_zoneEnd;
132         if (pos < 0) pos = 0;
133         if (m_moveCursor == RULER_CURSOR) {
134             m_view->setCursorPos(pos);
135             m_view->slotCheckPositionScrolling();
136             return;
137         } else if (m_moveCursor == RULER_START) m_zoneStart = pos;
138         else if (m_moveCursor == RULER_END) m_zoneEnd = pos;
139         else if (m_moveCursor == RULER_MIDDLE) {
140             int move = pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2);
141             if (move + m_zoneStart < 0) move = - m_zoneStart;
142             m_zoneStart += move;
143             m_zoneEnd += move;
144         }
145         emit zoneMoved(m_zoneStart, m_zoneEnd);
146         m_view->setDocumentModified();
147
148         int min = qMin(m_zoneStart, zoneStart);
149         int max = qMax(m_zoneEnd, zoneEnd);
150         update(min * m_factor - m_offset - 2, 0, (max - min) * m_factor + 4, height());
151
152     } else {
153         int pos = (int)((event->x() + offset()));
154         if (event->y() <= 10) setCursor(Qt::ArrowCursor);
155         else if (qAbs(pos - m_zoneStart * m_factor) < 4) setCursor(KCursor("left_side", Qt::SizeHorCursor));
156         else if (qAbs(pos - m_zoneEnd * m_factor) < 4) setCursor(KCursor("right_side", Qt::SizeHorCursor));
157         else if (qAbs(pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2) * m_factor) < 4) setCursor(Qt::SizeHorCursor);
158         else setCursor(Qt::ArrowCursor);
159     }
160 }
161
162
163 // virtual
164 void CustomRuler::wheelEvent(QWheelEvent * e)
165 {
166     int delta = 1;
167     if (e->modifiers() == Qt::ControlModifier) delta = m_timecode.fps();
168     if (e->delta() < 0) delta = 0 - delta;
169     m_view->moveCursorPos(delta);
170 }
171
172 int CustomRuler::inPoint() const
173 {
174     return m_zoneStart;
175 }
176
177 int CustomRuler::outPoint() const
178 {
179     return m_zoneEnd;
180 }
181
182 void CustomRuler::slotMoveRuler(int newPos)
183 {
184     m_offset = newPos;
185     update();
186 }
187
188 int CustomRuler::offset() const
189 {
190     return m_offset;
191 }
192
193 void CustomRuler::slotCursorMoved(int oldpos, int newpos)
194 {
195     if (qAbs(oldpos - newpos) * m_factor > m_textSpacing) {
196         update(oldpos * m_factor - offset() - 6, 0, 17, height());
197         update(newpos * m_factor - offset() - 6, 0, 17, height());
198     } else update(qMin(oldpos, newpos) * m_factor - offset() - 6, 0, qAbs(oldpos - newpos) * m_factor + 17, height());
199 }
200
201 void CustomRuler::setPixelPerMark(double rate)
202 {
203     int scale = comboScale[(int) rate];
204     m_factor = 1.0 / (double) scale * FRAME_SIZE;
205     m_scale = 1.0 / (double) scale;
206     double fend = m_scale * littleMarkDistance;
207     if (rate > 8) {
208         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
209         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 300;
210     } else if (rate > 6) {
211         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 10;
212         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 30;
213     } else if (rate > 3) {
214         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
215         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 5;
216     } else {
217         mediumMarkDistance = (double) FRAME_SIZE * m_timecode.fps();
218         bigMarkDistance = (double) FRAME_SIZE * m_timecode.fps() * 60;
219     }
220     switch ((int) rate) {
221     case 0:
222         m_textSpacing = fend;
223         break;
224     case 1:
225         m_textSpacing = fend * 5;
226         break;
227     case 2:
228     case 3:
229     case 4:
230         m_textSpacing = fend * m_timecode.fps();
231         break;
232     case 5:
233         m_textSpacing = fend * m_timecode.fps() * 5;
234         break;
235     case 6:
236         m_textSpacing = fend * m_timecode.fps() * 10;
237         break;
238     case 7:
239         m_textSpacing = fend * m_timecode.fps() * 30;
240         break;
241     case 8:
242     case 9:
243         m_textSpacing = fend * m_timecode.fps() * 40;
244         break;
245     case 10:
246         m_textSpacing = fend * m_timecode.fps() * 80;
247         break;
248     case 11:
249     case 12:
250         m_textSpacing = fend * m_timecode.fps() * 400;
251         break;
252     case 13:
253         m_textSpacing = fend * m_timecode.fps() * 800;
254         break;
255     }
256     update();
257 }
258
259 void CustomRuler::setDuration(int d)
260 {
261     int oldduration = m_duration;
262     m_duration = d;
263     update(qMin(oldduration, m_duration) * m_factor - 1 - offset(), 0, qAbs(oldduration - m_duration) * m_factor + 2, height());
264 }
265
266 // virtual
267 void CustomRuler::paintEvent(QPaintEvent *e)
268 {
269     QStylePainter p(this);
270     p.setClipRect(e->rect());
271     const int projectEnd = (int)(m_duration * m_factor);
272     p.fillRect(0, 0, projectEnd - m_offset, height(), palette().alternateBase().color());
273
274     const int zoneStart = (int)(m_zoneStart * m_factor);
275     const int zoneEnd = (int)(m_zoneEnd * m_factor);
276     const QRect zoneRect();
277
278     p.fillRect(zoneStart - m_offset, height() / 2, zoneEnd - zoneStart, height() / 2, m_zoneColor);
279
280     const int value  = m_view->cursorPos() * m_factor - m_offset;
281     int minval = (e->rect().left() + m_offset) / FRAME_SIZE - 1;
282     const int maxval = (e->rect().right() + m_offset) / FRAME_SIZE + 1;
283     if (minval < 0) minval = 0;
284
285     double f, fend;
286     const int offsetmax = maxval * FRAME_SIZE;
287
288     p.setPen(palette().dark().color());
289
290     // draw time labels
291     int offsetmin = (e->rect().left() + m_offset) / m_textSpacing;
292     offsetmin = offsetmin * m_textSpacing;
293     for (f = offsetmin; f < offsetmax; f += m_textSpacing) {
294         QString lab = m_timecode.getTimecodeFromFrames((int)(f / m_factor + 0.5));
295
296         p.drawText(f - m_offset + 2, LABEL_SIZE, lab);
297     }
298
299     offsetmin = (e->rect().left() + m_offset) / littleMarkDistance;
300     offsetmin = offsetmin * littleMarkDistance;
301     // draw the little marks
302     fend = m_scale * littleMarkDistance;
303     if (fend > 5) for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
304             p.drawLine((int)f, LITTLE_MARK_X1, (int)f, LITTLE_MARK_X2);
305
306     offsetmin = (e->rect().left() + m_offset) / mediumMarkDistance;
307     offsetmin = offsetmin * mediumMarkDistance;
308     // draw medium marks
309     fend = m_scale * mediumMarkDistance;
310     if (fend > 5) for (f = offsetmin - m_offset - fend; f < offsetmax - m_offset + fend; f += fend)
311             p.drawLine((int)f, MIDDLE_MARK_X1, (int)f, MIDDLE_MARK_X2);
312
313     offsetmin = (e->rect().left() + m_offset) / bigMarkDistance;
314     offsetmin = offsetmin * bigMarkDistance;
315     // draw big marks
316     fend = m_scale * bigMarkDistance;
317     if (fend > 5) for (f = offsetmin - m_offset; f < offsetmax - m_offset; f += fend)
318             p.drawLine((int)f, BIG_MARK_X1, (int)f, BIG_MARK_X2);
319
320     // draw zone cursors
321     int off = offset();
322     if (zoneStart > 0) {
323         QPolygon pa(4);
324         pa.setPoints(4, zoneStart - off + 3, 9, zoneStart - off, 9, zoneStart - off, 18, zoneStart - off + 3, 18);
325         p.drawPolyline(pa);
326     }
327
328     if (zoneEnd > 0) {
329         QRect rec(zoneStart - off + (zoneEnd - zoneStart) / 2 - 4, 9, 8, 9);
330         p.fillRect(rec, QColor(255, 255, 255, 150));
331         p.drawRect(rec);
332
333         QPolygon pa(4);
334         pa.setPoints(4, zoneEnd - off - 3, 9, zoneEnd - off, 9, zoneEnd - off, 18, zoneEnd - off - 3, 18);
335         p.drawPolyline(pa);
336     }
337
338     // draw pointer
339     QPolygon pa(3);
340     pa.setPoints(3, value - 6, 8, value + 6, 8, value, 16);
341     p.setBrush(palette().highlight());
342     p.drawPolygon(pa);
343 }
344
345 #include "customruler.moc"