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