1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
21 #include <QMouseEvent>
22 #include <QStylePainter>
26 #include "smallruler.h"
29 SmallRuler::SmallRuler(QWidget *parent)
30 : QWidget(parent), m_scale(1), m_maxval(25) {
35 void SmallRuler::adjustScale(int maximum) {
37 m_scale = (double) width() / (double) maximum;
38 if (m_scale == 0) m_scale = 1;
43 } else if (m_scale > 0.09) {
50 m_cursorPosition = m_cursorFramePosition * m_scale;
54 void SmallRuler::setZone(int start, int end) {
56 if (end != -1 && start >= end) {
57 m_zoneEnd = qMin(m_maxval, end + (start - m_zoneStart));
59 } else if (end == -1 && start >= m_zoneEnd) {
60 m_zoneEnd = qMin(m_maxval, m_zoneEnd + (start - m_zoneStart));
62 } else m_zoneStart = start;
65 if (start != -1 && end <= start) {
66 m_zoneStart = qMax(0, start - (m_zoneEnd - end));
68 } else if (start == -1 && end <= m_zoneStart) {
69 m_zoneStart = qMax(0, m_zoneStart - (m_zoneEnd - end));
71 } else m_zoneEnd = end;
76 QPoint SmallRuler::zone() {
77 return QPoint(m_zoneStart, m_zoneEnd);
81 void SmallRuler::mousePressEvent(QMouseEvent * event) {
82 const int pos = event->x() / m_scale;
83 if (event->button() == Qt::RightButton) {
84 // Right button clicked, move selection zone
85 if (qAbs(pos - m_zoneStart) < qAbs(pos - m_zoneEnd)) m_zoneStart = pos;
87 emit zoneChanged(QPoint(m_zoneStart, m_zoneEnd));
90 } else emit seekRenderer((int) pos);
94 void SmallRuler::mouseMoveEvent(QMouseEvent * event) {
95 const int pos = event->x() / m_scale;
96 if (event->buttons() & Qt::LeftButton) emit seekRenderer((int) pos);
99 void SmallRuler::slotNewValue(int value) {
100 m_cursorFramePosition = value;
101 int oldPos = m_cursorPosition;
102 m_cursorPosition = value * m_scale;
103 if (oldPos == m_cursorPosition) return;
104 const int offset = 6;
105 const int x = qMin(oldPos, m_cursorPosition);
106 const int w = qAbs(oldPos - m_cursorPosition);
107 update(x - offset, 9, w + 2 * offset, 6);
111 void SmallRuler::resizeEvent(QResizeEvent *) {
112 adjustScale(m_maxval);
116 void SmallRuler::paintEvent(QPaintEvent *e) {
123 p.setPen(palette().dark().color());
125 const int zoneStart = (int)(m_zoneStart * m_scale);
126 const int zoneEnd = (int)(m_zoneEnd * m_scale);
128 p.fillRect(QRect(zoneStart, height() / 2, zoneEnd - zoneStart, height() / 2), QBrush(QColor(133, 255, 143)));
131 // draw the little marks
132 fend = m_scale * m_small;
133 if (fend > 2) for (f = 0; f < width(); f += fend) {
134 p.drawLine((int)f, 1, (int)f, 3);
138 fend = m_scale * m_medium;
139 if (fend > 2) for (f = 0; f < width(); f += fend) {
140 p.drawLine((int)f, 1, (int)f, 5);
146 pa.setPoints(3, m_cursorPosition - 5, 14, m_cursorPosition + 5, 14, m_cursorPosition/*+0*/, 9);
147 p.setBrush(palette().dark().color());
151 #include "smallruler.moc"