]> git.sesse.net Git - kdenlive/blob - src/smallruler.cpp
Highlight ruler cursor on mouseover: http://kdenlive.org/mantis/view.php?id=2786
[kdenlive] / src / smallruler.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
21 #include "smallruler.h"
22 #include "kdenlivesettings.h"
23
24 #include <KDebug>
25 #include <KColorScheme>
26 #include <KLocale>
27
28 #include <QMouseEvent>
29 #include <QStylePainter>
30
31 #define SEEK_INACTIVE (-1)
32
33
34 SmallRuler::SmallRuler(MonitorManager *manager, Render *render, QWidget *parent) :
35         QWidget(parent)
36         ,m_cursorFramePosition(0)
37         ,m_scale(1)
38         ,m_maxval(25)
39         ,m_manager(manager)
40         ,m_render(render)
41         ,m_lastSeekPosition(SEEK_INACTIVE)
42         ,m_cursorColor(palette().text())
43 {
44     m_zoneStart = 10;
45     m_zoneEnd = 60;
46     KSharedConfigPtr config = KSharedConfig::openConfig(KdenliveSettings::colortheme());
47     m_zoneBrush = KStatefulBrush(KColorScheme::View, KColorScheme::PositiveBackground, config);
48
49     setMouseTracking(true);
50     setMinimumHeight(10);
51 }
52
53
54 void SmallRuler::adjustScale(int maximum)
55 {
56     m_maxval = maximum;
57     m_scale = (double) width() / (double) maximum;
58     if (m_scale == 0) m_scale = 1;
59
60     if (m_scale > 0.5) {
61         m_small = 25;
62         m_medium = 5 * 25;
63     } else if (m_scale > 0.09) {
64         m_small = 5 * 25;
65         m_medium = 30 * 25;
66     } else {
67         m_small = 30 * 25;
68         m_medium = 60 * 25;
69     }
70     updatePixmap();
71 }
72
73 void SmallRuler::setZoneStart()
74 {
75     int pos = m_render->requestedSeekPosition;
76     if (pos == SEEK_INACTIVE) pos = m_render->seekFramePosition();
77     setZone(pos, -1);
78 }
79
80 void SmallRuler::setZoneEnd()
81 {
82     int pos = m_render->requestedSeekPosition;
83     if (pos == SEEK_INACTIVE) pos = m_render->seekFramePosition();
84     setZone(-1, pos);
85 }
86
87 void SmallRuler::setZone(int start, int end)
88 {
89     if (start != -1) {
90         if (end != -1 && start >= end) {
91             m_zoneEnd = qMin(m_maxval, end + (start - m_zoneStart));
92             m_zoneStart = start;
93         } else if (end == -1 && start >= m_zoneEnd) {
94             m_zoneEnd = qMin(m_maxval, m_zoneEnd + (start - m_zoneStart));
95             m_zoneStart = start;
96         } else m_zoneStart = start;
97     }
98     if (end != -1) {
99         if (start != -1 && end <= start) {
100             m_zoneStart = qMax(0, start - (m_zoneEnd - end));
101             m_zoneEnd = end;
102         } else if (start == -1 && end <= m_zoneStart) {
103             m_zoneStart = qMax(0, m_zoneStart - (m_zoneEnd - end));
104             m_zoneEnd = end;
105         } else m_zoneEnd = end;
106     }
107     updatePixmap();
108 }
109
110 void SmallRuler::setMarkers(QList < CommentedTime > list)
111 {
112     m_markers = list;
113     updatePixmap();
114 }
115
116 QPoint SmallRuler::zone()
117 {
118     return QPoint(m_zoneStart, m_zoneEnd);
119 }
120
121 // virtual
122 void SmallRuler::mousePressEvent(QMouseEvent * event)
123 {
124     const int pos = event->x() / m_scale;
125     if (event->button() == Qt::RightButton) {
126         // Right button clicked, move selection zone
127         if (qAbs(pos - m_zoneStart) < qAbs(pos - m_zoneEnd)) m_zoneStart = pos;
128         else m_zoneEnd = pos;
129         emit zoneChanged(QPoint(m_zoneStart, m_zoneEnd));
130         updatePixmap();
131
132     } else {
133         m_render->seekToFrame(pos);
134         m_lastSeekPosition = pos;
135         update();
136     }
137 }
138
139 // virtual
140 void SmallRuler::leaveEvent(QEvent * event)
141 {
142     QWidget::leaveEvent(event);
143     if (m_cursorColor == palette().highlight()) {
144         m_cursorColor = palette().text();
145         update();
146     }
147 }
148
149 // virtual
150 void SmallRuler::mouseMoveEvent(QMouseEvent * event)
151 {
152     QWidget::mouseMoveEvent(event);
153     const int pos = event->x() / m_scale;
154     if (event->buttons() & Qt::LeftButton) {
155         m_render->seekToFrame(pos);
156         m_lastSeekPosition = pos;
157         update();
158     }
159     else {
160         if (m_cursorColor == palette().text() && qAbs(pos - m_cursorFramePosition) * m_scale < 7) {
161             // Mouse is over cursor
162             m_cursorColor = palette().highlight();
163             update();
164         }
165         else if (m_cursorColor == palette().highlight() && qAbs(pos - m_cursorFramePosition) * m_scale >= 7) {
166             m_cursorColor = palette().text();
167             update();
168         }
169         if (qAbs((pos - m_zoneStart) * m_scale) < 4) {
170             setToolTip(i18n("Zone start: %1", m_manager->timecode().getTimecodeFromFrames(m_zoneStart)));
171         } else if (qAbs((pos - m_zoneEnd) * m_scale) < 4) {
172             setToolTip(i18n("Zone end: %1", m_manager->timecode().getTimecodeFromFrames(m_zoneEnd)));
173         } else if (pos > m_zoneStart && pos < m_zoneEnd) {
174             setToolTip(i18n("Zone duration: %1", m_manager->timecode().getTimecodeFromFrames(m_zoneEnd - m_zoneStart)));
175         } else setToolTip(i18n("Position: %1", m_manager->timecode().getTimecodeFromFrames(pos)));
176     }
177 }
178
179 void SmallRuler::refreshRuler()
180 {
181     m_lastSeekPosition = SEEK_INACTIVE;
182     update();
183 }
184
185 bool SmallRuler::slotNewValue(int value)
186 {
187     if (value == m_cursorFramePosition) return false;
188     if (value == m_lastSeekPosition) m_lastSeekPosition = SEEK_INACTIVE;
189     m_cursorFramePosition = value;
190     /*int oldPos = m_cursorPosition;
191     m_cursorPosition = value * m_scale;
192     const int offset = 6;
193     const int x = qMin(oldPos, m_cursorPosition);
194     const int w = qAbs(oldPos - m_cursorPosition);
195     update(x - offset, 0, w + 2 * offset, height());*/
196     update();
197     return true;
198 }
199
200
201 //virtual
202 void SmallRuler::resizeEvent(QResizeEvent *)
203 {
204     adjustScale(m_maxval);
205 }
206
207 void SmallRuler::updatePixmap()
208 {
209     m_pixmap = QPixmap(width(), height());
210     m_pixmap.fill(palette().window().color());
211     m_lastSeekPosition = SEEK_INACTIVE;
212     QPainter p(&m_pixmap);
213     double f, fend;
214
215     const int zoneStart = (int)(m_zoneStart * m_scale);
216     const int zoneEnd = (int)(m_zoneEnd * m_scale);
217     p.setPen(Qt::NoPen);
218     p.setBrush(m_zoneBrush.brush(this));
219     p.drawRect(zoneStart, height() / 2 - 1, zoneEnd - zoneStart, height() / 2);
220
221     // draw ruler
222     p.setPen(palette().text().color());
223     // draw the little marks
224     fend = m_scale * m_small;
225     if (fend > 2) for (f = 0; f < width(); f += fend) {
226         p.drawLine((int)f, 0, (int)f, 3);
227     }
228
229     // draw medium marks
230     fend = m_scale * m_medium;
231     if (fend > 2) for (f = 0; f < width(); f += fend) {
232         p.drawLine((int)f, 0, (int)f, 6);
233     }
234     // draw markers
235     if (!m_markers.isEmpty()) {
236         for (int i = 0; i < m_markers.count(); i++) {
237             int pos = m_markers.at(i).time().frames(m_manager->timecode().fps()) * m_scale;
238             p.setPen(CommentedTime::markerColor(m_markers.at(i).markerType()));
239             p.drawLine(pos, 0, pos, 9);
240         }
241     }
242     p.end();
243     update();
244 }
245
246 // virtual
247 void SmallRuler::paintEvent(QPaintEvent *e)
248 {
249
250     QPainter p(this);
251     QRect r = e->rect();
252     p.setClipRect(r);
253     p.drawPixmap(QPointF(), m_pixmap);
254
255     int cursorPos = m_cursorFramePosition * m_scale;
256     // draw pointer
257     QPolygon pa(3);
258     pa.setPoints(3, cursorPos - 6, 10, cursorPos + 6, 10, cursorPos/*+0*/, 4);
259     p.setBrush(m_cursorColor);
260     p.setPen(Qt::NoPen);
261     p.drawPolygon(pa);
262
263     // Draw seeking pointer
264     if (m_lastSeekPosition != SEEK_INACTIVE && m_lastSeekPosition != m_cursorFramePosition) {
265         p.fillRect(m_lastSeekPosition * m_scale - 1, 0, 3, height(), palette().highlight());
266     }
267 }
268
269 void SmallRuler::updatePalette()
270 {
271     KSharedConfigPtr config = KSharedConfig::openConfig(KdenliveSettings::colortheme());
272     m_zoneBrush = KStatefulBrush(KColorScheme::View, KColorScheme::PositiveBackground, config);
273     updatePixmap();
274 }
275
276 #include "smallruler.moc"