]> git.sesse.net Git - kdenlive/blob - src/smallruler.cpp
start implementing monitor zone
[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 <QMouseEvent>
22 #include <QStylePainter>
23
24 #include <KDebug>
25
26 #include "smallruler.h"
27
28
29 SmallRuler::SmallRuler(QWidget *parent)
30         : QWidget(parent), m_scale(1), m_maxval(25) {
31     m_zoneStart = 10;
32     m_zoneEnd = 60;
33 }
34
35 void SmallRuler::adjustScale(int maximum) {
36     m_maxval = maximum;
37     m_scale = (double) width() / (double) maximum;
38     if (m_scale == 0) m_scale = 1;
39
40     if (m_scale > 0.5) {
41         m_small = 25;
42         m_medium = 5 * 25;
43     } else if (m_scale > 0.09) {
44         m_small = 5 * 25;
45         m_medium = 30 * 25;
46     } else {
47         m_small = 30 * 25;
48         m_medium = 60 * 25;
49     }
50     m_cursorPosition = m_cursorFramePosition * m_scale;
51     update();
52 }
53
54 void SmallRuler::setZone(int start, int end) {
55     m_zoneStart = start;
56     m_zoneEnd = end;
57     update();
58 }
59
60 // virtual
61 void SmallRuler::mousePressEvent(QMouseEvent * event) {
62     const int pos = event->x() / m_scale;
63     emit seekRenderer((int) pos);
64 }
65
66 // virtual
67 void SmallRuler::mouseMoveEvent(QMouseEvent * event) {
68     const int pos = event->x() / m_scale;
69     emit seekRenderer((int) pos);
70 }
71
72 void SmallRuler::slotNewValue(int value) {
73     m_cursorFramePosition = value;
74     int oldPos = m_cursorPosition;
75     m_cursorPosition = value * m_scale;
76     if (oldPos == m_cursorPosition) return;
77     const int offset = 6;
78     const int x = qMin(oldPos, m_cursorPosition);
79     const int w = qAbs(oldPos - m_cursorPosition);
80     update(x - offset, 9, w + 2 * offset, 6);
81 }
82
83 //virtual
84 void SmallRuler::resizeEvent(QResizeEvent *) {
85     adjustScale(m_maxval);
86 }
87
88 // virtual
89 void SmallRuler::paintEvent(QPaintEvent *e) {
90
91     QPainter p(this);
92     QRect r = e->rect();
93     p.setClipRect(r);
94
95     double f, fend;
96     p.setPen(palette().dark().color());
97
98     const int zoneStart = (int)(m_zoneStart * m_scale);
99     const int zoneEnd = (int)(m_zoneEnd * m_scale);
100
101     p.fillRect(QRect(zoneStart, height() / 2, zoneEnd - zoneStart, height() / 2), QBrush(QColor(133, 255, 143)));
102
103     if (r.top() < 9) {
104         // draw the little marks
105         fend = m_scale * m_small;
106         if (fend > 2) for (f = 0; f < width(); f += fend) {
107                 p.drawLine((int)f, 1, (int)f, 3);
108             }
109
110         // draw medium marks
111         fend = m_scale * m_medium;
112         if (fend > 2) for (f = 0; f < width(); f += fend) {
113                 p.drawLine((int)f, 1, (int)f, 5);
114             }
115     }
116
117     // draw pointer
118     QPolygon pa(3);
119     pa.setPoints(3, m_cursorPosition - 5, 14, m_cursorPosition + 5, 14, m_cursorPosition/*+0*/, 9);
120     p.setBrush(palette().dark().color());
121     p.drawPolygon(pa);
122 }
123
124 #include "smallruler.moc"