]> git.sesse.net Git - kdenlive/blob - src/customruler.cpp
Zone selection widget
[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 <QMouseEvent>
21 #include <QStylePainter>
22
23 #include <KDebug>
24
25
26 #include "customruler.h"
27
28
29 #define INIT_VALUE 0
30 #define INIT_MIN_VALUE 0
31 #define INIT_MAX_VALUE 100
32 #define INIT_TINY_MARK_DISTANCE 1
33 #define INIT_LITTLE_MARK_DISTANCE 5
34 #define INIT_MIDDLE_MARK_DISTANCE (INIT_LITTLE_MARK_DISTANCE * 2)
35 #define INIT_BIG_MARK_DISTANCE (INIT_LITTLE_MARK_DISTANCE * 10)
36 #define INIT_SHOW_TINY_MARK false
37 #define INIT_SHOW_LITTLE_MARK true
38 #define INIT_SHOW_MEDIUM_MARK true
39 #define INIT_SHOW_BIG_MARK true
40 #define INIT_SHOW_END_MARK true
41 #define INIT_SHOW_POINTER true
42 #define INIT_SHOW_END_LABEL true
43
44 #define INIT_PIXEL_PER_MARK (double)10.0 /* distance between 2 base marks in pixel */
45 #define INIT_OFFSET (-20)
46 #define INIT_LENGTH_FIX true
47 #define INIT_END_OFFSET 0
48
49 #define FIX_WIDTH 20 /* widget width in pixel */
50 #define LINE_END (FIX_WIDTH - 3)
51 #define END_MARK_LENGTH (FIX_WIDTH - 6)
52 #define END_MARK_X2 LINE_END
53 #define END_MARK_X1 (END_MARK_X2 - END_MARK_LENGTH)
54 #define BIG_MARK_LENGTH (END_MARK_LENGTH*3/4)
55 #define BIG_MARK_X2 LINE_END
56 #define BIG_MARK_X1 (BIG_MARK_X2 - BIG_MARK_LENGTH)
57 #define MIDDLE_MARK_LENGTH (END_MARK_LENGTH/2)
58 #define MIDDLE_MARK_X2 LINE_END
59 #define MIDDLE_MARK_X1 (MIDDLE_MARK_X2 - MIDDLE_MARK_LENGTH)
60 #define LITTLE_MARK_LENGTH (MIDDLE_MARK_LENGTH/2)
61 #define LITTLE_MARK_X2 LINE_END
62 #define LITTLE_MARK_X1 (LITTLE_MARK_X2 - LITTLE_MARK_LENGTH)
63 #define BASE_MARK_LENGTH (LITTLE_MARK_LENGTH/2)
64 #define BASE_MARK_X2 LINE_END
65 #define BASE_MARK_X1 (BASE_MARK_X2 - 3) //BASE_MARK_LENGTH
66
67 #define LABEL_SIZE 8
68 #define END_LABEL_X 4
69 #define END_LABEL_Y (END_LABEL_X + LABEL_SIZE - 2)
70
71 #include "definitions.h"
72
73 const int CustomRuler::comboScale[] = { 1, 2, 5, 10, 25, 50, 125, 250, 500, 725, 1500, 3000, 6000,
74                                         12000
75                                       };
76
77 CustomRuler::CustomRuler(Timecode tc, CustomTrackView *parent)
78         : KRuler(parent), m_timecode(tc), m_view(parent) {
79     slotNewOffset(0);
80     setRulerMetricStyle(KRuler::Pixel);
81     setLength(1024);
82     setMaximum(1024);
83     setPixelPerMark(3);
84     setLittleMarkDistance(FRAME_SIZE);
85     setMediumMarkDistance(FRAME_SIZE * 25);
86     setBigMarkDistance(FRAME_SIZE * 25 * 60);
87     m_zoneStart = 50;
88     m_zoneEnd = 250;
89 }
90
91 // virtual
92 void CustomRuler::mousePressEvent(QMouseEvent * event) {
93     int pos = (event->x() + offset()) / pixelPerMark() / FRAME_SIZE;
94     m_moveCursor = RULER_CURSOR;
95     if (event->y() > 10) {
96         if (abs(pos - m_zoneStart) < 4) m_moveCursor = RULER_START;
97         else if (abs(pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2)) < 4) m_moveCursor = RULER_MIDDLE;
98         else if (abs(pos - m_zoneEnd) < 4) m_moveCursor = RULER_END;
99     }
100     if (m_moveCursor == RULER_CURSOR)
101         m_view->setCursorPos(pos);
102 }
103
104 // virtual
105 void CustomRuler::mouseMoveEvent(QMouseEvent * event) {
106     int pos = (event->x() + offset()) / pixelPerMark() / FRAME_SIZE;
107     if (m_moveCursor == RULER_CURSOR) {
108         m_view->setCursorPos(pos);
109         return;
110     } else if (m_moveCursor == RULER_START) m_zoneStart = pos;
111     else if (m_moveCursor == RULER_END) m_zoneEnd = pos;
112     else if (m_moveCursor == RULER_MIDDLE) {
113         int move = pos - (m_zoneStart + (m_zoneEnd - m_zoneStart) / 2);
114         m_zoneStart += move;
115         m_zoneEnd += move;
116     }
117     update();
118 }
119
120 int CustomRuler::inPoint() {
121     return m_zoneStart;
122 }
123
124 int CustomRuler::outPoint() {
125     return m_zoneEnd;
126 }
127
128 void CustomRuler::slotMoveRuler(int newPos) {
129     KRuler::slotNewOffset(newPos);
130 }
131
132 void CustomRuler::slotCursorMoved(int oldpos, int newpos) {
133     //TODO: optimize (redraw only around cursor positions
134     update();
135 }
136
137 void CustomRuler::setPixelPerMark(double rate) {
138     int scale = comboScale[(int) rate];
139     KRuler::setPixelPerMark(1.0 / scale);
140 }
141
142 // virtual
143 void CustomRuler::paintEvent(QPaintEvent *e) {
144     //  debug ("KRuler::drawContents, %s",(horizontal==dir)?"horizontal":"vertical");
145
146     QStylePainter p(this);
147     p.setClipRect(e->rect());
148     p.fillRect(e->rect(), QBrush(QColor(255, 255, 255, 80)));
149     //kDebug()<<"RULER ZONE: "<<m_zoneStart<<", OFF: "<<offset()<<", END: "<<m_zoneEnd<<", FACTOR: "<<pixelPerMark() * FRAME_SIZE;
150     int zoneStart = (m_zoneStart) * pixelPerMark() * FRAME_SIZE;
151     int zoneEnd = (m_zoneEnd) * pixelPerMark() * FRAME_SIZE;
152     p.fillRect(QRect(zoneStart - offset(), e->rect().y() + e->rect().height() / 2, zoneEnd - zoneStart, e->rect().height() / 2), QBrush(QColor(133, 255, 143)));
153
154     int value  = m_view->cursorPos() - offset() + 4;
155     int minval = minimum();
156     int maxval = maximum() + offset() - endOffset();
157
158     //ioffsetval = value-offset;
159     //    pixelpm = (int)ppm;
160     //    left  = clip.left(),
161     //    right = clip.right();
162     double f, fend,
163     offsetmin = (double)(minval - offset()),
164                 offsetmax = (double)(maxval - offset()),
165                             fontOffset = (((double)minval) > offsetmin) ? (double)minval : offsetmin;
166     QRect bg = QRect(offsetmin, 0, offsetmax, height());
167
168     QPalette palette;
169     //p.fillRect(bg, palette.light());
170     // draw labels
171     QFont font = p.font();
172     font.setPointSize(LABEL_SIZE);
173     p.setFont(font);
174     p.setPen(palette.dark().color());
175     // draw littlemarklabel
176
177     // draw mediummarklabel
178
179     // draw bigmarklabel
180
181     // draw endlabel
182     /*if (d->showEndL) {
183       if (d->dir == Qt::Horizontal) {
184         p.translate( fontOffset, 0 );
185         p.drawText( END_LABEL_X, END_LABEL_Y, d->endlabel );
186       }*/
187
188     // draw the tiny marks
189     //if (showTinyMarks())
190     /*{
191       fend =   pixelPerMark()*tinyMarkDistance();
192       if (fend > 5) for ( f=offsetmin; f<offsetmax; f+=fend ) {
193           p.drawLine((int)f, BASE_MARK_X1, (int)f, BASE_MARK_X2);
194       }
195     }*/
196     if (showLittleMarks()) {
197         // draw the little marks
198         fend = pixelPerMark() * littleMarkDistance();
199         if (fend > 5) for (f = offsetmin; f < offsetmax; f += fend) {
200                 p.drawLine((int)f, LITTLE_MARK_X1, (int)f, LITTLE_MARK_X2);
201                 if (fend > 60) {
202                     QString lab = m_timecode.getTimecodeFromFrames((int)((f - offsetmin) / pixelPerMark() / FRAME_SIZE + 0.5));
203                     p.drawText((int)f + 2, LABEL_SIZE, lab);
204                 }
205             }
206     }
207     if (showMediumMarks()) {
208         // draw medium marks
209         fend = pixelPerMark() * mediumMarkDistance();
210         if (fend > 5) for (f = offsetmin; f < offsetmax; f += fend) {
211                 p.drawLine((int)f, MIDDLE_MARK_X1, (int)f, MIDDLE_MARK_X2);
212                 if (fend > 60) {
213                     QString lab = m_timecode.getTimecodeFromFrames((int)((f - offsetmin) / pixelPerMark() / FRAME_SIZE + 0.5));
214                     p.drawText((int)f + 2, LABEL_SIZE, lab);
215                 }
216             }
217     }
218     if (showBigMarks()) {
219         // draw big marks
220         fend = pixelPerMark() * bigMarkDistance();
221         if (fend > 5) for (f = offsetmin; f < offsetmax; f += fend) {
222                 p.drawLine((int)f, BIG_MARK_X1, (int)f, BIG_MARK_X2);
223                 if (fend > 60) {
224                     QString lab = m_timecode.getTimecodeFromFrames((int)((f - offsetmin) / pixelPerMark() / FRAME_SIZE + 0.5));
225                     p.drawText((int)f + 2, LABEL_SIZE, lab);
226                 } else if (((int)(f - offsetmin)) % ((int)(fend * 5)) == 0) {
227                     QString lab = m_timecode.getTimecodeFromFrames((int)((f - offsetmin) / pixelPerMark() / FRAME_SIZE + 0.5));
228                     p.drawText((int)f + 2, LABEL_SIZE, lab);
229                 }
230             }
231     }
232     /*   if (d->showem) {
233          // draw end marks
234          if (d->dir == Qt::Horizontal) {
235            p.drawLine(minval-d->offset, END_MARK_X1, minval-d->offset, END_MARK_X2);
236            p.drawLine(maxval-d->offset, END_MARK_X1, maxval-d->offset, END_MARK_X2);
237          }
238          else {
239            p.drawLine(END_MARK_X1, minval-d->offset, END_MARK_X2, minval-d->offset);
240            p.drawLine(END_MARK_X1, maxval-d->offset, END_MARK_X2, maxval-d->offset);
241          }
242        }*/
243
244
245     // draw zone cursors
246     int off = offset();
247     if (zoneStart > 0) {
248         QPolygon pa(4);
249         pa.setPoints(4, zoneStart - off + 3, 9, zoneStart - off, 9, zoneStart - off, 18, zoneStart - off + 3, 18);
250         p.drawPolyline(pa);
251     }
252
253     if (zoneEnd > 0) {
254         QRect rec(zoneStart - off + (zoneEnd - zoneStart) / 2 - 4, 9, 8, 9);
255         p.fillRect(rec, QColor(255, 255, 255, 150));
256         p.drawRect(rec);
257
258         QPolygon pa(4);
259         pa.setPoints(4, zoneEnd - off - 3, 9, zoneEnd - off, 9, zoneEnd - off, 18, zoneEnd - off - 3, 18);
260         p.drawPolyline(pa);
261     }
262
263     // draw pointer
264     if (showPointer() && value > 0) {
265         QPolygon pa(3);
266         pa.setPoints(3, value - 6, 7, value + 6, 7, value, 16);
267         p.setBrush(QBrush(Qt::yellow));
268         p.drawPolygon(pa);
269     }
270
271
272
273 }
274
275 #include "customruler.moc"