Chris@127
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@127
|
2
|
Chris@127
|
3 /*
|
Chris@127
|
4 Sonic Visualiser
|
Chris@127
|
5 An audio file viewer and annotation editor.
|
Chris@127
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@264
|
7 This file copyright 2006-2007 Chris Cannam and QMUL.
|
Chris@127
|
8
|
Chris@127
|
9 This program is free software; you can redistribute it and/or
|
Chris@127
|
10 modify it under the terms of the GNU General Public License as
|
Chris@127
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@127
|
12 License, or (at your option) any later version. See the file
|
Chris@127
|
13 COPYING included with this distribution for more information.
|
Chris@127
|
14 */
|
Chris@127
|
15
|
Chris@128
|
16 #include "Pane.h"
|
Chris@128
|
17 #include "layer/Layer.h"
|
Chris@128
|
18 #include "data/model/Model.h"
|
Chris@127
|
19 #include "base/ZoomConstraint.h"
|
Chris@127
|
20 #include "base/RealTime.h"
|
Chris@127
|
21 #include "base/Profiler.h"
|
Chris@128
|
22 #include "ViewManager.h"
|
Chris@376
|
23 #include "widgets/CommandHistory.h"
|
Chris@376
|
24 #include "widgets/TextAbbrev.h"
|
Chris@338
|
25 #include "base/Preferences.h"
|
Chris@127
|
26 #include "layer/WaveformLayer.h"
|
Chris@127
|
27
|
gyorgyf@646
|
28 // GF: added so we can propagate the mouse move event to the note layer for context handling.
|
gyorgyf@646
|
29 #include "layer/LayerFactory.h"
|
gyorgyf@646
|
30 #include "layer/FlexiNoteLayer.h"
|
gyorgyf@646
|
31
|
gyorgyf@646
|
32
|
Chris@326
|
33 //!!! ugh
|
Chris@326
|
34 #include "data/model/WaveFileModel.h"
|
Chris@326
|
35
|
Chris@127
|
36 #include <QPaintEvent>
|
Chris@127
|
37 #include <QPainter>
|
Chris@257
|
38 #include <QBitmap>
|
Chris@312
|
39 #include <QDragEnterEvent>
|
Chris@312
|
40 #include <QDropEvent>
|
Chris@257
|
41 #include <QCursor>
|
Chris@316
|
42 #include <QTextStream>
|
Chris@616
|
43 #include <QMimeData>
|
Chris@802
|
44 #include <QApplication>
|
Chris@316
|
45
|
Chris@127
|
46 #include <iostream>
|
Chris@127
|
47 #include <cmath>
|
Chris@127
|
48
|
Chris@133
|
49 //!!! for HUD -- pull out into a separate class
|
Chris@133
|
50 #include <QFrame>
|
Chris@133
|
51 #include <QGridLayout>
|
Chris@133
|
52 #include <QPushButton>
|
Chris@133
|
53 #include "widgets/Thumbwheel.h"
|
Chris@172
|
54 #include "widgets/Panner.h"
|
Chris@188
|
55 #include "widgets/RangeInputDialog.h"
|
Chris@189
|
56 #include "widgets/NotifyingPushButton.h"
|
Chris@133
|
57
|
Chris@282
|
58 #include "widgets/KeyReference.h" //!!! should probably split KeyReference into a data class in base and another that shows the widget
|
Chris@282
|
59
|
Chris@363
|
60 //#define DEBUG_PANE
|
Chris@363
|
61
|
Chris@682
|
62
|
Chris@682
|
63
|
Chris@127
|
64
|
Chris@267
|
65 QCursor *Pane::m_measureCursor1 = 0;
|
Chris@267
|
66 QCursor *Pane::m_measureCursor2 = 0;
|
Chris@262
|
67
|
Chris@127
|
68 Pane::Pane(QWidget *w) :
|
Chris@127
|
69 View(w, true),
|
Chris@127
|
70 m_identifyFeatures(false),
|
Chris@127
|
71 m_clickedInRange(false),
|
Chris@127
|
72 m_shiftPressed(false),
|
Chris@127
|
73 m_ctrlPressed(false),
|
Chris@510
|
74 m_altPressed(false),
|
Chris@127
|
75 m_navigating(false),
|
Chris@127
|
76 m_resizing(false),
|
Chris@343
|
77 m_editing(false),
|
Chris@343
|
78 m_releasing(false),
|
Chris@133
|
79 m_centreLineVisible(true),
|
Chris@222
|
80 m_scaleWidth(0),
|
Chris@826
|
81 m_pendingWheelAngle(0),
|
Chris@237
|
82 m_headsUpDisplay(0),
|
Chris@237
|
83 m_vpan(0),
|
Chris@237
|
84 m_hthumb(0),
|
Chris@237
|
85 m_vthumb(0),
|
Chris@290
|
86 m_reset(0),
|
Chris@802
|
87 m_mouseInWidget(false),
|
Chris@802
|
88 m_playbackFrameMoveScheduled(false),
|
Chris@802
|
89 m_playbackFrameMoveTo(0)
|
Chris@127
|
90 {
|
Chris@127
|
91 setObjectName("Pane");
|
Chris@127
|
92 setMouseTracking(true);
|
Chris@312
|
93 setAcceptDrops(true);
|
Chris@133
|
94
|
Chris@133
|
95 updateHeadsUpDisplay();
|
Chris@456
|
96
|
Chris@730
|
97 connect(this, SIGNAL(regionOutlined(QRect)),
|
Chris@730
|
98 this, SLOT(zoomToRegion(QRect)));
|
Chris@730
|
99
|
Chris@728
|
100 cerr << "Pane::Pane(" << this << ") returning" << endl;
|
Chris@133
|
101 }
|
Chris@133
|
102
|
Chris@133
|
103 void
|
Chris@133
|
104 Pane::updateHeadsUpDisplay()
|
Chris@133
|
105 {
|
Chris@382
|
106 Profiler profiler("Pane::updateHeadsUpDisplay");
|
Chris@187
|
107
|
Chris@192
|
108 if (!isVisible()) return;
|
Chris@192
|
109
|
Chris@132
|
110 /*
|
Chris@132
|
111 int count = 0;
|
Chris@132
|
112 int currentLevel = 1;
|
Chris@132
|
113 int level = 1;
|
Chris@132
|
114 while (true) {
|
Chris@132
|
115 if (getZoomLevel() == level) currentLevel = count;
|
Chris@132
|
116 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@132
|
117 ZoomConstraint::RoundUp);
|
Chris@132
|
118 if (newLevel == level) break;
|
Chris@132
|
119 if (newLevel == 131072) break; //!!! just because
|
Chris@132
|
120 level = newLevel;
|
Chris@132
|
121 ++count;
|
Chris@132
|
122 }
|
Chris@132
|
123
|
Chris@682
|
124 cerr << "Have " << count+1 << " zoom levels" << endl;
|
Chris@132
|
125 */
|
Chris@133
|
126
|
Chris@188
|
127 Layer *layer = 0;
|
Chris@188
|
128 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@188
|
129
|
Chris@133
|
130 if (!m_headsUpDisplay) {
|
Chris@133
|
131
|
Chris@133
|
132 m_headsUpDisplay = new QFrame(this);
|
Chris@133
|
133
|
Chris@133
|
134 QGridLayout *layout = new QGridLayout;
|
Chris@133
|
135 layout->setMargin(0);
|
Chris@133
|
136 layout->setSpacing(0);
|
Chris@133
|
137 m_headsUpDisplay->setLayout(layout);
|
Chris@133
|
138
|
Chris@133
|
139 m_hthumb = new Thumbwheel(Qt::Horizontal);
|
Chris@187
|
140 m_hthumb->setObjectName(tr("Horizontal Zoom"));
|
Chris@260
|
141 m_hthumb->setCursor(Qt::ArrowCursor);
|
Chris@173
|
142 layout->addWidget(m_hthumb, 1, 0, 1, 2);
|
Chris@133
|
143 m_hthumb->setFixedWidth(70);
|
Chris@133
|
144 m_hthumb->setFixedHeight(16);
|
Chris@133
|
145 m_hthumb->setDefaultValue(0);
|
Chris@165
|
146 m_hthumb->setSpeed(0.6);
|
Chris@133
|
147 connect(m_hthumb, SIGNAL(valueChanged(int)), this,
|
Chris@133
|
148 SLOT(horizontalThumbwheelMoved(int)));
|
Chris@189
|
149 connect(m_hthumb, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
150 connect(m_hthumb, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@172
|
151
|
Chris@172
|
152 m_vpan = new Panner;
|
Chris@260
|
153 m_vpan->setCursor(Qt::ArrowCursor);
|
Chris@172
|
154 layout->addWidget(m_vpan, 0, 1);
|
Chris@173
|
155 m_vpan->setFixedWidth(12);
|
Chris@172
|
156 m_vpan->setFixedHeight(70);
|
Chris@174
|
157 m_vpan->setAlpha(80, 130);
|
Chris@174
|
158 connect(m_vpan, SIGNAL(rectExtentsChanged(float, float, float, float)),
|
Chris@174
|
159 this, SLOT(verticalPannerMoved(float, float, float, float)));
|
Chris@188
|
160 connect(m_vpan, SIGNAL(doubleClicked()),
|
Chris@188
|
161 this, SLOT(editVerticalPannerExtents()));
|
Chris@189
|
162 connect(m_vpan, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
163 connect(m_vpan, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@172
|
164
|
Chris@133
|
165 m_vthumb = new Thumbwheel(Qt::Vertical);
|
Chris@187
|
166 m_vthumb->setObjectName(tr("Vertical Zoom"));
|
Chris@260
|
167 m_vthumb->setCursor(Qt::ArrowCursor);
|
Chris@172
|
168 layout->addWidget(m_vthumb, 0, 2);
|
Chris@133
|
169 m_vthumb->setFixedWidth(16);
|
Chris@133
|
170 m_vthumb->setFixedHeight(70);
|
Chris@133
|
171 connect(m_vthumb, SIGNAL(valueChanged(int)), this,
|
Chris@133
|
172 SLOT(verticalThumbwheelMoved(int)));
|
Chris@189
|
173 connect(m_vthumb, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
174 connect(m_vthumb, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@133
|
175
|
Chris@188
|
176 if (layer) {
|
Chris@188
|
177 RangeMapper *rm = layer->getNewVerticalZoomRangeMapper();
|
Chris@188
|
178 if (rm) m_vthumb->setRangeMapper(rm);
|
Chris@188
|
179 }
|
Chris@188
|
180
|
Chris@189
|
181 m_reset = new NotifyingPushButton;
|
Chris@713
|
182 m_reset->setFlat(true);
|
Chris@260
|
183 m_reset->setCursor(Qt::ArrowCursor);
|
Chris@189
|
184 m_reset->setFixedHeight(16);
|
Chris@189
|
185 m_reset->setFixedWidth(16);
|
Chris@499
|
186 m_reset->setIcon(QPixmap(":/icons/zoom-reset.png"));
|
Chris@501
|
187 m_reset->setToolTip(tr("Reset zoom to default"));
|
Chris@189
|
188 layout->addWidget(m_reset, 1, 2);
|
Chris@492
|
189
|
Chris@492
|
190 layout->setColumnStretch(0, 20);
|
Chris@492
|
191
|
Chris@189
|
192 connect(m_reset, SIGNAL(clicked()), m_hthumb, SLOT(resetToDefault()));
|
Chris@189
|
193 connect(m_reset, SIGNAL(clicked()), m_vthumb, SLOT(resetToDefault()));
|
Chris@189
|
194 connect(m_reset, SIGNAL(clicked()), m_vpan, SLOT(resetToDefault()));
|
Chris@189
|
195 connect(m_reset, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
196 connect(m_reset, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@133
|
197 }
|
Chris@133
|
198
|
Chris@133
|
199 int count = 0;
|
Chris@133
|
200 int current = 0;
|
Chris@133
|
201 int level = 1;
|
Chris@133
|
202
|
Chris@137
|
203 //!!! pull out into function (presumably in View)
|
Chris@137
|
204 bool haveConstraint = false;
|
Chris@137
|
205 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end();
|
Chris@137
|
206 ++i) {
|
Chris@137
|
207 if ((*i)->getZoomConstraint() && !(*i)->supportsOtherZoomLevels()) {
|
Chris@137
|
208 haveConstraint = true;
|
Chris@137
|
209 break;
|
Chris@137
|
210 }
|
Chris@137
|
211 }
|
Chris@137
|
212
|
Chris@137
|
213 if (haveConstraint) {
|
Chris@137
|
214 while (true) {
|
Chris@137
|
215 if (getZoomLevel() == level) current = count;
|
Chris@137
|
216 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@137
|
217 ZoomConstraint::RoundUp);
|
Chris@137
|
218 if (newLevel == level) break;
|
Chris@137
|
219 level = newLevel;
|
Chris@137
|
220 if (++count == 50) break;
|
Chris@137
|
221 }
|
Chris@137
|
222 } else {
|
Chris@137
|
223 // if we have no particular constraints, we can really spread out
|
Chris@137
|
224 while (true) {
|
Chris@137
|
225 if (getZoomLevel() >= level) current = count;
|
Chris@137
|
226 int step = level / 10;
|
Chris@137
|
227 int pwr = 0;
|
Chris@137
|
228 while (step > 0) {
|
Chris@137
|
229 ++pwr;
|
Chris@137
|
230 step /= 2;
|
Chris@137
|
231 }
|
Chris@137
|
232 step = 1;
|
Chris@137
|
233 while (pwr > 0) {
|
Chris@137
|
234 step *= 2;
|
Chris@137
|
235 --pwr;
|
Chris@137
|
236 }
|
Chris@682
|
237 // cerr << level << endl;
|
Chris@137
|
238 level += step;
|
Chris@137
|
239 if (++count == 100 || level > 262144) break;
|
Chris@137
|
240 }
|
Chris@133
|
241 }
|
Chris@133
|
242
|
Chris@682
|
243 // cerr << "Have " << count << " zoom levels" << endl;
|
Chris@133
|
244
|
Chris@133
|
245 m_hthumb->setMinimumValue(0);
|
Chris@133
|
246 m_hthumb->setMaximumValue(count);
|
Chris@133
|
247 m_hthumb->setValue(count - current);
|
Chris@133
|
248
|
Chris@682
|
249 // cerr << "set value to " << count-current << endl;
|
Chris@682
|
250
|
Chris@682
|
251 // cerr << "default value is " << m_hthumb->getDefaultValue() << endl;
|
Chris@133
|
252
|
Chris@133
|
253 if (count != 50 && m_hthumb->getDefaultValue() == 0) {
|
Chris@133
|
254 m_hthumb->setDefaultValue(count - current);
|
Chris@682
|
255 // cerr << "set default value to " << m_hthumb->getDefaultValue() << endl;
|
Chris@133
|
256 }
|
Chris@133
|
257
|
Chris@204
|
258 bool haveVThumb = false;
|
Chris@204
|
259
|
Chris@133
|
260 if (layer) {
|
Chris@133
|
261 int defaultStep = 0;
|
Chris@133
|
262 int max = layer->getVerticalZoomSteps(defaultStep);
|
Chris@133
|
263 if (max == 0) {
|
Chris@133
|
264 m_vthumb->hide();
|
Chris@133
|
265 } else {
|
Chris@204
|
266 haveVThumb = true;
|
Chris@133
|
267 m_vthumb->show();
|
Chris@187
|
268 m_vthumb->blockSignals(true);
|
Chris@133
|
269 m_vthumb->setMinimumValue(0);
|
Chris@133
|
270 m_vthumb->setMaximumValue(max);
|
Chris@133
|
271 m_vthumb->setDefaultValue(defaultStep);
|
Chris@133
|
272 m_vthumb->setValue(layer->getCurrentVerticalZoomStep());
|
Chris@187
|
273 m_vthumb->blockSignals(false);
|
Chris@135
|
274
|
Chris@682
|
275 // cerr << "Vertical thumbwheel: min 0, max " << max
|
Chris@205
|
276 // << ", default " << defaultStep << ", value "
|
Chris@682
|
277 // << m_vthumb->getValue() << endl;
|
Chris@135
|
278
|
Chris@133
|
279 }
|
Chris@133
|
280 }
|
Chris@133
|
281
|
Chris@174
|
282 updateVerticalPanner();
|
Chris@174
|
283
|
Chris@133
|
284 if (m_manager && m_manager->getZoomWheelsEnabled() &&
|
Chris@133
|
285 width() > 120 && height() > 100) {
|
Chris@165
|
286 if (!m_headsUpDisplay->isVisible()) {
|
Chris@165
|
287 m_headsUpDisplay->show();
|
Chris@165
|
288 }
|
Chris@204
|
289 if (haveVThumb) {
|
Chris@204
|
290 m_headsUpDisplay->setFixedHeight(m_vthumb->height() + m_hthumb->height());
|
Chris@133
|
291 m_headsUpDisplay->move(width() - 86, height() - 86);
|
Chris@133
|
292 } else {
|
Chris@204
|
293 m_headsUpDisplay->setFixedHeight(m_hthumb->height());
|
Chris@204
|
294 m_headsUpDisplay->move(width() - 86, height() - 16);
|
Chris@133
|
295 }
|
Chris@133
|
296 } else {
|
Chris@133
|
297 m_headsUpDisplay->hide();
|
Chris@133
|
298 }
|
Chris@127
|
299 }
|
Chris@127
|
300
|
Chris@174
|
301 void
|
Chris@174
|
302 Pane::updateVerticalPanner()
|
Chris@174
|
303 {
|
Chris@174
|
304 if (!m_vpan || !m_manager || !m_manager->getZoomWheelsEnabled()) return;
|
Chris@174
|
305
|
Chris@208
|
306 // In principle we should show or hide the panner on the basis of
|
Chris@208
|
307 // whether the top layer has adjustable display extents, and we do
|
Chris@208
|
308 // that below. However, we have no basis for layout of the panner
|
Chris@208
|
309 // if the vertical scroll wheel is not also present. So if we
|
Chris@208
|
310 // have no vertical scroll wheel, we should remove the panner as
|
Chris@208
|
311 // well. Ideally any layer that implements display extents should
|
Chris@208
|
312 // implement vertical zoom steps as well, but they don't all at
|
Chris@208
|
313 // the moment.
|
Chris@208
|
314
|
Chris@208
|
315 Layer *layer = 0;
|
Chris@208
|
316 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@208
|
317 int discard;
|
Chris@208
|
318 if (layer && layer->getVerticalZoomSteps(discard) == 0) {
|
Chris@208
|
319 m_vpan->hide();
|
Chris@208
|
320 return;
|
Chris@208
|
321 }
|
Chris@208
|
322
|
Chris@174
|
323 float vmin, vmax, dmin, dmax;
|
Chris@174
|
324 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax) && vmax != vmin) {
|
Chris@174
|
325 float y0 = (dmin - vmin) / (vmax - vmin);
|
Chris@174
|
326 float y1 = (dmax - vmin) / (vmax - vmin);
|
Chris@174
|
327 m_vpan->blockSignals(true);
|
Chris@174
|
328 m_vpan->setRectExtents(0, 1.0 - y1, 1, y1 - y0);
|
Chris@174
|
329 m_vpan->blockSignals(false);
|
Chris@174
|
330 m_vpan->show();
|
Chris@174
|
331 } else {
|
Chris@174
|
332 m_vpan->hide();
|
Chris@174
|
333 }
|
Chris@174
|
334 }
|
Chris@174
|
335
|
Chris@127
|
336 bool
|
Chris@127
|
337 Pane::shouldIlluminateLocalFeatures(const Layer *layer, QPoint &pos) const
|
Chris@127
|
338 {
|
Chris@127
|
339 QPoint discard;
|
Chris@127
|
340 bool b0, b1;
|
Chris@127
|
341
|
Chris@711
|
342 if (m_manager && m_manager->getToolModeFor(this) == ViewManager::MeasureMode) {
|
Chris@262
|
343 return false;
|
Chris@262
|
344 }
|
matthiasm@651
|
345
|
Chris@326
|
346 if (m_manager && !m_manager->shouldIlluminateLocalFeatures()) {
|
Chris@326
|
347 return false;
|
Chris@326
|
348 }
|
Chris@326
|
349
|
Chris@127
|
350 if (layer == getSelectedLayer() &&
|
Chris@753
|
351 !shouldIlluminateLocalSelection(discard, b0, b1)) {
|
Chris@753
|
352
|
Chris@753
|
353 pos = m_identifyPoint;
|
Chris@753
|
354 return m_identifyFeatures;
|
Chris@127
|
355 }
|
Chris@127
|
356
|
Chris@127
|
357 return false;
|
Chris@127
|
358 }
|
Chris@127
|
359
|
Chris@127
|
360 bool
|
Chris@127
|
361 Pane::shouldIlluminateLocalSelection(QPoint &pos,
|
gyorgyf@645
|
362 bool &closeToLeft,
|
gyorgyf@645
|
363 bool &closeToRight) const
|
Chris@127
|
364 {
|
Chris@127
|
365 if (m_identifyFeatures &&
|
Chris@731
|
366 m_manager &&
|
Chris@731
|
367 m_manager->getToolModeFor(this) == ViewManager::EditMode &&
|
Chris@731
|
368 !m_manager->getSelections().empty() &&
|
Chris@731
|
369 !selectionIsBeingEdited()) {
|
gyorgyf@645
|
370
|
Chris@753
|
371 Selection s(getSelectionAt(m_identifyPoint.x(),
|
Chris@753
|
372 closeToLeft, closeToRight));
|
Chris@753
|
373
|
Chris@753
|
374 if (!s.isEmpty()) {
|
Chris@753
|
375 if (getSelectedLayer() && getSelectedLayer()->isLayerEditable()) {
|
Chris@753
|
376
|
Chris@753
|
377 pos = m_identifyPoint;
|
Chris@753
|
378 return true;
|
Chris@753
|
379 }
|
gyorgyf@645
|
380 }
|
gyorgyf@645
|
381 }
|
Chris@127
|
382
|
Chris@127
|
383 return false;
|
Chris@127
|
384 }
|
Chris@127
|
385
|
Chris@127
|
386 bool
|
Chris@127
|
387 Pane::selectionIsBeingEdited() const
|
Chris@127
|
388 {
|
Chris@127
|
389 if (!m_editingSelection.isEmpty()) {
|
gyorgyf@645
|
390 if (m_mousePos != m_clickPos &&
|
gyorgyf@645
|
391 getFrameForX(m_mousePos.x()) != getFrameForX(m_clickPos.x())) {
|
gyorgyf@645
|
392 return true;
|
gyorgyf@645
|
393 }
|
Chris@127
|
394 }
|
Chris@127
|
395 return false;
|
Chris@127
|
396 }
|
Chris@127
|
397
|
Chris@127
|
398 void
|
Chris@127
|
399 Pane::setCentreLineVisible(bool visible)
|
Chris@127
|
400 {
|
Chris@127
|
401 m_centreLineVisible = visible;
|
Chris@127
|
402 update();
|
Chris@127
|
403 }
|
Chris@127
|
404
|
Chris@127
|
405 void
|
Chris@127
|
406 Pane::paintEvent(QPaintEvent *e)
|
Chris@127
|
407 {
|
Chris@127
|
408 // Profiler profiler("Pane::paintEvent", true);
|
Chris@127
|
409
|
Chris@127
|
410 QPainter paint;
|
Chris@127
|
411
|
Chris@127
|
412 QRect r(rect());
|
Chris@261
|
413 if (e) r = e->rect();
|
Chris@127
|
414
|
Chris@127
|
415 View::paintEvent(e);
|
Chris@127
|
416
|
Chris@127
|
417 paint.begin(this);
|
Chris@339
|
418 setPaintFont(paint);
|
Chris@338
|
419
|
Chris@261
|
420 if (e) paint.setClipRect(r);
|
Chris@127
|
421
|
Chris@711
|
422 ViewManager::ToolMode toolMode = m_manager->getToolModeFor(this);
|
Chris@259
|
423
|
Chris@127
|
424 if (m_manager &&
|
Chris@290
|
425 // !m_manager->isPlaying() &&
|
Chris@290
|
426 m_mouseInWidget &&
|
Chris@259
|
427 toolMode == ViewManager::MeasureMode) {
|
Chris@127
|
428
|
Chris@127
|
429 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@127
|
430 --vi;
|
Chris@127
|
431
|
Chris@127
|
432 std::vector<QRect> crosshairExtents;
|
Chris@127
|
433
|
Chris@127
|
434 if ((*vi)->getCrosshairExtents(this, paint, m_identifyPoint,
|
Chris@127
|
435 crosshairExtents)) {
|
Chris@127
|
436 (*vi)->paintCrosshairs(this, paint, m_identifyPoint);
|
Chris@127
|
437 break;
|
Chris@127
|
438 } else if ((*vi)->isLayerOpaque()) {
|
Chris@127
|
439 break;
|
Chris@127
|
440 }
|
Chris@127
|
441 }
|
Chris@127
|
442 }
|
Chris@127
|
443
|
Chris@268
|
444 Layer *topLayer = getTopLayer();
|
Chris@277
|
445 bool haveSomeTimeXAxis = false;
|
Chris@268
|
446
|
Chris@258
|
447 const Model *waveformModel = 0; // just for reporting purposes
|
Chris@326
|
448 const Model *workModel = 0;
|
Chris@326
|
449
|
Chris@127
|
450 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@127
|
451 --vi;
|
Chris@277
|
452 if (!haveSomeTimeXAxis && (*vi)->hasTimeXAxis()) {
|
Chris@277
|
453 haveSomeTimeXAxis = true;
|
Chris@277
|
454 }
|
Chris@127
|
455 if (dynamic_cast<WaveformLayer *>(*vi)) {
|
Chris@127
|
456 waveformModel = (*vi)->getModel();
|
Chris@326
|
457 workModel = waveformModel;
|
Chris@326
|
458 } else {
|
Chris@326
|
459 Model *m = (*vi)->getModel();
|
Chris@326
|
460 if (dynamic_cast<WaveFileModel *>(m)) {
|
Chris@326
|
461 workModel = m;
|
Chris@326
|
462 } else if (m && dynamic_cast<WaveFileModel *>(m->getSourceModel())) {
|
Chris@326
|
463 workModel = m->getSourceModel();
|
Chris@326
|
464 }
|
Chris@127
|
465 }
|
Chris@326
|
466
|
Chris@326
|
467 if (waveformModel && workModel && haveSomeTimeXAxis) break;
|
Chris@258
|
468 }
|
Chris@127
|
469
|
Chris@261
|
470 m_scaleWidth = 0;
|
Chris@261
|
471
|
Chris@759
|
472 if (workModel) {
|
Chris@759
|
473 drawModelTimeExtents(r, paint, workModel);
|
Chris@759
|
474 }
|
Chris@759
|
475
|
Chris@261
|
476 if (m_manager && m_manager->shouldShowVerticalScale() && topLayer) {
|
Chris@261
|
477 drawVerticalScale(r, topLayer, paint);
|
Chris@261
|
478 }
|
Chris@261
|
479
|
Chris@326
|
480 if (m_identifyFeatures &&
|
Chris@326
|
481 m_manager && m_manager->shouldIlluminateLocalFeatures() &&
|
Chris@326
|
482 topLayer) {
|
Chris@261
|
483 drawFeatureDescription(topLayer, paint);
|
Chris@261
|
484 }
|
Chris@261
|
485
|
Chris@261
|
486 int sampleRate = getModelsSampleRate();
|
Chris@261
|
487 paint.setBrush(Qt::NoBrush);
|
Chris@261
|
488
|
Chris@261
|
489 if (m_centreLineVisible &&
|
Chris@261
|
490 m_manager &&
|
Chris@261
|
491 m_manager->shouldShowCentreLine()) {
|
Chris@277
|
492 drawCentreLine(sampleRate, paint, !haveSomeTimeXAxis);
|
Chris@261
|
493 }
|
Chris@261
|
494
|
Chris@261
|
495 paint.setPen(QColor(50, 50, 50));
|
Chris@261
|
496
|
Chris@261
|
497 if (waveformModel &&
|
Chris@261
|
498 m_manager &&
|
Chris@261
|
499 m_manager->shouldShowDuration()) {
|
Chris@261
|
500 drawDurationAndRate(r, waveformModel, sampleRate, paint);
|
Chris@261
|
501 }
|
Chris@261
|
502
|
Chris@326
|
503 bool haveWorkTitle = false;
|
Chris@326
|
504
|
Chris@326
|
505 if (workModel &&
|
Chris@326
|
506 m_manager &&
|
Chris@326
|
507 m_manager->shouldShowWorkTitle()) {
|
Chris@326
|
508 drawWorkTitle(r, paint, workModel);
|
Chris@326
|
509 haveWorkTitle = true;
|
Chris@326
|
510 }
|
Chris@326
|
511
|
Chris@326
|
512 if (workModel &&
|
Chris@320
|
513 m_manager &&
|
Chris@320
|
514 m_manager->getAlignMode()) {
|
Chris@326
|
515 drawAlignmentStatus(r, paint, workModel, haveWorkTitle);
|
Chris@320
|
516 }
|
Chris@320
|
517
|
Chris@261
|
518 if (m_manager &&
|
Chris@261
|
519 m_manager->shouldShowLayerNames()) {
|
Chris@261
|
520 drawLayerNames(r, paint);
|
Chris@261
|
521 }
|
Chris@261
|
522
|
Chris@262
|
523 if (m_shiftPressed && m_clickedInRange &&
|
Chris@283
|
524 (toolMode == ViewManager::NavigateMode || m_navigating)) {
|
Chris@261
|
525
|
Chris@261
|
526 //!!! be nice if this looked a bit more in keeping with the
|
Chris@261
|
527 //selection block
|
Chris@262
|
528
|
Chris@262
|
529 paint.setPen(Qt::blue);
|
Chris@262
|
530 //!!! shouldn't use clickPos -- needs to use a clicked frame
|
Chris@262
|
531 paint.drawRect(m_clickPos.x(), m_clickPos.y(),
|
Chris@262
|
532 m_mousePos.x() - m_clickPos.x(),
|
Chris@262
|
533 m_mousePos.y() - m_clickPos.y());
|
Chris@261
|
534
|
Chris@262
|
535 }
|
Chris@261
|
536
|
Chris@266
|
537 if (toolMode == ViewManager::MeasureMode && topLayer) {
|
Chris@272
|
538 bool showFocus = false;
|
Chris@272
|
539 if (!m_manager || !m_manager->isPlaying()) showFocus = true;
|
Chris@272
|
540 topLayer->paintMeasurementRects(this, paint, showFocus, m_identifyPoint);
|
Chris@261
|
541 }
|
Chris@261
|
542
|
Chris@261
|
543 if (selectionIsBeingEdited()) {
|
Chris@261
|
544 drawEditingSelection(paint);
|
Chris@261
|
545 }
|
Chris@261
|
546
|
Chris@261
|
547 paint.end();
|
Chris@261
|
548 }
|
Chris@261
|
549
|
Chris@806
|
550 int
|
Chris@276
|
551 Pane::getVerticalScaleWidth() const
|
Chris@276
|
552 {
|
Chris@276
|
553 if (m_scaleWidth > 0) return m_scaleWidth;
|
Chris@276
|
554 else return 0;
|
Chris@276
|
555 }
|
Chris@276
|
556
|
Chris@261
|
557 void
|
Chris@261
|
558 Pane::drawVerticalScale(QRect r, Layer *topLayer, QPainter &paint)
|
Chris@261
|
559 {
|
Chris@258
|
560 Layer *scaleLayer = 0;
|
Chris@258
|
561
|
Chris@261
|
562 float min, max;
|
Chris@261
|
563 bool log;
|
Chris@261
|
564 QString unit;
|
Chris@258
|
565
|
Chris@261
|
566 // If the top layer has no scale and reports no display
|
Chris@261
|
567 // extents, but does report a unit, then the scale should be
|
Chris@261
|
568 // drawn from any underlying layer with a scale and that unit.
|
Chris@261
|
569 // If the top layer has no scale and no value extents at all,
|
Chris@261
|
570 // then the scale should be drawn from any underlying layer
|
Chris@261
|
571 // with a scale regardless of unit.
|
Chris@258
|
572
|
Chris@607
|
573 int sw = topLayer->getVerticalScaleWidth
|
Chris@607
|
574 (this, m_manager->shouldShowVerticalColourScale(), paint);
|
Chris@258
|
575
|
Chris@261
|
576 if (sw > 0) {
|
Chris@261
|
577 scaleLayer = topLayer;
|
Chris@261
|
578 m_scaleWidth = sw;
|
Chris@258
|
579
|
Chris@261
|
580 } else {
|
Chris@258
|
581
|
Chris@261
|
582 bool hasDisplayExtents = topLayer->getDisplayExtents(min, max);
|
Chris@261
|
583 bool hasValueExtents = topLayer->getValueExtents(min, max, log, unit);
|
Chris@261
|
584
|
Chris@261
|
585 if (!hasDisplayExtents) {
|
Chris@258
|
586
|
Chris@261
|
587 if (!hasValueExtents) {
|
Chris@258
|
588
|
Chris@261
|
589 for (LayerList::iterator vi = m_layers.end();
|
Chris@261
|
590 vi != m_layers.begin(); ) {
|
Chris@261
|
591
|
Chris@261
|
592 --vi;
|
Chris@261
|
593
|
Chris@261
|
594 if ((*vi) == topLayer) continue;
|
Chris@261
|
595
|
Chris@607
|
596 sw = (*vi)->getVerticalScaleWidth
|
Chris@607
|
597 (this, m_manager->shouldShowVerticalColourScale(), paint);
|
Chris@261
|
598
|
Chris@261
|
599 if (sw > 0) {
|
Chris@261
|
600 scaleLayer = *vi;
|
Chris@261
|
601 m_scaleWidth = sw;
|
Chris@261
|
602 break;
|
Chris@261
|
603 }
|
Chris@261
|
604 }
|
Chris@261
|
605 } else if (unit != "") { // && hasValueExtents && !hasDisplayExtents
|
Chris@258
|
606
|
Chris@261
|
607 QString requireUnit = unit;
|
Chris@261
|
608
|
Chris@261
|
609 for (LayerList::iterator vi = m_layers.end();
|
Chris@261
|
610 vi != m_layers.begin(); ) {
|
Chris@258
|
611
|
Chris@261
|
612 --vi;
|
Chris@258
|
613
|
Chris@261
|
614 if ((*vi) == topLayer) continue;
|
Chris@258
|
615
|
Chris@261
|
616 if ((*vi)->getDisplayExtents(min, max)) {
|
Chris@261
|
617
|
Chris@261
|
618 // search no further than this: if the
|
Chris@261
|
619 // scale from this layer isn't suitable,
|
Chris@261
|
620 // we'll have to draw no scale (else we'd
|
Chris@261
|
621 // risk ending up with the wrong scale)
|
Chris@261
|
622
|
Chris@261
|
623 if ((*vi)->getValueExtents(min, max, log, unit) &&
|
Chris@261
|
624 unit == requireUnit) {
|
Chris@261
|
625
|
Chris@607
|
626 sw = (*vi)->getVerticalScaleWidth
|
Chris@607
|
627 (this, m_manager->shouldShowVerticalColourScale(), paint);
|
Chris@261
|
628 if (sw > 0) {
|
Chris@261
|
629 scaleLayer = *vi;
|
Chris@261
|
630 m_scaleWidth = sw;
|
Chris@261
|
631 }
|
Chris@258
|
632 }
|
Chris@261
|
633 break;
|
Chris@258
|
634 }
|
Chris@258
|
635 }
|
Chris@258
|
636 }
|
Chris@127
|
637 }
|
Chris@258
|
638 }
|
Chris@127
|
639
|
Chris@258
|
640 if (!scaleLayer) m_scaleWidth = 0;
|
Chris@258
|
641
|
Chris@258
|
642 if (m_scaleWidth > 0 && r.left() < m_scaleWidth) {
|
Chris@127
|
643
|
gyorgyf@645
|
644 // Profiler profiler("Pane::paintEvent - painting vertical scale", true);
|
gyorgyf@645
|
645
|
gyorgyf@645
|
646 // SVDEBUG << "Pane::paintEvent: calling paint.save() in vertical scale block" << endl;
|
Chris@258
|
647 paint.save();
|
Chris@258
|
648
|
Chris@287
|
649 paint.setPen(getForeground());
|
Chris@287
|
650 paint.setBrush(getBackground());
|
Chris@258
|
651 paint.drawRect(0, -1, m_scaleWidth, height()+1);
|
Chris@258
|
652
|
Chris@258
|
653 paint.setBrush(Qt::NoBrush);
|
Chris@258
|
654 scaleLayer->paintVerticalScale
|
Chris@607
|
655 (this, m_manager->shouldShowVerticalColourScale(),
|
Chris@607
|
656 paint, QRect(0, 0, m_scaleWidth, height()));
|
Chris@258
|
657
|
Chris@258
|
658 paint.restore();
|
Chris@258
|
659 }
|
Chris@261
|
660 }
|
Chris@261
|
661
|
Chris@261
|
662 void
|
Chris@261
|
663 Pane::drawFeatureDescription(Layer *topLayer, QPainter &paint)
|
Chris@261
|
664 {
|
Chris@261
|
665 QPoint pos = m_identifyPoint;
|
Chris@261
|
666 QString desc = topLayer->getFeatureDescription(this, pos);
|
gyorgyf@645
|
667
|
Chris@261
|
668 if (desc != "") {
|
Chris@261
|
669
|
Chris@261
|
670 paint.save();
|
Chris@261
|
671
|
Chris@261
|
672 int tabStop =
|
Chris@261
|
673 paint.fontMetrics().width(tr("Some lengthy prefix:"));
|
Chris@261
|
674
|
Chris@261
|
675 QRect boundingRect =
|
Chris@261
|
676 paint.fontMetrics().boundingRect
|
Chris@261
|
677 (rect(),
|
Chris@261
|
678 Qt::AlignRight | Qt::AlignTop | Qt::TextExpandTabs,
|
Chris@261
|
679 desc, tabStop);
|
Chris@261
|
680
|
Chris@261
|
681 if (hasLightBackground()) {
|
Chris@261
|
682 paint.setPen(Qt::NoPen);
|
Chris@261
|
683 paint.setBrush(QColor(250, 250, 250, 200));
|
Chris@261
|
684 } else {
|
Chris@261
|
685 paint.setPen(Qt::NoPen);
|
Chris@261
|
686 paint.setBrush(QColor(50, 50, 50, 200));
|
Chris@261
|
687 }
|
Chris@261
|
688
|
Chris@261
|
689 int extra = paint.fontMetrics().descent();
|
Chris@261
|
690 paint.drawRect(width() - boundingRect.width() - 10 - extra,
|
Chris@261
|
691 10 - extra,
|
Chris@261
|
692 boundingRect.width() + 2 * extra,
|
Chris@261
|
693 boundingRect.height() + extra);
|
Chris@261
|
694
|
Chris@261
|
695 if (hasLightBackground()) {
|
Chris@261
|
696 paint.setPen(QColor(150, 20, 0));
|
Chris@261
|
697 } else {
|
Chris@261
|
698 paint.setPen(QColor(255, 150, 100));
|
Chris@261
|
699 }
|
Chris@261
|
700
|
Chris@261
|
701 QTextOption option;
|
Chris@261
|
702 option.setWrapMode(QTextOption::NoWrap);
|
Chris@261
|
703 option.setAlignment(Qt::AlignRight | Qt::AlignTop);
|
Chris@261
|
704 option.setTabStop(tabStop);
|
Chris@261
|
705 paint.drawText(QRectF(width() - boundingRect.width() - 10, 10,
|
Chris@261
|
706 boundingRect.width(),
|
Chris@261
|
707 boundingRect.height()),
|
Chris@261
|
708 desc,
|
Chris@261
|
709 option);
|
Chris@261
|
710
|
Chris@261
|
711 paint.restore();
|
Chris@261
|
712 }
|
Chris@261
|
713 }
|
Chris@258
|
714
|
Chris@261
|
715 void
|
Chris@277
|
716 Pane::drawCentreLine(int sampleRate, QPainter &paint, bool omitLine)
|
Chris@261
|
717 {
|
Chris@261
|
718 int fontHeight = paint.fontMetrics().height();
|
Chris@261
|
719 int fontAscent = paint.fontMetrics().ascent();
|
Chris@261
|
720
|
Chris@261
|
721 QColor c = QColor(0, 0, 0);
|
Chris@261
|
722 if (!hasLightBackground()) {
|
Chris@261
|
723 c = QColor(240, 240, 240);
|
Chris@261
|
724 }
|
Chris@277
|
725
|
Chris@261
|
726 paint.setPen(c);
|
Chris@274
|
727 int x = width() / 2;
|
Chris@277
|
728
|
Chris@277
|
729 if (!omitLine) {
|
Chris@277
|
730 paint.drawLine(x, 0, x, height() - 1);
|
Chris@277
|
731 paint.drawLine(x-1, 1, x+1, 1);
|
Chris@277
|
732 paint.drawLine(x-2, 0, x+2, 0);
|
Chris@277
|
733 paint.drawLine(x-1, height() - 2, x+1, height() - 2);
|
Chris@277
|
734 paint.drawLine(x-2, height() - 1, x+2, height() - 1);
|
Chris@277
|
735 }
|
Chris@261
|
736
|
Chris@261
|
737 paint.setPen(QColor(50, 50, 50));
|
Chris@261
|
738
|
Chris@261
|
739 int y = height() - fontHeight + fontAscent - 6;
|
Chris@261
|
740
|
Chris@261
|
741 LayerList::iterator vi = m_layers.end();
|
Chris@261
|
742
|
Chris@261
|
743 if (vi != m_layers.begin()) {
|
gyorgyf@645
|
744
|
Chris@261
|
745 switch ((*--vi)->getPreferredFrameCountPosition()) {
|
Chris@258
|
746
|
Chris@261
|
747 case Layer::PositionTop:
|
Chris@261
|
748 y = fontAscent + 6;
|
Chris@261
|
749 break;
|
Chris@258
|
750
|
Chris@261
|
751 case Layer::PositionMiddle:
|
Chris@261
|
752 y = (height() - fontHeight) / 2
|
Chris@261
|
753 + fontAscent;
|
Chris@261
|
754 break;
|
Chris@127
|
755
|
Chris@261
|
756 case Layer::PositionBottom:
|
Chris@261
|
757 // y already set correctly
|
Chris@261
|
758 break;
|
Chris@127
|
759 }
|
Chris@127
|
760 }
|
Chris@127
|
761
|
Chris@261
|
762 if (m_manager && m_manager->shouldShowFrameCount()) {
|
Chris@261
|
763
|
Chris@261
|
764 if (sampleRate) {
|
Chris@127
|
765
|
Chris@261
|
766 QString text(QString::fromStdString
|
Chris@261
|
767 (RealTime::frame2RealTime
|
Chris@549
|
768 (m_centreFrame, sampleRate)
|
Chris@549
|
769 .toText(true)));
|
Chris@127
|
770
|
Chris@261
|
771 int tw = paint.fontMetrics().width(text);
|
Chris@261
|
772 int x = width()/2 - 4 - tw;
|
Chris@127
|
773
|
Chris@127
|
774 drawVisibleText(paint, x, y, text, OutlinedText);
|
Chris@127
|
775 }
|
Chris@261
|
776
|
Chris@261
|
777 QString text = QString("%1").arg(m_centreFrame);
|
Chris@261
|
778
|
Chris@261
|
779 int x = width()/2 + 4;
|
Chris@261
|
780
|
Chris@261
|
781 drawVisibleText(paint, x, y, text, OutlinedText);
|
Chris@261
|
782 }
|
Chris@261
|
783 }
|
Chris@127
|
784
|
Chris@261
|
785 void
|
Chris@759
|
786 Pane::drawModelTimeExtents(QRect r, QPainter &paint, const Model *model)
|
Chris@759
|
787 {
|
Chris@759
|
788 int x0 = getXForFrame(model->getStartFrame());
|
Chris@759
|
789 int x1 = getXForFrame(model->getEndFrame());
|
Chris@759
|
790
|
Chris@759
|
791 paint.save();
|
Chris@759
|
792
|
Chris@759
|
793 QBrush brush;
|
Chris@759
|
794
|
Chris@759
|
795 if (hasLightBackground()) {
|
Chris@759
|
796 brush = QBrush(QColor("#f8f8f8"));
|
Chris@759
|
797 paint.setPen(Qt::black);
|
Chris@759
|
798 } else {
|
Chris@759
|
799 brush = QBrush(QColor("#101010"));
|
Chris@759
|
800 paint.setPen(Qt::white);
|
Chris@759
|
801 }
|
Chris@759
|
802
|
Chris@759
|
803 if (x0 > r.x()) {
|
Chris@759
|
804 paint.fillRect(0, 0, x0, height(), brush);
|
Chris@759
|
805 paint.drawLine(x0, 0, x0, height());
|
Chris@759
|
806 }
|
Chris@759
|
807
|
Chris@759
|
808 if (x1 < r.x() + r.width()) {
|
Chris@759
|
809 paint.fillRect(x1, 0, width() - x1, height(), brush);
|
Chris@759
|
810 paint.drawLine(x1, 0, x1, height());
|
Chris@759
|
811 }
|
Chris@759
|
812
|
Chris@759
|
813 paint.restore();
|
Chris@759
|
814 }
|
Chris@759
|
815
|
Chris@759
|
816 void
|
Chris@326
|
817 Pane::drawAlignmentStatus(QRect r, QPainter &paint, const Model *model,
|
Chris@326
|
818 bool down)
|
Chris@320
|
819 {
|
Chris@320
|
820 const Model *reference = model->getAlignmentReference();
|
Chris@320
|
821 /*
|
Chris@320
|
822 if (!reference) {
|
Chris@682
|
823 cerr << "Pane[" << this << "]::drawAlignmentStatus: No reference" << endl;
|
Chris@320
|
824 } else if (reference == model) {
|
Chris@682
|
825 cerr << "Pane[" << this << "]::drawAlignmentStatus: This is the reference model" << endl;
|
Chris@320
|
826 } else {
|
Chris@682
|
827 cerr << "Pane[" << this << "]::drawAlignmentStatus: This is not the reference" << endl;
|
Chris@320
|
828 }
|
Chris@320
|
829 */
|
Chris@320
|
830 QString text;
|
Chris@320
|
831 int completion = 100;
|
Chris@320
|
832
|
Chris@320
|
833 if (reference == model) {
|
Chris@320
|
834 text = tr("Reference");
|
Chris@320
|
835 } else if (!reference) {
|
Chris@320
|
836 text = tr("Unaligned");
|
Chris@320
|
837 } else {
|
Chris@320
|
838 completion = model->getAlignmentCompletion();
|
Chris@320
|
839 if (completion == 0) {
|
Chris@320
|
840 text = tr("Unaligned");
|
Chris@320
|
841 } else if (completion < 100) {
|
Chris@320
|
842 text = tr("Aligning: %1%").arg(completion);
|
Chris@320
|
843 } else {
|
Chris@320
|
844 text = tr("Aligned");
|
Chris@320
|
845 }
|
Chris@320
|
846 }
|
Chris@320
|
847
|
Chris@320
|
848 paint.save();
|
Chris@320
|
849 QFont font(paint.font());
|
Chris@320
|
850 font.setBold(true);
|
Chris@320
|
851 paint.setFont(font);
|
Chris@326
|
852 if (completion < 100) paint.setBrush(Qt::red);
|
Chris@326
|
853
|
Chris@326
|
854 int y = 5;
|
Chris@326
|
855 if (down) y += paint.fontMetrics().height();
|
Chris@326
|
856 int w = paint.fontMetrics().width(text);
|
Chris@326
|
857 int h = paint.fontMetrics().height();
|
Chris@326
|
858 if (r.top() > h + y || r.left() > w + m_scaleWidth + 5) {
|
Chris@326
|
859 paint.restore();
|
Chris@326
|
860 return;
|
Chris@326
|
861 }
|
Chris@320
|
862
|
Chris@320
|
863 drawVisibleText(paint, m_scaleWidth + 5,
|
Chris@326
|
864 paint.fontMetrics().ascent() + y, text, OutlinedText);
|
Chris@320
|
865
|
Chris@320
|
866 paint.restore();
|
Chris@320
|
867 }
|
Chris@320
|
868
|
Chris@320
|
869 void
|
Chris@320
|
870 Pane::modelAlignmentCompletionChanged()
|
Chris@320
|
871 {
|
Chris@320
|
872 View::modelAlignmentCompletionChanged();
|
Chris@320
|
873 update(QRect(0, 0, 300, 100));
|
Chris@320
|
874 }
|
Chris@320
|
875
|
Chris@320
|
876 void
|
Chris@326
|
877 Pane::drawWorkTitle(QRect r, QPainter &paint, const Model *model)
|
Chris@326
|
878 {
|
Chris@326
|
879 QString title = model->getTitle();
|
Chris@326
|
880 QString maker = model->getMaker();
|
Chris@587
|
881 //SVDEBUG << "Pane::drawWorkTitle: title=\"" << title//<< "\", maker=\"" << maker << "\"" << endl;
|
Chris@326
|
882 if (title == "") return;
|
Chris@326
|
883
|
Chris@326
|
884 QString text = title;
|
Chris@326
|
885 if (maker != "") {
|
Chris@326
|
886 text = tr("%1 - %2").arg(title).arg(maker);
|
Chris@326
|
887 }
|
Chris@326
|
888
|
Chris@326
|
889 paint.save();
|
Chris@326
|
890 QFont font(paint.font());
|
Chris@326
|
891 font.setItalic(true);
|
Chris@326
|
892 paint.setFont(font);
|
Chris@326
|
893
|
Chris@326
|
894 int y = 5;
|
Chris@326
|
895 int w = paint.fontMetrics().width(text);
|
Chris@326
|
896 int h = paint.fontMetrics().height();
|
Chris@326
|
897 if (r.top() > h + y || r.left() > w + m_scaleWidth + 5) {
|
Chris@326
|
898 paint.restore();
|
Chris@326
|
899 return;
|
Chris@326
|
900 }
|
Chris@326
|
901
|
Chris@326
|
902 drawVisibleText(paint, m_scaleWidth + 5,
|
Chris@326
|
903 paint.fontMetrics().ascent() + y, text, OutlinedText);
|
Chris@326
|
904
|
Chris@326
|
905 paint.restore();
|
Chris@326
|
906 }
|
Chris@326
|
907
|
Chris@326
|
908 void
|
Chris@261
|
909 Pane::drawLayerNames(QRect r, QPainter &paint)
|
Chris@261
|
910 {
|
Chris@261
|
911 int fontHeight = paint.fontMetrics().height();
|
Chris@261
|
912 int fontAscent = paint.fontMetrics().ascent();
|
Chris@127
|
913
|
Chris@300
|
914 int lly = height() - 6;
|
Chris@300
|
915 if (m_manager->getZoomWheelsEnabled()) {
|
Chris@300
|
916 lly -= 20;
|
Chris@300
|
917 }
|
Chris@300
|
918
|
Chris@300
|
919 if (r.y() + r.height() < lly - int(m_layers.size()) * fontHeight) {
|
Chris@261
|
920 return;
|
Chris@127
|
921 }
|
Chris@127
|
922
|
Chris@294
|
923 QStringList texts;
|
Chris@299
|
924 std::vector<QPixmap> pixmaps;
|
Chris@294
|
925 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@294
|
926 texts.push_back((*i)->getLayerPresentationName());
|
Chris@682
|
927 // cerr << "Pane " << this << ": Layer presentation name for " << *i << ": "
|
Chris@682
|
928 // << texts[texts.size()-1] << endl;
|
Chris@299
|
929 pixmaps.push_back((*i)->getLayerPresentationPixmap
|
Chris@299
|
930 (QSize(fontAscent, fontAscent)));
|
Chris@294
|
931 }
|
Chris@127
|
932
|
Chris@294
|
933 int maxTextWidth = width() / 3;
|
Chris@294
|
934 texts = TextAbbrev::abbreviate(texts, paint.fontMetrics(), maxTextWidth);
|
Chris@294
|
935
|
Chris@261
|
936 int llx = width() - maxTextWidth - 5;
|
Chris@261
|
937 if (m_manager->getZoomWheelsEnabled()) {
|
Chris@261
|
938 llx -= 36;
|
Chris@261
|
939 }
|
Chris@261
|
940
|
Chris@300
|
941 if (r.x() + r.width() >= llx - fontAscent - 3) {
|
gyorgyf@645
|
942
|
Chris@802
|
943 for (int i = 0; i < texts.size(); ++i) {
|
Chris@299
|
944
|
Chris@682
|
945 // cerr << "Pane "<< this << ": text " << i << ": " << texts[i] << endl;
|
Chris@261
|
946
|
Chris@261
|
947 if (i + 1 == texts.size()) {
|
Chris@287
|
948 paint.setPen(getForeground());
|
Chris@261
|
949 }
|
Chris@261
|
950
|
Chris@261
|
951 drawVisibleText(paint, llx,
|
Chris@261
|
952 lly - fontHeight + fontAscent,
|
Chris@261
|
953 texts[i], OutlinedText);
|
Chris@299
|
954
|
Chris@299
|
955 if (!pixmaps[i].isNull()) {
|
Chris@299
|
956 paint.drawPixmap(llx - fontAscent - 3,
|
Chris@299
|
957 lly - fontHeight + (fontHeight-fontAscent)/2,
|
Chris@299
|
958 pixmaps[i]);
|
Chris@299
|
959 }
|
Chris@261
|
960
|
Chris@261
|
961 lly -= fontHeight;
|
Chris@261
|
962 }
|
Chris@261
|
963 }
|
Chris@261
|
964 }
|
Chris@127
|
965
|
Chris@261
|
966 void
|
Chris@261
|
967 Pane::drawEditingSelection(QPainter &paint)
|
Chris@261
|
968 {
|
Chris@261
|
969 int offset = m_mousePos.x() - m_clickPos.x();
|
Chris@577
|
970
|
Chris@806
|
971 int origStart = m_editingSelection.getStartFrame();
|
Chris@577
|
972
|
Chris@577
|
973 int p0 = getXForFrame(origStart) + offset;
|
Chris@261
|
974 int p1 = getXForFrame(m_editingSelection.getEndFrame()) + offset;
|
Chris@577
|
975
|
Chris@261
|
976 if (m_editingSelectionEdge < 0) {
|
Chris@261
|
977 p1 = getXForFrame(m_editingSelection.getEndFrame());
|
Chris@261
|
978 } else if (m_editingSelectionEdge > 0) {
|
Chris@261
|
979 p0 = getXForFrame(m_editingSelection.getStartFrame());
|
Chris@127
|
980 }
|
Chris@127
|
981
|
Chris@806
|
982 int newStart = getFrameForX(p0);
|
Chris@806
|
983 int newEnd = getFrameForX(p1);
|
Chris@577
|
984
|
Chris@261
|
985 paint.save();
|
Chris@287
|
986 paint.setPen(QPen(getForeground(), 2));
|
Chris@577
|
987
|
Chris@577
|
988 int fontHeight = paint.fontMetrics().height();
|
Chris@577
|
989 int fontAscent = paint.fontMetrics().ascent();
|
Chris@577
|
990 int sampleRate = getModelsSampleRate();
|
Chris@577
|
991 QString startText, endText, offsetText;
|
Chris@577
|
992 startText = QString("%1").arg(newStart);
|
Chris@577
|
993 endText = QString("%1").arg(newEnd);
|
Chris@577
|
994 offsetText = QString("%1").arg(newStart - origStart);
|
Chris@577
|
995 if (newStart >= origStart) {
|
Chris@577
|
996 offsetText = tr("+%1").arg(offsetText);
|
Chris@577
|
997 }
|
Chris@577
|
998 if (sampleRate) {
|
Chris@577
|
999 startText = QString("%1 / %2")
|
Chris@577
|
1000 .arg(QString::fromStdString
|
Chris@577
|
1001 (RealTime::frame2RealTime(newStart, sampleRate).toText()))
|
Chris@577
|
1002 .arg(startText);
|
Chris@577
|
1003 endText = QString("%1 / %2")
|
Chris@577
|
1004 .arg(QString::fromStdString
|
Chris@577
|
1005 (RealTime::frame2RealTime(newEnd, sampleRate).toText()))
|
Chris@577
|
1006 .arg(endText);
|
Chris@577
|
1007 offsetText = QString("%1 / %2")
|
Chris@577
|
1008 .arg(QString::fromStdString
|
Chris@577
|
1009 (RealTime::frame2RealTime(newStart - origStart, sampleRate).toText()))
|
Chris@577
|
1010 .arg(offsetText);
|
Chris@577
|
1011 if (newStart >= origStart) {
|
Chris@577
|
1012 offsetText = tr("+%1").arg(offsetText);
|
Chris@577
|
1013 }
|
Chris@577
|
1014 }
|
Chris@577
|
1015 drawVisibleText(paint, p0 + 2, fontAscent + fontHeight + 4, startText, OutlinedText);
|
Chris@577
|
1016 drawVisibleText(paint, p1 + 2, fontAscent + fontHeight + 4, endText, OutlinedText);
|
Chris@577
|
1017 drawVisibleText(paint, p0 + 2, fontAscent + fontHeight*2 + 4, offsetText, OutlinedText);
|
Chris@577
|
1018 drawVisibleText(paint, p1 + 2, fontAscent + fontHeight*2 + 4, offsetText, OutlinedText);
|
Chris@261
|
1019
|
Chris@261
|
1020 //!!! duplicating display policy with View::drawSelections
|
Chris@261
|
1021
|
Chris@261
|
1022 if (m_editingSelectionEdge < 0) {
|
Chris@261
|
1023 paint.drawLine(p0, 1, p1, 1);
|
Chris@261
|
1024 paint.drawLine(p0, 0, p0, height());
|
Chris@261
|
1025 paint.drawLine(p0, height() - 1, p1, height() - 1);
|
Chris@261
|
1026 } else if (m_editingSelectionEdge > 0) {
|
Chris@261
|
1027 paint.drawLine(p0, 1, p1, 1);
|
Chris@261
|
1028 paint.drawLine(p1, 0, p1, height());
|
Chris@261
|
1029 paint.drawLine(p0, height() - 1, p1, height() - 1);
|
Chris@261
|
1030 } else {
|
Chris@261
|
1031 paint.setBrush(Qt::NoBrush);
|
Chris@261
|
1032 paint.drawRect(p0, 1, p1 - p0, height() - 2);
|
Chris@261
|
1033 }
|
Chris@261
|
1034 paint.restore();
|
Chris@261
|
1035 }
|
Chris@127
|
1036
|
Chris@261
|
1037 void
|
Chris@261
|
1038 Pane::drawDurationAndRate(QRect r, const Model *waveformModel,
|
Chris@261
|
1039 int sampleRate, QPainter &paint)
|
Chris@261
|
1040 {
|
Chris@261
|
1041 int fontHeight = paint.fontMetrics().height();
|
Chris@261
|
1042 int fontAscent = paint.fontMetrics().ascent();
|
Chris@127
|
1043
|
Chris@261
|
1044 if (r.y() + r.height() < height() - fontHeight - 6) return;
|
Chris@127
|
1045
|
Chris@806
|
1046 int modelRate = waveformModel->getSampleRate();
|
Chris@806
|
1047 int nativeRate = waveformModel->getNativeRate();
|
Chris@806
|
1048 int playbackRate = m_manager->getPlaybackSampleRate();
|
Chris@806
|
1049 int outputRate = m_manager->getOutputSampleRate();
|
Chris@261
|
1050
|
Chris@261
|
1051 QString srNote = "";
|
Chris@127
|
1052
|
Chris@301
|
1053 // Show (R) for waveform models that have been resampled or will
|
Chris@301
|
1054 // be resampled on playback, and (X) for waveform models that will
|
Chris@301
|
1055 // be played at the wrong rate because their rate differs from the
|
Chris@261
|
1056 // current playback rate (which is not necessarily that of the
|
Chris@261
|
1057 // main model).
|
Chris@127
|
1058
|
Chris@261
|
1059 if (playbackRate != 0) {
|
Chris@261
|
1060 if (modelRate == playbackRate) {
|
Chris@301
|
1061 if (modelRate != outputRate || modelRate != nativeRate) {
|
Chris@301
|
1062 srNote = " " + tr("(R)");
|
Chris@301
|
1063 }
|
Chris@261
|
1064 } else {
|
Chris@261
|
1065 srNote = " " + tr("(X)");
|
Chris@261
|
1066 }
|
Chris@127
|
1067 }
|
Chris@127
|
1068
|
Chris@261
|
1069 QString desc = tr("%1 / %2Hz%3")
|
Chris@261
|
1070 .arg(RealTime::frame2RealTime(waveformModel->getEndFrame(),
|
Chris@261
|
1071 sampleRate)
|
Chris@261
|
1072 .toText(false).c_str())
|
Chris@301
|
1073 .arg(nativeRate)
|
Chris@261
|
1074 .arg(srNote);
|
Chris@261
|
1075
|
Chris@384
|
1076 int x = m_scaleWidth + 5;
|
Chris@384
|
1077 int pbw = getProgressBarWidth();
|
Chris@384
|
1078 if (x < pbw + 5) x = pbw + 5;
|
Chris@384
|
1079
|
Chris@384
|
1080 if (r.x() < x + paint.fontMetrics().width(desc)) {
|
Chris@384
|
1081 drawVisibleText(paint, x,
|
Chris@261
|
1082 height() - fontHeight + fontAscent - 6,
|
Chris@261
|
1083 desc, OutlinedText);
|
Chris@261
|
1084 }
|
Chris@127
|
1085 }
|
Chris@127
|
1086
|
Chris@227
|
1087 bool
|
Chris@806
|
1088 Pane::render(QPainter &paint, int xorigin, int f0, int f1)
|
Chris@227
|
1089 {
|
Chris@229
|
1090 if (!View::render(paint, xorigin + m_scaleWidth, f0, f1)) {
|
Chris@227
|
1091 return false;
|
Chris@227
|
1092 }
|
Chris@227
|
1093
|
Chris@227
|
1094 if (m_scaleWidth > 0) {
|
Chris@227
|
1095
|
Chris@227
|
1096 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@227
|
1097 --vi;
|
Chris@227
|
1098
|
Chris@227
|
1099 paint.save();
|
Chris@227
|
1100
|
Chris@287
|
1101 paint.setPen(getForeground());
|
Chris@287
|
1102 paint.setBrush(getBackground());
|
Chris@229
|
1103 paint.drawRect(xorigin, -1, m_scaleWidth, height()+1);
|
Chris@227
|
1104
|
Chris@227
|
1105 paint.setBrush(Qt::NoBrush);
|
Chris@227
|
1106 (*vi)->paintVerticalScale
|
Chris@607
|
1107 (this, m_manager->shouldShowVerticalColourScale(),
|
Chris@607
|
1108 paint, QRect(xorigin, 0, m_scaleWidth, height()));
|
Chris@227
|
1109
|
Chris@227
|
1110 paint.restore();
|
Chris@227
|
1111 break;
|
Chris@227
|
1112 }
|
Chris@227
|
1113 }
|
Chris@227
|
1114
|
Chris@227
|
1115 return true;
|
Chris@227
|
1116 }
|
Chris@227
|
1117
|
Chris@227
|
1118 QImage *
|
Chris@806
|
1119 Pane::toNewImage(int f0, int f1)
|
Chris@227
|
1120 {
|
Chris@806
|
1121 int x0 = f0 / getZoomLevel();
|
Chris@806
|
1122 int x1 = f1 / getZoomLevel();
|
Chris@227
|
1123
|
Chris@227
|
1124 QImage *image = new QImage(x1 - x0 + m_scaleWidth,
|
Chris@227
|
1125 height(), QImage::Format_RGB32);
|
Chris@227
|
1126
|
Chris@227
|
1127 int formerScaleWidth = m_scaleWidth;
|
Chris@227
|
1128
|
Chris@227
|
1129 if (m_manager && m_manager->shouldShowVerticalScale()) {
|
Chris@227
|
1130 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@227
|
1131 --vi;
|
Chris@227
|
1132 QPainter paint(image);
|
Chris@607
|
1133 m_scaleWidth = (*vi)->getVerticalScaleWidth
|
Chris@607
|
1134 (this, m_manager->shouldShowVerticalColourScale(), paint);
|
Chris@227
|
1135 break;
|
Chris@227
|
1136 }
|
Chris@227
|
1137 } else {
|
Chris@227
|
1138 m_scaleWidth = 0;
|
Chris@227
|
1139 }
|
Chris@227
|
1140
|
Chris@227
|
1141 if (m_scaleWidth != formerScaleWidth) {
|
Chris@227
|
1142 delete image;
|
Chris@227
|
1143 image = new QImage(x1 - x0 + m_scaleWidth,
|
Chris@227
|
1144 height(), QImage::Format_RGB32);
|
Chris@227
|
1145 }
|
Chris@227
|
1146
|
Chris@227
|
1147 QPainter *paint = new QPainter(image);
|
Chris@229
|
1148 if (!render(*paint, 0, f0, f1)) {
|
Chris@227
|
1149 delete paint;
|
Chris@227
|
1150 delete image;
|
Chris@227
|
1151 return 0;
|
Chris@227
|
1152 } else {
|
Chris@227
|
1153 delete paint;
|
Chris@227
|
1154 return image;
|
Chris@227
|
1155 }
|
Chris@227
|
1156 }
|
Chris@227
|
1157
|
Chris@229
|
1158 QSize
|
Chris@806
|
1159 Pane::getImageSize(int f0, int f1)
|
Chris@229
|
1160 {
|
Chris@229
|
1161 QSize s = View::getImageSize(f0, f1);
|
Chris@229
|
1162 QImage *image = new QImage(100, 100, QImage::Format_RGB32);
|
Chris@229
|
1163 QPainter paint(image);
|
Chris@229
|
1164
|
Chris@229
|
1165 int sw = 0;
|
Chris@229
|
1166 if (m_manager && m_manager->shouldShowVerticalScale()) {
|
Chris@229
|
1167 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@229
|
1168 --vi;
|
Chris@607
|
1169 sw = (*vi)->getVerticalScaleWidth
|
Chris@607
|
1170 (this, m_manager->shouldShowVerticalColourScale(), paint);
|
Chris@229
|
1171 break;
|
Chris@229
|
1172 }
|
Chris@229
|
1173 }
|
Chris@229
|
1174
|
Chris@229
|
1175 return QSize(sw + s.width(), s.height());
|
Chris@229
|
1176 }
|
Chris@229
|
1177
|
Chris@806
|
1178 int
|
Chris@222
|
1179 Pane::getFirstVisibleFrame() const
|
Chris@222
|
1180 {
|
Chris@806
|
1181 int f0 = getFrameForX(m_scaleWidth);
|
Chris@806
|
1182 int f = View::getFirstVisibleFrame();
|
Chris@222
|
1183 if (f0 < 0 || f0 < long(f)) return f;
|
Chris@222
|
1184 return f0;
|
Chris@222
|
1185 }
|
Chris@222
|
1186
|
Chris@127
|
1187 Selection
|
Chris@127
|
1188 Pane::getSelectionAt(int x, bool &closeToLeftEdge, bool &closeToRightEdge) const
|
Chris@127
|
1189 {
|
Chris@127
|
1190 closeToLeftEdge = closeToRightEdge = false;
|
Chris@127
|
1191
|
Chris@127
|
1192 if (!m_manager) return Selection();
|
Chris@127
|
1193
|
Chris@806
|
1194 int testFrame = getFrameForX(x - 5);
|
Chris@127
|
1195 if (testFrame < 0) {
|
gyorgyf@645
|
1196 testFrame = getFrameForX(x);
|
gyorgyf@645
|
1197 if (testFrame < 0) return Selection();
|
Chris@127
|
1198 }
|
Chris@127
|
1199
|
Chris@127
|
1200 Selection selection = m_manager->getContainingSelection(testFrame, true);
|
Chris@127
|
1201 if (selection.isEmpty()) return selection;
|
Chris@127
|
1202
|
Chris@127
|
1203 int lx = getXForFrame(selection.getStartFrame());
|
Chris@127
|
1204 int rx = getXForFrame(selection.getEndFrame());
|
Chris@127
|
1205
|
Chris@127
|
1206 int fuzz = 2;
|
Chris@127
|
1207 if (x < lx - fuzz || x > rx + fuzz) return Selection();
|
Chris@127
|
1208
|
Chris@127
|
1209 int width = rx - lx;
|
Chris@127
|
1210 fuzz = 3;
|
Chris@127
|
1211 if (width < 12) fuzz = width / 4;
|
Chris@127
|
1212 if (fuzz < 1) fuzz = 1;
|
Chris@127
|
1213
|
Chris@127
|
1214 if (x < lx + fuzz) closeToLeftEdge = true;
|
Chris@127
|
1215 if (x > rx - fuzz) closeToRightEdge = true;
|
Chris@127
|
1216
|
Chris@127
|
1217 return selection;
|
Chris@127
|
1218 }
|
Chris@127
|
1219
|
Chris@174
|
1220 bool
|
Chris@174
|
1221 Pane::canTopLayerMoveVertical()
|
Chris@174
|
1222 {
|
Chris@174
|
1223 float vmin, vmax, dmin, dmax;
|
Chris@174
|
1224 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) return false;
|
Chris@174
|
1225 if (dmin <= vmin && dmax >= vmax) return false;
|
Chris@174
|
1226 return true;
|
Chris@174
|
1227 }
|
Chris@174
|
1228
|
Chris@174
|
1229 bool
|
Chris@174
|
1230 Pane::getTopLayerDisplayExtents(float &vmin, float &vmax,
|
Chris@188
|
1231 float &dmin, float &dmax,
|
Chris@188
|
1232 QString *unit)
|
Chris@174
|
1233 {
|
Chris@268
|
1234 Layer *layer = getTopLayer();
|
Chris@174
|
1235 if (!layer) return false;
|
Chris@174
|
1236 bool vlog;
|
Chris@174
|
1237 QString vunit;
|
Chris@188
|
1238 bool rv = (layer->getValueExtents(vmin, vmax, vlog, vunit) &&
|
Chris@188
|
1239 layer->getDisplayExtents(dmin, dmax));
|
Chris@188
|
1240 if (unit) *unit = vunit;
|
Chris@188
|
1241 return rv;
|
Chris@174
|
1242 }
|
Chris@174
|
1243
|
Chris@174
|
1244 bool
|
Chris@174
|
1245 Pane::setTopLayerDisplayExtents(float dmin, float dmax)
|
Chris@174
|
1246 {
|
Chris@268
|
1247 Layer *layer = getTopLayer();
|
Chris@174
|
1248 if (!layer) return false;
|
Chris@174
|
1249 return layer->setDisplayExtents(dmin, dmax);
|
Chris@174
|
1250 }
|
Chris@174
|
1251
|
Chris@127
|
1252 void
|
Chris@282
|
1253 Pane::registerShortcuts(KeyReference &kr)
|
Chris@282
|
1254 {
|
Chris@282
|
1255 kr.setCategory(tr("Zoom"));
|
Chris@282
|
1256 kr.registerAlternativeShortcut(tr("Zoom In"), tr("Wheel Up"));
|
Chris@282
|
1257 kr.registerAlternativeShortcut(tr("Zoom Out"), tr("Wheel Down"));
|
Chris@282
|
1258
|
Chris@282
|
1259 kr.setCategory(tr("General Pane Mouse Actions"));
|
Chris@282
|
1260
|
Chris@282
|
1261 kr.registerShortcut(tr("Zoom"), tr("Wheel"),
|
Chris@282
|
1262 tr("Zoom in or out in time axis"));
|
Chris@408
|
1263 kr.registerShortcut(tr("Scroll"), tr("Ctrl+Wheel"),
|
Chris@282
|
1264 tr("Scroll rapidly left or right in time axis"));
|
Chris@282
|
1265 kr.registerShortcut(tr("Zoom Vertically"), tr("Shift+Wheel"),
|
Chris@282
|
1266 tr("Zoom in or out in the vertical axis"));
|
Chris@282
|
1267 kr.registerShortcut(tr("Scroll Vertically"), tr("Alt+Wheel"),
|
Chris@282
|
1268 tr("Scroll up or down in the vertical axis"));
|
Chris@282
|
1269 kr.registerShortcut(tr("Navigate"), tr("Middle"),
|
Chris@282
|
1270 tr("Click middle button and drag to navigate with any tool"));
|
Chris@282
|
1271 kr.registerShortcut(tr("Relocate"), tr("Double-Click Middle"),
|
Chris@282
|
1272 tr("Double-click middle button to relocate with any tool"));
|
Chris@282
|
1273 kr.registerShortcut(tr("Menu"), tr("Right"),
|
Chris@282
|
1274 tr("Show pane context menu"));
|
Chris@282
|
1275 }
|
Chris@282
|
1276
|
Chris@753
|
1277 Layer *
|
Chris@753
|
1278 Pane::getTopFlexiNoteLayer()
|
Chris@753
|
1279 {
|
Chris@753
|
1280 for (int i = int(m_layers.size()) - 1; i >= 0; --i) {
|
Chris@753
|
1281 if (LayerFactory::getInstance()->getLayerType(m_layers[i]) ==
|
Chris@753
|
1282 LayerFactory::FlexiNotes) {
|
Chris@753
|
1283 return m_layers[i];
|
Chris@753
|
1284 }
|
Chris@753
|
1285 }
|
Chris@753
|
1286 return 0;
|
Chris@753
|
1287 }
|
Chris@753
|
1288
|
Chris@282
|
1289 void
|
Chris@127
|
1290 Pane::mousePressEvent(QMouseEvent *e)
|
Chris@127
|
1291 {
|
Chris@127
|
1292 if (e->buttons() & Qt::RightButton) {
|
Chris@189
|
1293 emit contextHelpChanged("");
|
Chris@127
|
1294 emit rightButtonMenuRequested(mapToGlobal(e->pos()));
|
Chris@127
|
1295 return;
|
Chris@127
|
1296 }
|
Chris@127
|
1297
|
Chris@682
|
1298 // cerr << "mousePressEvent" << endl;
|
Chris@341
|
1299
|
Chris@127
|
1300 m_clickPos = e->pos();
|
Chris@262
|
1301 m_mousePos = m_clickPos;
|
Chris@127
|
1302 m_clickedInRange = true;
|
Chris@127
|
1303 m_editingSelection = Selection();
|
Chris@127
|
1304 m_editingSelectionEdge = 0;
|
Chris@127
|
1305 m_shiftPressed = (e->modifiers() & Qt::ShiftModifier);
|
Chris@127
|
1306 m_ctrlPressed = (e->modifiers() & Qt::ControlModifier);
|
Chris@510
|
1307 m_altPressed = (e->modifiers() & Qt::AltModifier);
|
Chris@150
|
1308 m_dragMode = UnresolvedDrag;
|
Chris@127
|
1309
|
Chris@127
|
1310 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@711
|
1311 if (m_manager) mode = m_manager->getToolModeFor(this);
|
Chris@127
|
1312
|
Chris@127
|
1313 m_navigating = false;
|
Chris@343
|
1314 m_resizing = false;
|
Chris@343
|
1315 m_editing = false;
|
Chris@343
|
1316 m_releasing = false;
|
Chris@127
|
1317
|
Chris@283
|
1318 if (mode == ViewManager::NavigateMode ||
|
Chris@283
|
1319 (e->buttons() & Qt::MidButton) ||
|
Chris@283
|
1320 (mode == ViewManager::MeasureMode &&
|
Chris@283
|
1321 (e->buttons() & Qt::LeftButton) && m_shiftPressed)) {
|
Chris@127
|
1322
|
Chris@713
|
1323 if (mode != ViewManager::NavigateMode) {
|
Chris@713
|
1324 setCursor(Qt::PointingHandCursor);
|
Chris@713
|
1325 }
|
Chris@713
|
1326
|
Chris@713
|
1327 m_navigating = true;
|
Chris@713
|
1328 m_dragCentreFrame = m_centreFrame;
|
Chris@136
|
1329 m_dragStartMinValue = 0;
|
Chris@174
|
1330
|
Chris@174
|
1331 float vmin, vmax, dmin, dmax;
|
Chris@174
|
1332 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) {
|
Chris@174
|
1333 m_dragStartMinValue = dmin;
|
Chris@136
|
1334 }
|
Chris@136
|
1335
|
Chris@802
|
1336 // Schedule a play-head move to the mouse frame location. This
|
Chris@802
|
1337 // will happen only if nothing else of interest happens
|
Chris@802
|
1338 // (double-click, drag) before the timeout.
|
Chris@802
|
1339 schedulePlaybackFrameMove(getFrameForX(e->x()));
|
Chris@802
|
1340
|
Chris@127
|
1341 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
1342
|
Chris@217
|
1343 if (!hasTopLayerTimeXAxis()) return;
|
Chris@217
|
1344
|
Chris@713
|
1345 bool closeToLeft = false, closeToRight = false;
|
Chris@713
|
1346 Selection selection = getSelectionAt(e->x(), closeToLeft, closeToRight);
|
Chris@713
|
1347
|
Chris@713
|
1348 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
Chris@713
|
1349
|
Chris@713
|
1350 m_manager->removeSelection(selection);
|
Chris@713
|
1351
|
Chris@713
|
1352 if (closeToLeft) {
|
Chris@713
|
1353 m_selectionStartFrame = selection.getEndFrame();
|
Chris@713
|
1354 } else {
|
Chris@713
|
1355 m_selectionStartFrame = selection.getStartFrame();
|
Chris@713
|
1356 }
|
Chris@713
|
1357
|
Chris@713
|
1358 m_manager->setInProgressSelection(selection, false);
|
Chris@713
|
1359 m_resizing = true;
|
Chris@713
|
1360
|
gyorgyf@645
|
1361 } else {
|
Chris@713
|
1362
|
Chris@713
|
1363 int mouseFrame = getFrameForX(e->x());
|
Chris@806
|
1364 int resolution = 1;
|
Chris@713
|
1365 int snapFrame = mouseFrame;
|
gyorgyf@645
|
1366
|
Chris@713
|
1367 Layer *layer = getSelectedLayer();
|
Chris@713
|
1368 if (layer && !m_shiftPressed) {
|
Chris@713
|
1369 layer->snapToFeatureFrame(this, snapFrame,
|
Chris@713
|
1370 resolution, Layer::SnapLeft);
|
Chris@713
|
1371 }
|
gyorgyf@645
|
1372
|
Chris@713
|
1373 if (snapFrame < 0) snapFrame = 0;
|
Chris@713
|
1374 m_selectionStartFrame = snapFrame;
|
Chris@713
|
1375 if (m_manager) {
|
Chris@713
|
1376 m_manager->setInProgressSelection
|
Chris@333
|
1377 (Selection(alignToReference(snapFrame),
|
Chris@333
|
1378 alignToReference(snapFrame + resolution)),
|
Chris@333
|
1379 !m_ctrlPressed);
|
Chris@713
|
1380 }
|
Chris@713
|
1381
|
Chris@713
|
1382 m_resizing = false;
|
Chris@802
|
1383
|
Chris@802
|
1384 // Schedule a play-head move to the mouse frame
|
Chris@802
|
1385 // location. This will happen only if nothing else of
|
Chris@802
|
1386 // interest happens (double-click, drag) before the
|
Chris@802
|
1387 // timeout.
|
Chris@802
|
1388 schedulePlaybackFrameMove(mouseFrame);
|
gyorgyf@645
|
1389 }
|
gyorgyf@645
|
1390
|
Chris@713
|
1391 update();
|
Chris@127
|
1392
|
Chris@127
|
1393 } else if (mode == ViewManager::DrawMode) {
|
Chris@127
|
1394
|
Chris@713
|
1395 Layer *layer = getSelectedLayer();
|
Chris@713
|
1396 if (layer && layer->isLayerEditable()) {
|
Chris@713
|
1397 layer->drawStart(this, e);
|
Chris@713
|
1398 }
|
Chris@127
|
1399
|
Chris@335
|
1400 } else if (mode == ViewManager::EraseMode) {
|
Chris@335
|
1401
|
Chris@713
|
1402 Layer *layer = getSelectedLayer();
|
Chris@713
|
1403 if (layer && layer->isLayerEditable()) {
|
Chris@713
|
1404 layer->eraseStart(this, e);
|
Chris@713
|
1405 }
|
Chris@713
|
1406
|
Chris@713
|
1407 // GF: handle mouse press for NoteEditMode
|
gyorgyf@645
|
1408 } else if (mode == ViewManager::NoteEditMode) {
|
gyorgyf@645
|
1409
|
gyorgyf@645
|
1410 std::cerr << "mouse pressed in note edit mode" << std::endl;
|
Chris@753
|
1411 Layer *layer = getTopFlexiNoteLayer();
|
Chris@753
|
1412 if (layer) {
|
gyorgyf@635
|
1413 layer->splitStart(this, e);
|
gyorgyf@635
|
1414 }
|
Chris@335
|
1415
|
Chris@127
|
1416 } else if (mode == ViewManager::EditMode) {
|
Chris@127
|
1417
|
Chris@343
|
1418 // Do nothing here -- we'll do it in mouseMoveEvent when the
|
Chris@343
|
1419 // drag threshold has been passed
|
Chris@262
|
1420
|
Chris@262
|
1421 } else if (mode == ViewManager::MeasureMode) {
|
Chris@262
|
1422
|
Chris@268
|
1423 Layer *layer = getTopLayer();
|
Chris@267
|
1424 if (layer) layer->measureStart(this, e);
|
Chris@262
|
1425 update();
|
Chris@127
|
1426 }
|
Chris@127
|
1427
|
Chris@127
|
1428 emit paneInteractedWith();
|
Chris@127
|
1429 }
|
Chris@127
|
1430
|
Chris@127
|
1431 void
|
Chris@802
|
1432 Pane::schedulePlaybackFrameMove(int frame)
|
Chris@802
|
1433 {
|
Chris@802
|
1434 m_playbackFrameMoveTo = frame;
|
Chris@802
|
1435 m_playbackFrameMoveScheduled = true;
|
Chris@802
|
1436 QTimer::singleShot(QApplication::doubleClickInterval() + 10, this,
|
Chris@802
|
1437 SLOT(playbackScheduleTimerElapsed()));
|
Chris@802
|
1438 }
|
Chris@802
|
1439
|
Chris@802
|
1440 void
|
Chris@802
|
1441 Pane::playbackScheduleTimerElapsed()
|
Chris@802
|
1442 {
|
Chris@802
|
1443 if (m_playbackFrameMoveScheduled) {
|
Chris@802
|
1444 m_manager->setPlaybackFrame(m_playbackFrameMoveTo);
|
Chris@802
|
1445 m_playbackFrameMoveScheduled = false;
|
Chris@802
|
1446 }
|
Chris@802
|
1447 }
|
Chris@802
|
1448
|
Chris@802
|
1449 void
|
Chris@127
|
1450 Pane::mouseReleaseEvent(QMouseEvent *e)
|
Chris@127
|
1451 {
|
Chris@127
|
1452 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
1453 return;
|
Chris@127
|
1454 }
|
Chris@127
|
1455
|
Chris@682
|
1456 // cerr << "mouseReleaseEvent" << endl;
|
Chris@341
|
1457
|
Chris@127
|
1458 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@711
|
1459 if (m_manager) mode = m_manager->getToolModeFor(this);
|
Chris@127
|
1460
|
Chris@343
|
1461 m_releasing = true;
|
Chris@343
|
1462
|
Chris@127
|
1463 if (m_clickedInRange) {
|
Chris@713
|
1464 mouseMoveEvent(e);
|
Chris@127
|
1465 }
|
Chris@127
|
1466
|
Chris@790
|
1467 int mouseFrame = e ? getFrameForX(e->x()) : 0;
|
Chris@802
|
1468 if (mouseFrame < 0) mouseFrame = 0;
|
Chris@790
|
1469
|
Chris@127
|
1470 if (m_navigating || mode == ViewManager::NavigateMode) {
|
Chris@127
|
1471
|
Chris@713
|
1472 m_navigating = false;
|
Chris@713
|
1473
|
Chris@713
|
1474 if (mode != ViewManager::NavigateMode) {
|
Chris@713
|
1475 // restore cursor
|
Chris@713
|
1476 toolModeChanged();
|
Chris@713
|
1477 }
|
Chris@713
|
1478
|
Chris@713
|
1479 if (m_shiftPressed) {
|
Chris@713
|
1480
|
Chris@713
|
1481 int x0 = std::min(m_clickPos.x(), m_mousePos.x());
|
Chris@713
|
1482 int x1 = std::max(m_clickPos.x(), m_mousePos.x());
|
Chris@713
|
1483
|
Chris@713
|
1484 int y0 = std::min(m_clickPos.y(), m_mousePos.y());
|
Chris@713
|
1485 int y1 = std::max(m_clickPos.y(), m_mousePos.y());
|
Chris@127
|
1486
|
Chris@730
|
1487 emit regionOutlined(QRect(x0, y0, x1 - x0, y1 - y0));
|
Chris@713
|
1488 }
|
Chris@127
|
1489
|
Chris@127
|
1490 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
1491
|
Chris@343
|
1492 if (!hasTopLayerTimeXAxis()) {
|
Chris@343
|
1493 m_releasing = false;
|
Chris@343
|
1494 return;
|
Chris@343
|
1495 }
|
Chris@217
|
1496
|
Chris@713
|
1497 if (m_manager && m_manager->haveInProgressSelection()) {
|
Chris@713
|
1498
|
justin@726
|
1499 //cerr << "JTEST: release with selection" << endl;
|
Chris@713
|
1500 bool exclusive;
|
Chris@713
|
1501 Selection selection = m_manager->getInProgressSelection(exclusive);
|
gyorgyf@645
|
1502
|
Chris@713
|
1503 if (selection.getEndFrame() < selection.getStartFrame() + 2) {
|
Chris@713
|
1504 selection = Selection();
|
Chris@713
|
1505 }
|
Chris@713
|
1506
|
Chris@713
|
1507 m_manager->clearInProgressSelection();
|
Chris@713
|
1508
|
Chris@713
|
1509 if (exclusive) {
|
Chris@713
|
1510 m_manager->setSelection(selection);
|
Chris@713
|
1511 } else {
|
Chris@713
|
1512 m_manager->addSelection(selection);
|
Chris@713
|
1513 }
|
justin@726
|
1514 }
|
Chris@713
|
1515
|
Chris@713
|
1516 update();
|
Chris@713
|
1517
|
Chris@713
|
1518 } else if (mode == ViewManager::DrawMode) {
|
Chris@713
|
1519
|
Chris@713
|
1520 Layer *layer = getSelectedLayer();
|
Chris@713
|
1521 if (layer && layer->isLayerEditable()) {
|
Chris@713
|
1522 layer->drawEnd(this, e);
|
Chris@713
|
1523 update();
|
gyorgyf@645
|
1524 }
|
Chris@127
|
1525
|
Chris@335
|
1526 } else if (mode == ViewManager::EraseMode) {
|
Chris@335
|
1527
|
gyorgyf@645
|
1528 Layer *layer = getSelectedLayer();
|
gyorgyf@645
|
1529 if (layer && layer->isLayerEditable()) {
|
gyorgyf@645
|
1530 layer->eraseEnd(this, e);
|
gyorgyf@645
|
1531 update();
|
gyorgyf@645
|
1532 }
|
gyorgyf@645
|
1533
|
gyorgyf@645
|
1534 } else if (mode == ViewManager::NoteEditMode) {
|
gyorgyf@645
|
1535
|
gyorgyf@645
|
1536 //GF: handle mouse release for NoteEditMode (note: works but will need to re-think this a bit later)
|
Chris@753
|
1537 Layer *layer = getTopFlexiNoteLayer();
|
Chris@753
|
1538
|
Chris@753
|
1539 if (layer) {
|
gyorgyf@635
|
1540 layer->splitEnd(this, e);
|
Chris@753
|
1541 update();
|
Chris@753
|
1542
|
Chris@753
|
1543 if (m_editing) {
|
Chris@753
|
1544 if (!editSelectionEnd(e)) {
|
Chris@753
|
1545 layer->editEnd(this, e);
|
Chris@753
|
1546 update();
|
Chris@753
|
1547 }
|
Chris@753
|
1548 }
|
Chris@753
|
1549 }
|
Chris@753
|
1550
|
Chris@753
|
1551 } else if (mode == ViewManager::EditMode) {
|
Chris@753
|
1552
|
Chris@343
|
1553 if (m_editing) {
|
Chris@343
|
1554 if (!editSelectionEnd(e)) {
|
Chris@343
|
1555 Layer *layer = getSelectedLayer();
|
Chris@343
|
1556 if (layer && layer->isLayerEditable()) {
|
Chris@343
|
1557 layer->editEnd(this, e);
|
Chris@343
|
1558 update();
|
Chris@343
|
1559 }
|
Chris@343
|
1560 }
|
gyorgyf@635
|
1561 }
|
Chris@607
|
1562
|
Chris@262
|
1563 } else if (mode == ViewManager::MeasureMode) {
|
Chris@262
|
1564
|
Chris@268
|
1565 Layer *layer = getTopLayer();
|
Chris@267
|
1566 if (layer) layer->measureEnd(this, e);
|
Chris@267
|
1567 if (m_measureCursor1) setCursor(*m_measureCursor1);
|
Chris@267
|
1568 update();
|
Chris@127
|
1569 }
|
Chris@127
|
1570
|
Chris@127
|
1571 m_clickedInRange = false;
|
Chris@343
|
1572 m_releasing = false;
|
Chris@127
|
1573
|
Chris@127
|
1574 emit paneInteractedWith();
|
Chris@127
|
1575 }
|
Chris@127
|
1576
|
Chris@127
|
1577 void
|
Chris@127
|
1578 Pane::mouseMoveEvent(QMouseEvent *e)
|
Chris@127
|
1579 {
|
Chris@127
|
1580 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
1581 return;
|
Chris@127
|
1582 }
|
Chris@127
|
1583
|
Chris@682
|
1584 // cerr << "mouseMoveEvent" << endl;
|
Chris@341
|
1585
|
Chris@616
|
1586 QPoint pos = e->pos();
|
Chris@616
|
1587 updateContextHelp(&pos);
|
Chris@189
|
1588
|
Chris@343
|
1589 if (m_navigating && m_clickedInRange && !m_releasing) {
|
Chris@343
|
1590
|
Chris@343
|
1591 // if no buttons pressed, and not called from
|
Chris@343
|
1592 // mouseReleaseEvent, we want to reset clicked-ness (to avoid
|
Chris@343
|
1593 // annoying continual drags when we moved the mouse outside
|
Chris@343
|
1594 // the window after pressing button first time).
|
Chris@343
|
1595
|
Chris@343
|
1596 if (!(e->buttons() & Qt::LeftButton) &&
|
Chris@343
|
1597 !(e->buttons() & Qt::MidButton)) {
|
Chris@343
|
1598 m_clickedInRange = false;
|
Chris@343
|
1599 return;
|
Chris@343
|
1600 }
|
Chris@343
|
1601 }
|
Chris@343
|
1602
|
Chris@127
|
1603 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@711
|
1604 if (m_manager) mode = m_manager->getToolModeFor(this);
|
Chris@127
|
1605
|
Chris@127
|
1606 QPoint prevPoint = m_identifyPoint;
|
Chris@127
|
1607 m_identifyPoint = e->pos();
|
Chris@127
|
1608
|
Chris@127
|
1609 if (!m_clickedInRange) {
|
gyorgyf@645
|
1610
|
gyorgyf@646
|
1611 // GF: handle mouse move for context sensitive cursor switching in NoteEditMode.
|
gyorgyf@646
|
1612 // GF: Propagate the event to FlexiNoteLayer. I somehow feel it's best handeled there rather than here, but perhaps not if this will be needed elsewhere too.
|
Chris@753
|
1613 if (mode == ViewManager::NoteEditMode) {
|
Chris@753
|
1614 FlexiNoteLayer *layer = qobject_cast<FlexiNoteLayer *>(getTopFlexiNoteLayer());
|
Chris@753
|
1615 if (layer) {
|
Chris@753
|
1616 layer->mouseMoveEvent(this, e); //!!! ew
|
matthiasm@785
|
1617 update();
|
matthiasm@785
|
1618 // return;
|
Chris@753
|
1619 }
|
gyorgyf@646
|
1620 }
|
gyorgyf@646
|
1621
|
gyorgyf@646
|
1622 if (mode == ViewManager::SelectMode && hasTopLayerTimeXAxis()) {
|
gyorgyf@646
|
1623 bool closeToLeft = false, closeToRight = false;
|
gyorgyf@646
|
1624 getSelectionAt(e->x(), closeToLeft, closeToRight);
|
gyorgyf@646
|
1625 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
gyorgyf@646
|
1626 setCursor(Qt::SizeHorCursor);
|
gyorgyf@646
|
1627 } else {
|
gyorgyf@646
|
1628 setCursor(Qt::ArrowCursor);
|
gyorgyf@646
|
1629 }
|
gyorgyf@645
|
1630 }
|
Chris@127
|
1631
|
Chris@127
|
1632 if (!m_manager->isPlaying()) {
|
Chris@127
|
1633
|
Chris@272
|
1634 bool updating = false;
|
Chris@272
|
1635
|
Chris@326
|
1636 if (getSelectedLayer() &&
|
Chris@326
|
1637 m_manager->shouldIlluminateLocalFeatures()) {
|
Chris@127
|
1638
|
Chris@174
|
1639 bool previouslyIdentifying = m_identifyFeatures;
|
Chris@174
|
1640 m_identifyFeatures = true;
|
Chris@174
|
1641
|
Chris@174
|
1642 if (m_identifyFeatures != previouslyIdentifying ||
|
Chris@174
|
1643 m_identifyPoint != prevPoint) {
|
Chris@174
|
1644 update();
|
Chris@272
|
1645 updating = true;
|
Chris@272
|
1646 }
|
Chris@272
|
1647 }
|
Chris@272
|
1648
|
Chris@272
|
1649 if (!updating && mode == ViewManager::MeasureMode &&
|
Chris@272
|
1650 m_manager && !m_manager->isPlaying()) {
|
Chris@272
|
1651
|
Chris@272
|
1652 Layer *layer = getTopLayer();
|
Chris@272
|
1653 if (layer && layer->nearestMeasurementRectChanged
|
Chris@272
|
1654 (this, prevPoint, m_identifyPoint)) {
|
Chris@272
|
1655 update();
|
Chris@174
|
1656 }
|
Chris@174
|
1657 }
|
Chris@127
|
1658 }
|
Chris@127
|
1659
|
Chris@713
|
1660 return;
|
Chris@127
|
1661 }
|
Chris@127
|
1662
|
Chris@127
|
1663 if (m_navigating || mode == ViewManager::NavigateMode) {
|
Chris@127
|
1664
|
Chris@713
|
1665 if (m_shiftPressed) {
|
Chris@713
|
1666
|
Chris@713
|
1667 m_mousePos = e->pos();
|
Chris@713
|
1668 update();
|
Chris@713
|
1669
|
Chris@713
|
1670 } else {
|
Chris@127
|
1671
|
Chris@174
|
1672 dragTopLayer(e);
|
Chris@150
|
1673 }
|
Chris@127
|
1674
|
Chris@127
|
1675 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
1676
|
Chris@713
|
1677 if (!hasTopLayerTimeXAxis()) return;
|
Chris@713
|
1678
|
Chris@713
|
1679 dragExtendSelection(e);
|
Chris@127
|
1680
|
Chris@127
|
1681 } else if (mode == ViewManager::DrawMode) {
|
Chris@127
|
1682
|
gyorgyf@649
|
1683 Layer *layer = getSelectedLayer();
|
gyorgyf@649
|
1684 if (layer && layer->isLayerEditable()) {
|
gyorgyf@649
|
1685 layer->drawDrag(this, e);
|
gyorgyf@649
|
1686 }
|
Chris@127
|
1687
|
Chris@335
|
1688 } else if (mode == ViewManager::EraseMode) {
|
Chris@335
|
1689
|
gyorgyf@649
|
1690 Layer *layer = getSelectedLayer();
|
gyorgyf@649
|
1691 if (layer && layer->isLayerEditable()) {
|
gyorgyf@649
|
1692 layer->eraseDrag(this, e);
|
gyorgyf@649
|
1693 }
|
gyorgyf@649
|
1694
|
Chris@713
|
1695 // GF: handling NoteEditMode dragging and boundary actions for mouseMoveEvent
|
gyorgyf@649
|
1696 } else if (mode == ViewManager::NoteEditMode) {
|
gyorgyf@649
|
1697
|
gyorgyf@649
|
1698 bool resist = true;
|
gyorgyf@649
|
1699
|
gyorgyf@649
|
1700 if ((e->modifiers() & Qt::ShiftModifier)) {
|
gyorgyf@649
|
1701 m_shiftPressed = true;
|
gyorgyf@649
|
1702 }
|
gyorgyf@649
|
1703
|
gyorgyf@649
|
1704 if (m_shiftPressed) resist = false;
|
gyorgyf@649
|
1705
|
gyorgyf@649
|
1706 m_dragMode = updateDragMode
|
gyorgyf@649
|
1707 (m_dragMode,
|
gyorgyf@649
|
1708 m_clickPos,
|
gyorgyf@649
|
1709 e->pos(),
|
gyorgyf@649
|
1710 true, // can move horiz
|
gyorgyf@649
|
1711 true, // can move vert
|
gyorgyf@649
|
1712 resist, // resist horiz
|
gyorgyf@649
|
1713 resist); // resist vert
|
gyorgyf@649
|
1714
|
gyorgyf@649
|
1715 if (!m_editing) {
|
gyorgyf@649
|
1716
|
gyorgyf@649
|
1717 if (m_dragMode != UnresolvedDrag) {
|
gyorgyf@649
|
1718
|
gyorgyf@649
|
1719 m_editing = true;
|
gyorgyf@649
|
1720
|
gyorgyf@649
|
1721 QMouseEvent clickEvent(QEvent::MouseButtonPress,
|
gyorgyf@649
|
1722 m_clickPos,
|
gyorgyf@649
|
1723 Qt::NoButton,
|
gyorgyf@649
|
1724 e->buttons(),
|
gyorgyf@649
|
1725 e->modifiers());
|
gyorgyf@649
|
1726
|
gyorgyf@649
|
1727 if (!editSelectionStart(&clickEvent)) {
|
Chris@753
|
1728 Layer *layer = getTopFlexiNoteLayer();
|
Chris@753
|
1729 if (layer) {
|
gyorgyf@649
|
1730 std::cerr << "calling edit start" << std::endl;
|
gyorgyf@649
|
1731 layer->editStart(this, &clickEvent);
|
gyorgyf@649
|
1732 }
|
gyorgyf@649
|
1733 }
|
gyorgyf@649
|
1734 }
|
gyorgyf@649
|
1735
|
gyorgyf@649
|
1736 } else {
|
gyorgyf@649
|
1737
|
gyorgyf@649
|
1738 if (!editSelectionDrag(e)) {
|
gyorgyf@649
|
1739
|
gyorgyf@649
|
1740 Layer *layer = getSelectedLayer();
|
gyorgyf@649
|
1741
|
gyorgyf@649
|
1742 if (layer && layer->isLayerEditable()) {
|
gyorgyf@649
|
1743
|
gyorgyf@649
|
1744 int x = e->x();
|
gyorgyf@649
|
1745 int y = e->y();
|
gyorgyf@649
|
1746 if (m_dragMode == VerticalDrag) x = m_clickPos.x();
|
gyorgyf@649
|
1747 else if (m_dragMode == HorizontalDrag) y = m_clickPos.y();
|
gyorgyf@649
|
1748
|
gyorgyf@649
|
1749 QMouseEvent moveEvent(QEvent::MouseMove,
|
gyorgyf@649
|
1750 QPoint(x, y),
|
gyorgyf@649
|
1751 Qt::NoButton,
|
gyorgyf@649
|
1752 e->buttons(),
|
gyorgyf@649
|
1753 e->modifiers());
|
gyorgyf@649
|
1754 std::cerr << "calling editDrag" << std::endl;
|
gyorgyf@649
|
1755 layer->editDrag(this, &moveEvent);
|
gyorgyf@649
|
1756 }
|
gyorgyf@649
|
1757 }
|
gyorgyf@649
|
1758 }
|
Chris@335
|
1759
|
Chris@127
|
1760 } else if (mode == ViewManager::EditMode) {
|
Chris@127
|
1761
|
Chris@551
|
1762 bool resist = true;
|
Chris@551
|
1763
|
Chris@551
|
1764 if ((e->modifiers() & Qt::ShiftModifier)) {
|
Chris@551
|
1765 m_shiftPressed = true;
|
Chris@551
|
1766 // ... but don't set it false if shift has been
|
Chris@551
|
1767 // released -- we want the state when we started
|
Chris@551
|
1768 // dragging to be used most of the time
|
Chris@343
|
1769 }
|
Chris@343
|
1770
|
Chris@551
|
1771 if (m_shiftPressed) resist = false;
|
Chris@551
|
1772
|
Chris@551
|
1773 m_dragMode = updateDragMode
|
Chris@551
|
1774 (m_dragMode,
|
Chris@551
|
1775 m_clickPos,
|
Chris@551
|
1776 e->pos(),
|
Chris@551
|
1777 true, // can move horiz
|
Chris@551
|
1778 true, // can move vert
|
Chris@551
|
1779 resist, // resist horiz
|
Chris@551
|
1780 resist); // resist vert
|
Chris@551
|
1781
|
Chris@343
|
1782 if (!m_editing) {
|
Chris@343
|
1783
|
Chris@551
|
1784 if (m_dragMode != UnresolvedDrag) {
|
Chris@343
|
1785
|
Chris@343
|
1786 m_editing = true;
|
Chris@343
|
1787
|
Chris@343
|
1788 QMouseEvent clickEvent(QEvent::MouseButtonPress,
|
Chris@343
|
1789 m_clickPos,
|
Chris@343
|
1790 Qt::NoButton,
|
Chris@343
|
1791 e->buttons(),
|
Chris@343
|
1792 e->modifiers());
|
Chris@343
|
1793
|
Chris@343
|
1794 if (!editSelectionStart(&clickEvent)) {
|
Chris@343
|
1795 Layer *layer = getSelectedLayer();
|
Chris@343
|
1796 if (layer && layer->isLayerEditable()) {
|
Chris@343
|
1797 layer->editStart(this, &clickEvent);
|
Chris@343
|
1798 }
|
Chris@343
|
1799 }
|
Chris@343
|
1800 }
|
Chris@551
|
1801
|
Chris@551
|
1802 } else {
|
Chris@551
|
1803
|
Chris@551
|
1804 if (!editSelectionDrag(e)) {
|
Chris@551
|
1805
|
Chris@551
|
1806 Layer *layer = getSelectedLayer();
|
Chris@551
|
1807
|
Chris@551
|
1808 if (layer && layer->isLayerEditable()) {
|
Chris@551
|
1809
|
Chris@551
|
1810 int x = e->x();
|
Chris@551
|
1811 int y = e->y();
|
Chris@551
|
1812 if (m_dragMode == VerticalDrag) x = m_clickPos.x();
|
Chris@551
|
1813 else if (m_dragMode == HorizontalDrag) y = m_clickPos.y();
|
Chris@551
|
1814
|
Chris@551
|
1815 QMouseEvent moveEvent(QEvent::MouseMove,
|
Chris@551
|
1816 QPoint(x, y),
|
Chris@551
|
1817 Qt::NoButton,
|
Chris@551
|
1818 e->buttons(),
|
Chris@551
|
1819 e->modifiers());
|
Chris@551
|
1820
|
Chris@551
|
1821 layer->editDrag(this, &moveEvent);
|
Chris@551
|
1822 }
|
Chris@551
|
1823 }
|
Chris@343
|
1824 }
|
Chris@259
|
1825
|
Chris@259
|
1826 } else if (mode == ViewManager::MeasureMode) {
|
Chris@259
|
1827
|
Chris@267
|
1828 if (m_measureCursor2) setCursor(*m_measureCursor2);
|
Chris@266
|
1829
|
Chris@268
|
1830 Layer *layer = getTopLayer();
|
Chris@290
|
1831 if (layer) {
|
Chris@290
|
1832 layer->measureDrag(this, e);
|
Chris@290
|
1833 if (layer->hasTimeXAxis()) edgeScrollMaybe(e->x());
|
Chris@290
|
1834 }
|
Chris@267
|
1835
|
Chris@267
|
1836 update();
|
Chris@127
|
1837 }
|
Chris@802
|
1838
|
Chris@802
|
1839 if (m_dragMode != UnresolvedDrag) {
|
Chris@802
|
1840 m_playbackFrameMoveScheduled = false;
|
Chris@802
|
1841 }
|
Chris@127
|
1842 }
|
Chris@127
|
1843
|
Chris@127
|
1844 void
|
Chris@730
|
1845 Pane::zoomToRegion(QRect r)
|
Chris@174
|
1846 {
|
Chris@730
|
1847 int x0 = r.x();
|
Chris@730
|
1848 int y0 = r.y();
|
Chris@730
|
1849 int x1 = r.x() + r.width();
|
Chris@730
|
1850 int y1 = r.y() + r.height();
|
Chris@730
|
1851
|
Chris@174
|
1852 int w = x1 - x0;
|
gyorgyf@645
|
1853
|
Chris@806
|
1854 int newStartFrame = getFrameForX(x0);
|
gyorgyf@645
|
1855
|
Chris@806
|
1856 int visibleFrames = getEndFrame() - getStartFrame();
|
Chris@174
|
1857 if (newStartFrame <= -visibleFrames) {
|
Chris@174
|
1858 newStartFrame = -visibleFrames + 1;
|
Chris@174
|
1859 }
|
gyorgyf@645
|
1860
|
Chris@174
|
1861 if (newStartFrame >= long(getModelsEndFrame())) {
|
Chris@174
|
1862 newStartFrame = getModelsEndFrame() - 1;
|
Chris@174
|
1863 }
|
gyorgyf@645
|
1864
|
Chris@174
|
1865 float ratio = float(w) / float(width());
|
Chris@682
|
1866 // cerr << "ratio: " << ratio << endl;
|
Chris@806
|
1867 int newZoomLevel = (int)nearbyint(m_zoomLevel * ratio);
|
Chris@174
|
1868 if (newZoomLevel < 1) newZoomLevel = 1;
|
Chris@174
|
1869
|
Chris@682
|
1870 // cerr << "start: " << m_startFrame << ", level " << m_zoomLevel << endl;
|
Chris@174
|
1871 setZoomLevel(getZoomConstraintBlockSize(newZoomLevel));
|
Chris@174
|
1872 setStartFrame(newStartFrame);
|
Chris@174
|
1873
|
Chris@174
|
1874 QString unit;
|
Chris@174
|
1875 float min, max;
|
Chris@174
|
1876 bool log;
|
Chris@174
|
1877 Layer *layer = 0;
|
Chris@174
|
1878 for (LayerList::const_iterator i = m_layers.begin();
|
Chris@174
|
1879 i != m_layers.end(); ++i) {
|
Chris@174
|
1880 if ((*i)->getValueExtents(min, max, log, unit) &&
|
Chris@174
|
1881 (*i)->getDisplayExtents(min, max)) {
|
Chris@174
|
1882 layer = *i;
|
Chris@174
|
1883 break;
|
Chris@174
|
1884 }
|
Chris@174
|
1885 }
|
Chris@174
|
1886
|
Chris@174
|
1887 if (layer) {
|
Chris@174
|
1888 if (log) {
|
Chris@174
|
1889 min = (min < 0.0) ? -log10f(-min) : (min == 0.0) ? 0.0 : log10f(min);
|
Chris@174
|
1890 max = (max < 0.0) ? -log10f(-max) : (max == 0.0) ? 0.0 : log10f(max);
|
Chris@174
|
1891 }
|
Chris@174
|
1892 float rmin = min + ((max - min) * (height() - y1)) / height();
|
Chris@174
|
1893 float rmax = min + ((max - min) * (height() - y0)) / height();
|
Chris@682
|
1894 cerr << "min: " << min << ", max: " << max << ", y0: " << y0 << ", y1: " << y1 << ", h: " << height() << ", rmin: " << rmin << ", rmax: " << rmax << endl;
|
Chris@174
|
1895 if (log) {
|
Chris@522
|
1896 rmin = powf(10, rmin);
|
Chris@522
|
1897 rmax = powf(10, rmax);
|
Chris@174
|
1898 }
|
Chris@682
|
1899 cerr << "finally: rmin: " << rmin << ", rmax: " << rmax << " " << unit << endl;
|
Chris@174
|
1900
|
Chris@174
|
1901 layer->setDisplayExtents(rmin, rmax);
|
Chris@174
|
1902 updateVerticalPanner();
|
Chris@174
|
1903 }
|
Chris@174
|
1904 }
|
Chris@174
|
1905
|
Chris@174
|
1906 void
|
Chris@174
|
1907 Pane::dragTopLayer(QMouseEvent *e)
|
Chris@174
|
1908 {
|
Chris@174
|
1909 // We need to avoid making it too easy to drag both
|
Chris@174
|
1910 // horizontally and vertically, in the case where the
|
Chris@174
|
1911 // mouse is moved "mostly" in horizontal or vertical axis
|
Chris@174
|
1912 // with only a small variation in the other axis. This is
|
Chris@174
|
1913 // particularly important during playback (when we want to
|
Chris@174
|
1914 // avoid small horizontal motions) or in slow refresh
|
Chris@174
|
1915 // layers like spectrogram (when we want to avoid small
|
Chris@174
|
1916 // vertical motions).
|
Chris@174
|
1917 //
|
Chris@174
|
1918 // To this end we have horizontal and vertical thresholds
|
Chris@174
|
1919 // and a series of states: unresolved, horizontally or
|
Chris@174
|
1920 // vertically constrained, free.
|
Chris@174
|
1921 //
|
Chris@174
|
1922 // When the mouse first moves, we're unresolved: we
|
Chris@174
|
1923 // restrict ourselves to whichever direction seems safest,
|
Chris@174
|
1924 // until the mouse has passed a small threshold distance
|
Chris@174
|
1925 // from the click point. Then we lock in to one of the
|
Chris@174
|
1926 // constrained modes, based on which axis that distance
|
Chris@174
|
1927 // was measured in first. Finally, if it turns out we've
|
Chris@174
|
1928 // also moved more than a certain larger distance in the
|
Chris@174
|
1929 // other direction as well, we may switch into free mode.
|
Chris@174
|
1930 //
|
Chris@174
|
1931 // If the top layer is incapable of being dragged
|
Chris@174
|
1932 // vertically, the logic is short circuited.
|
Chris@174
|
1933
|
Chris@343
|
1934 m_dragMode = updateDragMode
|
Chris@343
|
1935 (m_dragMode,
|
Chris@343
|
1936 m_clickPos,
|
Chris@343
|
1937 e->pos(),
|
Chris@343
|
1938 true, // can move horiz
|
Chris@343
|
1939 canTopLayerMoveVertical(), // can move vert
|
Chris@343
|
1940 canTopLayerMoveVertical() || (m_manager && m_manager->isPlaying()), // resist horiz
|
Chris@343
|
1941 !(m_manager && m_manager->isPlaying())); // resist vert
|
Chris@174
|
1942
|
Chris@343
|
1943 if (m_dragMode == HorizontalDrag ||
|
Chris@343
|
1944 m_dragMode == FreeDrag) {
|
Chris@174
|
1945
|
Chris@806
|
1946 int frameOff = getFrameForX(e->x()) - getFrameForX(m_clickPos.x());
|
Chris@806
|
1947 int newCentreFrame = m_dragCentreFrame;
|
gyorgyf@645
|
1948
|
Chris@174
|
1949 if (frameOff < 0) {
|
Chris@174
|
1950 newCentreFrame -= frameOff;
|
Chris@806
|
1951 } else if (newCentreFrame >= frameOff) {
|
Chris@174
|
1952 newCentreFrame -= frameOff;
|
Chris@174
|
1953 } else {
|
Chris@174
|
1954 newCentreFrame = 0;
|
Chris@174
|
1955 }
|
Chris@363
|
1956
|
gyorgyf@645
|
1957 #ifdef DEBUG_PANE
|
Chris@587
|
1958 SVDEBUG << "Pane::dragTopLayer: newCentreFrame = " << newCentreFrame <<
|
Chris@585
|
1959 ", models end frame = " << getModelsEndFrame() << endl;
|
Chris@363
|
1960 #endif
|
Chris@339
|
1961
|
Chris@174
|
1962 if (newCentreFrame >= getModelsEndFrame()) {
|
Chris@174
|
1963 newCentreFrame = getModelsEndFrame();
|
Chris@174
|
1964 if (newCentreFrame > 0) --newCentreFrame;
|
Chris@174
|
1965 }
|
Chris@174
|
1966
|
Chris@174
|
1967 if (getXForFrame(m_centreFrame) != getXForFrame(newCentreFrame)) {
|
Chris@510
|
1968 setCentreFrame(newCentreFrame, !m_altPressed);
|
Chris@174
|
1969 }
|
Chris@174
|
1970 }
|
Chris@174
|
1971
|
Chris@343
|
1972 if (m_dragMode == VerticalDrag ||
|
Chris@343
|
1973 m_dragMode == FreeDrag) {
|
Chris@174
|
1974
|
Chris@174
|
1975 float vmin = 0.f, vmax = 0.f;
|
Chris@174
|
1976 float dmin = 0.f, dmax = 0.f;
|
Chris@174
|
1977
|
Chris@174
|
1978 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) {
|
Chris@174
|
1979
|
Chris@682
|
1980 // cerr << "ydiff = " << ydiff << endl;
|
Chris@174
|
1981
|
Chris@343
|
1982 int ydiff = e->y() - m_clickPos.y();
|
Chris@174
|
1983 float perpix = (dmax - dmin) / height();
|
Chris@174
|
1984 float valdiff = ydiff * perpix;
|
Chris@682
|
1985 // cerr << "valdiff = " << valdiff << endl;
|
Chris@174
|
1986
|
Chris@343
|
1987 if (m_dragMode == UnresolvedDrag && ydiff != 0) {
|
Chris@343
|
1988 m_dragMode = VerticalDrag;
|
Chris@343
|
1989 }
|
Chris@343
|
1990
|
Chris@174
|
1991 float newmin = m_dragStartMinValue + valdiff;
|
Chris@174
|
1992 float newmax = m_dragStartMinValue + (dmax - dmin) + valdiff;
|
Chris@174
|
1993 if (newmin < vmin) {
|
Chris@174
|
1994 newmax += vmin - newmin;
|
Chris@174
|
1995 newmin += vmin - newmin;
|
Chris@174
|
1996 }
|
Chris@174
|
1997 if (newmax > vmax) {
|
Chris@174
|
1998 newmin -= newmax - vmax;
|
Chris@174
|
1999 newmax -= newmax - vmax;
|
Chris@174
|
2000 }
|
Chris@682
|
2001 // cerr << "(" << dmin << ", " << dmax << ") -> ("
|
Chris@682
|
2002 // << newmin << ", " << newmax << ") (drag start " << m_dragStartMinValue << ")" << endl;
|
Chris@174
|
2003
|
Chris@174
|
2004 setTopLayerDisplayExtents(newmin, newmax);
|
Chris@174
|
2005 updateVerticalPanner();
|
Chris@174
|
2006 }
|
Chris@174
|
2007 }
|
Chris@174
|
2008 }
|
Chris@174
|
2009
|
Chris@343
|
2010 Pane::DragMode
|
Chris@343
|
2011 Pane::updateDragMode(DragMode dragMode,
|
Chris@343
|
2012 QPoint origin,
|
Chris@343
|
2013 QPoint point,
|
Chris@343
|
2014 bool canMoveHorizontal,
|
Chris@343
|
2015 bool canMoveVertical,
|
Chris@343
|
2016 bool resistHorizontal,
|
Chris@343
|
2017 bool resistVertical)
|
Chris@343
|
2018 {
|
Chris@343
|
2019 int xdiff = point.x() - origin.x();
|
Chris@343
|
2020 int ydiff = point.y() - origin.y();
|
Chris@343
|
2021
|
Chris@343
|
2022 int smallThreshold = 10, bigThreshold = 80;
|
Chris@343
|
2023
|
Chris@587
|
2024 // SVDEBUG << "Pane::updateDragMode: xdiff = " << xdiff << ", ydiff = "
|
Chris@585
|
2025 // << ydiff << ", canMoveVertical = " << canMoveVertical << ", drag mode = " << m_dragMode << endl;
|
Chris@343
|
2026
|
Chris@343
|
2027 if (dragMode == UnresolvedDrag) {
|
Chris@343
|
2028
|
Chris@343
|
2029 if (abs(ydiff) > smallThreshold &&
|
Chris@343
|
2030 abs(ydiff) > abs(xdiff) * 2 &&
|
Chris@343
|
2031 canMoveVertical) {
|
Chris@587
|
2032 // SVDEBUG << "Pane::updateDragMode: passed vertical threshold" << endl;
|
Chris@343
|
2033 dragMode = VerticalDrag;
|
Chris@343
|
2034 } else if (abs(xdiff) > smallThreshold &&
|
Chris@343
|
2035 abs(xdiff) > abs(ydiff) * 2 &&
|
Chris@343
|
2036 canMoveHorizontal) {
|
Chris@587
|
2037 // SVDEBUG << "Pane::updateDragMode: passed horizontal threshold" << endl;
|
Chris@343
|
2038 dragMode = HorizontalDrag;
|
Chris@343
|
2039 } else if (abs(xdiff) > smallThreshold &&
|
Chris@343
|
2040 abs(ydiff) > smallThreshold &&
|
Chris@343
|
2041 canMoveVertical &&
|
Chris@343
|
2042 canMoveHorizontal) {
|
Chris@587
|
2043 // SVDEBUG << "Pane::updateDragMode: passed both thresholds" << endl;
|
Chris@343
|
2044 dragMode = FreeDrag;
|
Chris@343
|
2045 }
|
Chris@343
|
2046 }
|
Chris@343
|
2047
|
Chris@343
|
2048 if (dragMode == VerticalDrag && canMoveHorizontal) {
|
Chris@343
|
2049 if (abs(xdiff) > bigThreshold) dragMode = FreeDrag;
|
Chris@343
|
2050 }
|
Chris@343
|
2051
|
Chris@343
|
2052 if (dragMode == HorizontalDrag && canMoveVertical) {
|
Chris@343
|
2053 if (abs(ydiff) > bigThreshold) dragMode = FreeDrag;
|
Chris@343
|
2054 }
|
Chris@343
|
2055
|
Chris@343
|
2056 if (dragMode == UnresolvedDrag) {
|
Chris@343
|
2057 if (!resistHorizontal && xdiff != 0) {
|
Chris@343
|
2058 dragMode = HorizontalDrag;
|
Chris@343
|
2059 }
|
Chris@343
|
2060 if (!resistVertical && ydiff != 0) {
|
Chris@343
|
2061 if (dragMode == HorizontalDrag) dragMode = FreeDrag;
|
Chris@343
|
2062 else dragMode = VerticalDrag;
|
Chris@343
|
2063 }
|
Chris@343
|
2064 }
|
Chris@343
|
2065
|
Chris@343
|
2066 return dragMode;
|
Chris@343
|
2067 }
|
Chris@343
|
2068
|
Chris@174
|
2069 void
|
Chris@174
|
2070 Pane::dragExtendSelection(QMouseEvent *e)
|
Chris@174
|
2071 {
|
Chris@174
|
2072 int mouseFrame = getFrameForX(e->x());
|
Chris@806
|
2073 int resolution = 1;
|
Chris@174
|
2074 int snapFrameLeft = mouseFrame;
|
Chris@174
|
2075 int snapFrameRight = mouseFrame;
|
gyorgyf@645
|
2076
|
Chris@174
|
2077 Layer *layer = getSelectedLayer();
|
Chris@174
|
2078 if (layer && !m_shiftPressed) {
|
Chris@174
|
2079 layer->snapToFeatureFrame(this, snapFrameLeft,
|
Chris@174
|
2080 resolution, Layer::SnapLeft);
|
Chris@174
|
2081 layer->snapToFeatureFrame(this, snapFrameRight,
|
Chris@174
|
2082 resolution, Layer::SnapRight);
|
Chris@174
|
2083 }
|
Chris@174
|
2084
|
Chris@682
|
2085 // cerr << "snap: frame = " << mouseFrame << ", start frame = " << m_selectionStartFrame << ", left = " << snapFrameLeft << ", right = " << snapFrameRight << endl;
|
Chris@174
|
2086
|
Chris@174
|
2087 if (snapFrameLeft < 0) snapFrameLeft = 0;
|
Chris@174
|
2088 if (snapFrameRight < 0) snapFrameRight = 0;
|
gyorgyf@645
|
2089
|
Chris@806
|
2090 int min, max;
|
gyorgyf@645
|
2091
|
Chris@806
|
2092 if (m_selectionStartFrame > snapFrameLeft) {
|
Chris@174
|
2093 min = snapFrameLeft;
|
Chris@174
|
2094 max = m_selectionStartFrame;
|
Chris@806
|
2095 } else if (snapFrameRight > m_selectionStartFrame) {
|
Chris@174
|
2096 min = m_selectionStartFrame;
|
Chris@174
|
2097 max = snapFrameRight;
|
Chris@174
|
2098 } else {
|
Chris@174
|
2099 min = snapFrameLeft;
|
Chris@174
|
2100 max = snapFrameRight;
|
Chris@174
|
2101 }
|
Chris@174
|
2102
|
Chris@174
|
2103 if (m_manager) {
|
Chris@333
|
2104 m_manager->setInProgressSelection(Selection(alignToReference(min),
|
Chris@333
|
2105 alignToReference(max)),
|
Chris@174
|
2106 !m_resizing && !m_ctrlPressed);
|
Chris@174
|
2107 }
|
Chris@174
|
2108
|
Chris@259
|
2109 edgeScrollMaybe(e->x());
|
Chris@259
|
2110
|
Chris@259
|
2111 update();
|
Chris@802
|
2112
|
Chris@802
|
2113 if (min != max) {
|
Chris@802
|
2114 m_playbackFrameMoveScheduled = false;
|
Chris@802
|
2115 }
|
Chris@259
|
2116 }
|
Chris@259
|
2117
|
Chris@259
|
2118 void
|
Chris@259
|
2119 Pane::edgeScrollMaybe(int x)
|
Chris@259
|
2120 {
|
Chris@259
|
2121 int mouseFrame = getFrameForX(x);
|
Chris@259
|
2122
|
Chris@174
|
2123 bool doScroll = false;
|
Chris@174
|
2124 if (!m_manager) doScroll = true;
|
Chris@174
|
2125 if (!m_manager->isPlaying()) doScroll = true;
|
Chris@174
|
2126 if (m_followPlay != PlaybackScrollContinuous) doScroll = true;
|
Chris@174
|
2127
|
Chris@174
|
2128 if (doScroll) {
|
Chris@174
|
2129 int offset = mouseFrame - getStartFrame();
|
Chris@174
|
2130 int available = getEndFrame() - getStartFrame();
|
Chris@259
|
2131 int move = 0;
|
Chris@174
|
2132 if (offset >= available * 0.95) {
|
Chris@259
|
2133 move = int(offset - available * 0.95) + 1;
|
Chris@259
|
2134 } else if (offset <= available * 0.10) {
|
Chris@259
|
2135 move = int(available * 0.10 - offset) + 1;
|
Chris@259
|
2136 move = -move;
|
Chris@259
|
2137 }
|
Chris@259
|
2138 if (move != 0) {
|
Chris@174
|
2139 setCentreFrame(m_centreFrame + move);
|
Chris@259
|
2140 update();
|
Chris@174
|
2141 }
|
Chris@174
|
2142 }
|
Chris@174
|
2143 }
|
Chris@174
|
2144
|
Chris@174
|
2145 void
|
Chris@127
|
2146 Pane::mouseDoubleClickEvent(QMouseEvent *e)
|
Chris@127
|
2147 {
|
Chris@127
|
2148 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
2149 return;
|
Chris@127
|
2150 }
|
Chris@127
|
2151
|
Chris@802
|
2152 cerr << "mouseDoubleClickEvent" << endl;
|
Chris@127
|
2153
|
Chris@127
|
2154 m_clickPos = e->pos();
|
Chris@127
|
2155 m_clickedInRange = true;
|
Chris@127
|
2156 m_shiftPressed = (e->modifiers() & Qt::ShiftModifier);
|
Chris@127
|
2157 m_ctrlPressed = (e->modifiers() & Qt::ControlModifier);
|
Chris@510
|
2158 m_altPressed = (e->modifiers() & Qt::AltModifier);
|
Chris@127
|
2159
|
Chris@802
|
2160 // cancel any pending move that came from a single click
|
Chris@802
|
2161 m_playbackFrameMoveScheduled = false;
|
Chris@802
|
2162
|
Chris@127
|
2163 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@711
|
2164 if (m_manager) mode = m_manager->getToolModeFor(this);
|
Chris@127
|
2165
|
Chris@255
|
2166 bool relocate = (mode == ViewManager::NavigateMode ||
|
Chris@255
|
2167 (e->buttons() & Qt::MidButton));
|
Chris@255
|
2168
|
Chris@716
|
2169 if (mode == ViewManager::SelectMode) {
|
Chris@716
|
2170 m_clickedInRange = false;
|
Chris@716
|
2171 m_manager->clearInProgressSelection();
|
Chris@716
|
2172 emit doubleClickSelectInvoked(getFrameForX(e->x()));
|
Chris@716
|
2173 return;
|
Chris@716
|
2174 }
|
Chris@716
|
2175
|
Chris@127
|
2176 if (mode == ViewManager::NavigateMode ||
|
Chris@127
|
2177 mode == ViewManager::EditMode) {
|
Chris@127
|
2178
|
matthiasm@660
|
2179 Layer *layer = getSelectedLayer();
|
matthiasm@660
|
2180 if (layer && layer->isLayerEditable()) {
|
matthiasm@660
|
2181 if (layer->editOpen(this, e)) relocate = false;
|
matthiasm@660
|
2182 }
|
Chris@280
|
2183
|
Chris@280
|
2184 } else if (mode == ViewManager::MeasureMode) {
|
Chris@280
|
2185
|
Chris@280
|
2186 Layer *layer = getTopLayer();
|
Chris@280
|
2187 if (layer) layer->measureDoubleClick(this, e);
|
Chris@280
|
2188 update();
|
Chris@127
|
2189 }
|
Chris@255
|
2190
|
Chris@255
|
2191 if (relocate) {
|
Chris@255
|
2192
|
Chris@806
|
2193 int f = getFrameForX(e->x());
|
Chris@255
|
2194
|
Chris@255
|
2195 setCentreFrame(f);
|
Chris@255
|
2196
|
Chris@255
|
2197 m_dragCentreFrame = f;
|
Chris@255
|
2198 m_dragStartMinValue = 0;
|
Chris@255
|
2199 m_dragMode = UnresolvedDrag;
|
Chris@255
|
2200
|
Chris@255
|
2201 float vmin, vmax, dmin, dmax;
|
Chris@255
|
2202 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) {
|
Chris@255
|
2203 m_dragStartMinValue = dmin;
|
Chris@255
|
2204 }
|
Chris@255
|
2205 }
|
matthiasm@660
|
2206
|
matthiasm@660
|
2207 if (mode == ViewManager::NoteEditMode) {
|
matthiasm@660
|
2208 std::cerr << "double click in note edit mode" << std::endl;
|
matthiasm@660
|
2209 Layer *layer = getSelectedLayer();
|
matthiasm@660
|
2210 if (layer && layer->isLayerEditable()) {
|
matthiasm@660
|
2211 layer->addNote(this, e);
|
matthiasm@660
|
2212 }
|
matthiasm@660
|
2213 }
|
Chris@551
|
2214
|
Chris@551
|
2215 m_clickedInRange = false; // in case mouseReleaseEvent is not properly called
|
Chris@127
|
2216 }
|
Chris@127
|
2217
|
Chris@127
|
2218 void
|
Chris@290
|
2219 Pane::enterEvent(QEvent *)
|
Chris@290
|
2220 {
|
Chris@290
|
2221 m_mouseInWidget = true;
|
Chris@290
|
2222 }
|
Chris@290
|
2223
|
Chris@290
|
2224 void
|
Chris@127
|
2225 Pane::leaveEvent(QEvent *)
|
Chris@127
|
2226 {
|
Chris@290
|
2227 m_mouseInWidget = false;
|
Chris@127
|
2228 bool previouslyIdentifying = m_identifyFeatures;
|
Chris@127
|
2229 m_identifyFeatures = false;
|
Chris@127
|
2230 if (previouslyIdentifying) update();
|
Chris@189
|
2231 emit contextHelpChanged("");
|
Chris@127
|
2232 }
|
Chris@127
|
2233
|
Chris@127
|
2234 void
|
Chris@133
|
2235 Pane::resizeEvent(QResizeEvent *)
|
Chris@133
|
2236 {
|
Chris@133
|
2237 updateHeadsUpDisplay();
|
Chris@133
|
2238 }
|
Chris@133
|
2239
|
Chris@133
|
2240 void
|
Chris@127
|
2241 Pane::wheelEvent(QWheelEvent *e)
|
Chris@127
|
2242 {
|
Chris@826
|
2243 cerr << "wheelEvent, delta " << e->delta() << ", angleDelta " << e->angleDelta().x() << "," << e->angleDelta().y() << ", pixelDelta " << e->pixelDelta().x() << "," << e->pixelDelta().y() << ", modifiers " << e->modifiers() << endl;
|
Chris@826
|
2244
|
Chris@826
|
2245 int dx = e->angleDelta().x();
|
Chris@826
|
2246 int dy = e->angleDelta().y();
|
Chris@826
|
2247
|
Chris@826
|
2248 if (dx == 0 && dy == 0) {
|
Chris@826
|
2249 return;
|
Chris@127
|
2250 }
|
Chris@127
|
2251
|
Chris@826
|
2252 int d = dy;
|
Chris@826
|
2253 bool horizontal = false;
|
Chris@826
|
2254
|
Chris@826
|
2255 if (abs(dx) > abs(dy)) {
|
Chris@826
|
2256 d = dx;
|
Chris@826
|
2257 horizontal = true;
|
Chris@826
|
2258 } else if (e->modifiers() & Qt::ControlModifier) {
|
Chris@826
|
2259 // treat a vertical wheel as horizontal
|
Chris@826
|
2260 horizontal = true;
|
Chris@826
|
2261 }
|
Chris@826
|
2262
|
Chris@826
|
2263 if (e->phase() == Qt::ScrollBegin ||
|
Chris@826
|
2264 fabs(d) >= 120 ||
|
Chris@826
|
2265 (d > 0 && m_pendingWheelAngle < 0) ||
|
Chris@826
|
2266 (d < 0 && m_pendingWheelAngle > 0)) {
|
Chris@826
|
2267 m_pendingWheelAngle = d;
|
Chris@826
|
2268 } else {
|
Chris@826
|
2269 m_pendingWheelAngle += d;
|
Chris@826
|
2270 }
|
Chris@826
|
2271
|
Chris@826
|
2272 if (horizontal && e->pixelDelta().x() != 0) {
|
Chris@826
|
2273
|
Chris@826
|
2274 // Have fine pixel information: use it
|
Chris@826
|
2275
|
Chris@826
|
2276 wheelHorizontalFine(e->pixelDelta().x(), e->modifiers());
|
Chris@826
|
2277
|
Chris@826
|
2278 m_pendingWheelAngle = 0;
|
Chris@826
|
2279
|
Chris@826
|
2280 } else {
|
Chris@826
|
2281
|
Chris@826
|
2282 // Coarse wheel information (or vertical zoom, which is
|
Chris@826
|
2283 // necessarily coarse itself)
|
Chris@826
|
2284
|
Chris@826
|
2285 while (abs(m_pendingWheelAngle) >= 120) {
|
Chris@826
|
2286
|
Chris@826
|
2287 int sign = (m_pendingWheelAngle < 0 ? -1 : 1);
|
Chris@826
|
2288
|
Chris@826
|
2289 if (horizontal) {
|
Chris@826
|
2290 wheelHorizontal(sign, e->modifiers());
|
Chris@826
|
2291 } else {
|
Chris@826
|
2292 wheelVertical(sign, e->modifiers());
|
Chris@826
|
2293 }
|
Chris@826
|
2294
|
Chris@826
|
2295 m_pendingWheelAngle -= sign * 120;
|
Chris@826
|
2296 }
|
Chris@826
|
2297 }
|
Chris@826
|
2298 }
|
Chris@826
|
2299
|
Chris@826
|
2300 void
|
Chris@826
|
2301 Pane::wheelVertical(int sign, Qt::KeyboardModifiers mods)
|
Chris@826
|
2302 {
|
Chris@826
|
2303 cerr << "wheelVertical: sign = " << sign << endl;
|
Chris@826
|
2304
|
Chris@826
|
2305 if (mods & Qt::ShiftModifier) {
|
Chris@826
|
2306
|
Chris@826
|
2307 // Pan vertically
|
Chris@826
|
2308
|
Chris@826
|
2309 if (m_vpan) {
|
Chris@826
|
2310 m_vpan->scroll(sign > 0);
|
Chris@826
|
2311 }
|
Chris@826
|
2312
|
Chris@826
|
2313 } else if (mods & Qt::AltModifier) {
|
Chris@826
|
2314
|
Chris@826
|
2315 // Zoom vertically
|
Chris@826
|
2316
|
Chris@826
|
2317 if (m_vthumb) {
|
Chris@826
|
2318 m_vthumb->scroll(sign > 0);
|
Chris@826
|
2319 }
|
Chris@826
|
2320
|
Chris@826
|
2321 } else {
|
Chris@826
|
2322
|
Chris@826
|
2323 // Zoom in or out
|
Chris@826
|
2324
|
Chris@826
|
2325 int newZoomLevel = m_zoomLevel;
|
Chris@826
|
2326
|
Chris@826
|
2327 if (sign > 0) {
|
Chris@826
|
2328 if (newZoomLevel <= 2) {
|
Chris@826
|
2329 newZoomLevel = 1;
|
Chris@826
|
2330 } else {
|
Chris@826
|
2331 newZoomLevel = getZoomConstraintBlockSize
|
Chris@826
|
2332 (newZoomLevel - 1, ZoomConstraint::RoundDown);
|
Chris@826
|
2333 }
|
Chris@826
|
2334 } else { // sign < 0
|
Chris@826
|
2335 newZoomLevel = getZoomConstraintBlockSize
|
Chris@826
|
2336 (newZoomLevel + 1, ZoomConstraint::RoundUp);
|
Chris@826
|
2337 }
|
Chris@826
|
2338
|
Chris@826
|
2339 if (newZoomLevel != m_zoomLevel) {
|
Chris@826
|
2340 setZoomLevel(newZoomLevel);
|
Chris@826
|
2341 }
|
Chris@826
|
2342 }
|
Chris@826
|
2343
|
Chris@826
|
2344 emit paneInteractedWith();
|
Chris@826
|
2345 }
|
Chris@826
|
2346
|
Chris@826
|
2347 void
|
Chris@826
|
2348 Pane::wheelHorizontal(int sign, Qt::KeyboardModifiers mods)
|
Chris@826
|
2349 {
|
Chris@826
|
2350 cerr << "wheelHorizontal: sign = " << sign << endl;
|
Chris@127
|
2351
|
gyorgyf@645
|
2352 // Scroll left or right, rapidly
|
gyorgyf@645
|
2353
|
Chris@826
|
2354 wheelHorizontalFine((width() / 4) * sign, mods);
|
Chris@826
|
2355 }
|
Chris@826
|
2356
|
Chris@826
|
2357 void
|
Chris@826
|
2358 Pane::wheelHorizontalFine(int pixels, Qt::KeyboardModifiers)
|
Chris@826
|
2359 {
|
Chris@826
|
2360 cerr << "wheelHorizontalFine: pixels = " << pixels << endl;
|
Chris@826
|
2361
|
Chris@826
|
2362 // Scroll left or right by a fixed number of pixels
|
Chris@826
|
2363
|
gyorgyf@645
|
2364 if (getStartFrame() < 0 &&
|
gyorgyf@645
|
2365 getEndFrame() >= getModelsEndFrame()) return;
|
gyorgyf@645
|
2366
|
Chris@826
|
2367 int delta = (pixels * m_zoomLevel);
|
Chris@806
|
2368
|
Chris@806
|
2369 if (m_centreFrame < delta) {
|
gyorgyf@645
|
2370 setCentreFrame(0);
|
Chris@806
|
2371 } else if (m_centreFrame - delta >= getModelsEndFrame()) {
|
gyorgyf@645
|
2372 setCentreFrame(getModelsEndFrame());
|
gyorgyf@645
|
2373 } else {
|
gyorgyf@645
|
2374 setCentreFrame(m_centreFrame - delta);
|
gyorgyf@645
|
2375 }
|
Chris@127
|
2376
|
Chris@127
|
2377 emit paneInteractedWith();
|
Chris@127
|
2378 }
|
Chris@127
|
2379
|
Chris@132
|
2380 void
|
Chris@132
|
2381 Pane::horizontalThumbwheelMoved(int value)
|
Chris@132
|
2382 {
|
Chris@137
|
2383 //!!! dupe with updateHeadsUpDisplay
|
Chris@137
|
2384
|
Chris@132
|
2385 int count = 0;
|
Chris@132
|
2386 int level = 1;
|
Chris@137
|
2387
|
Chris@137
|
2388
|
Chris@137
|
2389 //!!! pull out into function (presumably in View)
|
Chris@137
|
2390 bool haveConstraint = false;
|
Chris@137
|
2391 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end();
|
Chris@137
|
2392 ++i) {
|
Chris@137
|
2393 if ((*i)->getZoomConstraint() && !(*i)->supportsOtherZoomLevels()) {
|
Chris@137
|
2394 haveConstraint = true;
|
Chris@137
|
2395 break;
|
Chris@137
|
2396 }
|
Chris@132
|
2397 }
|
Chris@132
|
2398
|
Chris@137
|
2399 if (haveConstraint) {
|
Chris@137
|
2400 while (true) {
|
Chris@137
|
2401 if (m_hthumb->getMaximumValue() - value == count) break;
|
Chris@137
|
2402 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@137
|
2403 ZoomConstraint::RoundUp);
|
Chris@137
|
2404 if (newLevel == level) break;
|
Chris@137
|
2405 level = newLevel;
|
Chris@137
|
2406 if (++count == 50) break;
|
Chris@137
|
2407 }
|
Chris@137
|
2408 } else {
|
Chris@137
|
2409 while (true) {
|
Chris@137
|
2410 if (m_hthumb->getMaximumValue() - value == count) break;
|
Chris@137
|
2411 int step = level / 10;
|
Chris@137
|
2412 int pwr = 0;
|
Chris@137
|
2413 while (step > 0) {
|
Chris@137
|
2414 ++pwr;
|
Chris@137
|
2415 step /= 2;
|
Chris@137
|
2416 }
|
Chris@137
|
2417 step = 1;
|
Chris@137
|
2418 while (pwr > 0) {
|
Chris@137
|
2419 step *= 2;
|
Chris@137
|
2420 --pwr;
|
Chris@137
|
2421 }
|
Chris@682
|
2422 // cerr << level << endl;
|
Chris@137
|
2423 level += step;
|
Chris@137
|
2424 if (++count == 100 || level > 262144) break;
|
Chris@137
|
2425 }
|
Chris@137
|
2426 }
|
Chris@137
|
2427
|
Chris@682
|
2428 // cerr << "new level is " << level << endl;
|
Chris@132
|
2429 setZoomLevel(level);
|
Chris@132
|
2430 }
|
Chris@132
|
2431
|
Chris@132
|
2432 void
|
Chris@132
|
2433 Pane::verticalThumbwheelMoved(int value)
|
Chris@132
|
2434 {
|
Chris@133
|
2435 Layer *layer = 0;
|
Chris@133
|
2436 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
2437 if (layer) {
|
Chris@133
|
2438 int defaultStep = 0;
|
Chris@133
|
2439 int max = layer->getVerticalZoomSteps(defaultStep);
|
Chris@133
|
2440 if (max == 0) {
|
Chris@133
|
2441 updateHeadsUpDisplay();
|
Chris@133
|
2442 return;
|
Chris@133
|
2443 }
|
Chris@133
|
2444 if (value > max) {
|
Chris@133
|
2445 value = max;
|
Chris@133
|
2446 }
|
Chris@133
|
2447 layer->setVerticalZoomStep(value);
|
Chris@174
|
2448 updateVerticalPanner();
|
Chris@133
|
2449 }
|
Chris@132
|
2450 }
|
Chris@132
|
2451
|
Chris@174
|
2452 void
|
Chris@806
|
2453 Pane::verticalPannerMoved(float , float y0, float , float h)
|
Chris@174
|
2454 {
|
Chris@174
|
2455 float vmin, vmax, dmin, dmax;
|
Chris@174
|
2456 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) return;
|
Chris@174
|
2457 float y1 = y0 + h;
|
Chris@174
|
2458 float newmax = vmin + ((1.0 - y0) * (vmax - vmin));
|
Chris@174
|
2459 float newmin = vmin + ((1.0 - y1) * (vmax - vmin));
|
Chris@682
|
2460 // cerr << "verticalPannerMoved: (" << x0 << "," << y0 << "," << w
|
Chris@682
|
2461 // << "," << h << ") -> (" << newmin << "," << newmax << ")" << endl;
|
Chris@174
|
2462 setTopLayerDisplayExtents(newmin, newmax);
|
Chris@174
|
2463 }
|
Chris@174
|
2464
|
Chris@188
|
2465 void
|
Chris@188
|
2466 Pane::editVerticalPannerExtents()
|
Chris@188
|
2467 {
|
Chris@188
|
2468 if (!m_vpan || !m_manager || !m_manager->getZoomWheelsEnabled()) return;
|
Chris@188
|
2469
|
Chris@188
|
2470 float vmin, vmax, dmin, dmax;
|
Chris@188
|
2471 QString unit;
|
Chris@188
|
2472 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax, &unit)
|
Chris@188
|
2473 || vmax == vmin) {
|
Chris@188
|
2474 return;
|
Chris@188
|
2475 }
|
Chris@188
|
2476
|
Chris@188
|
2477 RangeInputDialog dialog(tr("Enter new range"),
|
Chris@188
|
2478 tr("New vertical display range, from %1 to %2 %4:")
|
Chris@188
|
2479 .arg(vmin).arg(vmax).arg(unit),
|
Chris@188
|
2480 unit, vmin, vmax, this);
|
Chris@188
|
2481 dialog.setRange(dmin, dmax);
|
Chris@188
|
2482
|
Chris@188
|
2483 if (dialog.exec() == QDialog::Accepted) {
|
Chris@188
|
2484 dialog.getRange(dmin, dmax);
|
Chris@188
|
2485 setTopLayerDisplayExtents(dmin, dmax);
|
Chris@188
|
2486 updateVerticalPanner();
|
Chris@188
|
2487 }
|
Chris@188
|
2488 }
|
Chris@188
|
2489
|
Chris@312
|
2490 void
|
Chris@437
|
2491 Pane::layerParametersChanged()
|
Chris@437
|
2492 {
|
Chris@437
|
2493 View::layerParametersChanged();
|
Chris@437
|
2494 updateHeadsUpDisplay();
|
Chris@437
|
2495 }
|
Chris@437
|
2496
|
Chris@437
|
2497 void
|
Chris@312
|
2498 Pane::dragEnterEvent(QDragEnterEvent *e)
|
Chris@312
|
2499 {
|
Chris@312
|
2500 QStringList formats(e->mimeData()->formats());
|
Chris@682
|
2501 cerr << "dragEnterEvent: format: "
|
Chris@683
|
2502 << formats.join(",")
|
Chris@312
|
2503 << ", possibleActions: " << e->possibleActions()
|
Chris@682
|
2504 << ", proposedAction: " << e->proposedAction() << endl;
|
Chris@312
|
2505
|
Chris@616
|
2506 if (e->mimeData()->hasFormat("text/uri-list") ||
|
Chris@616
|
2507 e->mimeData()->hasFormat("text/plain")) {
|
Chris@312
|
2508
|
Chris@312
|
2509 if (e->proposedAction() & Qt::CopyAction) {
|
Chris@312
|
2510 e->acceptProposedAction();
|
Chris@312
|
2511 } else {
|
Chris@312
|
2512 e->setDropAction(Qt::CopyAction);
|
Chris@312
|
2513 e->accept();
|
Chris@312
|
2514 }
|
Chris@312
|
2515 }
|
Chris@312
|
2516 }
|
Chris@312
|
2517
|
Chris@312
|
2518 void
|
Chris@312
|
2519 Pane::dropEvent(QDropEvent *e)
|
Chris@312
|
2520 {
|
Chris@683
|
2521 cerr << "dropEvent: text: \"" << e->mimeData()->text()
|
Chris@682
|
2522 << "\"" << endl;
|
Chris@312
|
2523
|
Chris@616
|
2524 if (e->mimeData()->hasFormat("text/uri-list") ||
|
Chris@616
|
2525 e->mimeData()->hasFormat("text/plain")) {
|
Chris@312
|
2526
|
Chris@312
|
2527 if (e->proposedAction() & Qt::CopyAction) {
|
Chris@312
|
2528 e->acceptProposedAction();
|
Chris@312
|
2529 } else {
|
Chris@312
|
2530 e->setDropAction(Qt::CopyAction);
|
Chris@312
|
2531 e->accept();
|
Chris@312
|
2532 }
|
Chris@312
|
2533
|
Chris@616
|
2534 if (e->mimeData()->hasFormat("text/uri-list")) {
|
Chris@616
|
2535
|
Chris@616
|
2536 SVDEBUG << "accepting... data is \"" << e->mimeData()->data("text/uri-list").data() << "\"" << endl;
|
Chris@312
|
2537 emit dropAccepted(QString::fromLocal8Bit
|
Chris@616
|
2538 (e->mimeData()->data("text/uri-list").data())
|
Chris@312
|
2539 .split(QRegExp("[\\r\\n]+"),
|
Chris@312
|
2540 QString::SkipEmptyParts));
|
Chris@312
|
2541 } else {
|
Chris@312
|
2542 emit dropAccepted(QString::fromLocal8Bit
|
Chris@616
|
2543 (e->mimeData()->data("text/plain").data()));
|
Chris@312
|
2544 }
|
Chris@312
|
2545 }
|
Chris@312
|
2546 }
|
Chris@312
|
2547
|
Chris@127
|
2548 bool
|
Chris@127
|
2549 Pane::editSelectionStart(QMouseEvent *e)
|
Chris@127
|
2550 {
|
Chris@127
|
2551 if (!m_identifyFeatures ||
|
Chris@711
|
2552 !m_manager ||
|
Chris@711
|
2553 m_manager->getToolModeFor(this) != ViewManager::EditMode) {
|
Chris@711
|
2554 return false;
|
Chris@127
|
2555 }
|
Chris@127
|
2556
|
Chris@127
|
2557 bool closeToLeft, closeToRight;
|
Chris@127
|
2558 Selection s(getSelectionAt(e->x(), closeToLeft, closeToRight));
|
Chris@127
|
2559 if (s.isEmpty()) return false;
|
Chris@127
|
2560 m_editingSelection = s;
|
Chris@127
|
2561 m_editingSelectionEdge = (closeToLeft ? -1 : closeToRight ? 1 : 0);
|
Chris@127
|
2562 m_mousePos = e->pos();
|
Chris@127
|
2563 return true;
|
Chris@127
|
2564 }
|
Chris@127
|
2565
|
Chris@127
|
2566 bool
|
Chris@127
|
2567 Pane::editSelectionDrag(QMouseEvent *e)
|
Chris@127
|
2568 {
|
Chris@127
|
2569 if (m_editingSelection.isEmpty()) return false;
|
Chris@127
|
2570 m_mousePos = e->pos();
|
Chris@127
|
2571 update();
|
Chris@127
|
2572 return true;
|
Chris@127
|
2573 }
|
Chris@127
|
2574
|
Chris@127
|
2575 bool
|
Chris@248
|
2576 Pane::editSelectionEnd(QMouseEvent *)
|
Chris@127
|
2577 {
|
Chris@127
|
2578 if (m_editingSelection.isEmpty()) return false;
|
Chris@127
|
2579
|
Chris@127
|
2580 int offset = m_mousePos.x() - m_clickPos.x();
|
Chris@127
|
2581 Layer *layer = getSelectedLayer();
|
Chris@127
|
2582
|
Chris@127
|
2583 if (offset == 0 || !layer) {
|
Chris@716
|
2584 m_editingSelection = Selection();
|
Chris@716
|
2585 return true;
|
Chris@127
|
2586 }
|
Chris@127
|
2587
|
Chris@127
|
2588 int p0 = getXForFrame(m_editingSelection.getStartFrame()) + offset;
|
Chris@127
|
2589 int p1 = getXForFrame(m_editingSelection.getEndFrame()) + offset;
|
Chris@127
|
2590
|
Chris@806
|
2591 int f0 = getFrameForX(p0);
|
Chris@806
|
2592 int f1 = getFrameForX(p1);
|
Chris@127
|
2593
|
Chris@127
|
2594 Selection newSelection(f0, f1);
|
Chris@127
|
2595
|
Chris@127
|
2596 if (m_editingSelectionEdge == 0) {
|
gyorgyf@645
|
2597
|
Chris@127
|
2598 CommandHistory::getInstance()->startCompoundOperation
|
Chris@127
|
2599 (tr("Drag Selection"), true);
|
Chris@127
|
2600
|
Chris@716
|
2601 layer->moveSelection(m_editingSelection, f0);
|
gyorgyf@645
|
2602
|
Chris@127
|
2603 } else {
|
gyorgyf@645
|
2604
|
Chris@127
|
2605 CommandHistory::getInstance()->startCompoundOperation
|
Chris@127
|
2606 (tr("Resize Selection"), true);
|
Chris@127
|
2607
|
Chris@716
|
2608 if (m_editingSelectionEdge < 0) {
|
Chris@716
|
2609 f1 = m_editingSelection.getEndFrame();
|
Chris@716
|
2610 } else {
|
Chris@716
|
2611 f0 = m_editingSelection.getStartFrame();
|
Chris@716
|
2612 }
|
Chris@716
|
2613
|
Chris@716
|
2614 newSelection = Selection(f0, f1);
|
Chris@716
|
2615 layer->resizeSelection(m_editingSelection, newSelection);
|
Chris@127
|
2616 }
|
Chris@127
|
2617
|
Chris@127
|
2618 m_manager->removeSelection(m_editingSelection);
|
Chris@127
|
2619 m_manager->addSelection(newSelection);
|
Chris@127
|
2620
|
Chris@127
|
2621 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@127
|
2622
|
Chris@127
|
2623 m_editingSelection = Selection();
|
Chris@127
|
2624 return true;
|
Chris@127
|
2625 }
|
Chris@127
|
2626
|
Chris@127
|
2627 void
|
Chris@127
|
2628 Pane::toolModeChanged()
|
Chris@127
|
2629 {
|
Chris@711
|
2630 ViewManager::ToolMode mode = m_manager->getToolModeFor(this);
|
Chris@587
|
2631 // SVDEBUG << "Pane::toolModeChanged(" << mode << ")" << endl;
|
Chris@127
|
2632
|
Chris@267
|
2633 if (mode == ViewManager::MeasureMode && !m_measureCursor1) {
|
Chris@267
|
2634 m_measureCursor1 = new QCursor(QBitmap(":/icons/measure1cursor.xbm"),
|
Chris@267
|
2635 QBitmap(":/icons/measure1mask.xbm"),
|
Chris@267
|
2636 15, 14);
|
Chris@267
|
2637 m_measureCursor2 = new QCursor(QBitmap(":/icons/measure2cursor.xbm"),
|
Chris@267
|
2638 QBitmap(":/icons/measure2mask.xbm"),
|
Chris@267
|
2639 16, 17);
|
Chris@257
|
2640 }
|
Chris@257
|
2641
|
Chris@127
|
2642 switch (mode) {
|
Chris@127
|
2643
|
Chris@127
|
2644 case ViewManager::NavigateMode:
|
Chris@713
|
2645 setCursor(Qt::PointingHandCursor);
|
Chris@713
|
2646 break;
|
gyorgyf@645
|
2647
|
Chris@127
|
2648 case ViewManager::SelectMode:
|
Chris@713
|
2649 setCursor(Qt::ArrowCursor);
|
Chris@713
|
2650 break;
|
gyorgyf@645
|
2651
|
Chris@127
|
2652 case ViewManager::EditMode:
|
Chris@713
|
2653 setCursor(Qt::UpArrowCursor);
|
Chris@713
|
2654 break;
|
gyorgyf@645
|
2655
|
Chris@127
|
2656 case ViewManager::DrawMode:
|
Chris@713
|
2657 setCursor(Qt::CrossCursor);
|
Chris@713
|
2658 break;
|
gyorgyf@645
|
2659
|
Chris@335
|
2660 case ViewManager::EraseMode:
|
Chris@713
|
2661 setCursor(Qt::CrossCursor);
|
Chris@713
|
2662 break;
|
Chris@257
|
2663
|
Chris@257
|
2664 case ViewManager::MeasureMode:
|
Chris@267
|
2665 if (m_measureCursor1) setCursor(*m_measureCursor1);
|
Chris@713
|
2666 break;
|
Chris@713
|
2667
|
Chris@713
|
2668 // GF: NoteEditMode uses the same default cursor as EditMode, but it will change in a context sensitive manner.
|
gyorgyf@645
|
2669 case ViewManager::NoteEditMode:
|
Chris@713
|
2670 setCursor(Qt::UpArrowCursor);
|
Chris@713
|
2671 break;
|
gyorgyf@645
|
2672
|
gyorgyf@645
|
2673 /*
|
Chris@127
|
2674 case ViewManager::TextMode:
|
gyorgyf@645
|
2675 setCursor(Qt::IBeamCursor);
|
gyorgyf@645
|
2676 break;
|
Chris@127
|
2677 */
|
Chris@127
|
2678 }
|
Chris@127
|
2679 }
|
Chris@127
|
2680
|
Chris@133
|
2681 void
|
Chris@133
|
2682 Pane::zoomWheelsEnabledChanged()
|
Chris@133
|
2683 {
|
Chris@133
|
2684 updateHeadsUpDisplay();
|
Chris@133
|
2685 update();
|
Chris@133
|
2686 }
|
Chris@133
|
2687
|
Chris@133
|
2688 void
|
Chris@806
|
2689 Pane::viewZoomLevelChanged(View *v, int z, bool locked)
|
Chris@133
|
2690 {
|
Chris@682
|
2691 // cerr << "Pane[" << this << "]::zoomLevelChanged (global now "
|
Chris@682
|
2692 // << (m_manager ? m_manager->getGlobalZoom() : 0) << ")" << endl;
|
Chris@192
|
2693
|
Chris@224
|
2694 View::viewZoomLevelChanged(v, z, locked);
|
Chris@224
|
2695
|
Chris@232
|
2696 if (m_hthumb && !m_hthumb->isVisible()) return;
|
Chris@224
|
2697
|
Chris@222
|
2698 if (v != this) {
|
Chris@222
|
2699 if (!locked || !m_followZoom) return;
|
Chris@222
|
2700 }
|
Chris@222
|
2701
|
Chris@133
|
2702 if (m_manager && m_manager->getZoomWheelsEnabled()) {
|
Chris@133
|
2703 updateHeadsUpDisplay();
|
Chris@133
|
2704 }
|
Chris@133
|
2705 }
|
Chris@133
|
2706
|
Chris@133
|
2707 void
|
Chris@133
|
2708 Pane::propertyContainerSelected(View *v, PropertyContainer *pc)
|
Chris@133
|
2709 {
|
Chris@133
|
2710 Layer *layer = 0;
|
Chris@133
|
2711
|
Chris@133
|
2712 if (getLayerCount() > 0) {
|
Chris@133
|
2713 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
2714 disconnect(layer, SIGNAL(verticalZoomChanged()),
|
Chris@133
|
2715 this, SLOT(verticalZoomChanged()));
|
Chris@133
|
2716 }
|
Chris@133
|
2717
|
Chris@133
|
2718 View::propertyContainerSelected(v, pc);
|
Chris@133
|
2719 updateHeadsUpDisplay();
|
Chris@133
|
2720
|
Chris@187
|
2721 if (m_vthumb) {
|
Chris@187
|
2722 RangeMapper *rm = 0;
|
Chris@187
|
2723 if (layer) rm = layer->getNewVerticalZoomRangeMapper();
|
Chris@187
|
2724 if (rm) m_vthumb->setRangeMapper(rm);
|
Chris@187
|
2725 }
|
Chris@187
|
2726
|
Chris@133
|
2727 if (getLayerCount() > 0) {
|
Chris@133
|
2728 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
2729 connect(layer, SIGNAL(verticalZoomChanged()),
|
Chris@133
|
2730 this, SLOT(verticalZoomChanged()));
|
Chris@133
|
2731 }
|
Chris@133
|
2732 }
|
Chris@133
|
2733
|
Chris@133
|
2734 void
|
Chris@133
|
2735 Pane::verticalZoomChanged()
|
Chris@133
|
2736 {
|
Chris@133
|
2737 Layer *layer = 0;
|
Chris@133
|
2738
|
Chris@133
|
2739 if (getLayerCount() > 0) {
|
Chris@133
|
2740
|
Chris@133
|
2741 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
2742
|
Chris@133
|
2743 if (m_vthumb && m_vthumb->isVisible()) {
|
Chris@133
|
2744 m_vthumb->setValue(layer->getCurrentVerticalZoomStep());
|
Chris@133
|
2745 }
|
Chris@133
|
2746 }
|
Chris@133
|
2747 }
|
Chris@133
|
2748
|
Chris@189
|
2749 void
|
Chris@189
|
2750 Pane::updateContextHelp(const QPoint *pos)
|
Chris@189
|
2751 {
|
Chris@189
|
2752 QString help = "";
|
Chris@189
|
2753
|
Chris@189
|
2754 if (m_clickedInRange) {
|
Chris@189
|
2755 emit contextHelpChanged("");
|
Chris@189
|
2756 return;
|
Chris@189
|
2757 }
|
Chris@189
|
2758
|
Chris@189
|
2759 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@711
|
2760 if (m_manager) mode = m_manager->getToolModeFor(this);
|
Chris@189
|
2761
|
Chris@189
|
2762 bool editable = false;
|
Chris@189
|
2763 Layer *layer = getSelectedLayer();
|
Chris@189
|
2764 if (layer && layer->isLayerEditable()) {
|
Chris@189
|
2765 editable = true;
|
Chris@189
|
2766 }
|
Chris@189
|
2767
|
Chris@189
|
2768 if (mode == ViewManager::NavigateMode) {
|
Chris@189
|
2769
|
Chris@189
|
2770 help = tr("Click and drag to navigate");
|
Chris@189
|
2771
|
Chris@189
|
2772 } else if (mode == ViewManager::SelectMode) {
|
Chris@189
|
2773
|
Chris@217
|
2774 if (!hasTopLayerTimeXAxis()) return;
|
Chris@217
|
2775
|
Chris@189
|
2776 bool haveSelection = (m_manager && !m_manager->getSelections().empty());
|
Chris@189
|
2777
|
Chris@189
|
2778 if (haveSelection) {
|
Chris@597
|
2779 #ifdef Q_OS_MAC
|
Chris@597
|
2780 if (editable) {
|
Chris@597
|
2781 help = tr("Click and drag to select a range; hold Shift to avoid snapping to items; hold Cmd for multi-select; middle-click and drag to navigate");
|
Chris@597
|
2782 } else {
|
Chris@597
|
2783 help = tr("Click and drag to select a range; hold Cmd for multi-select; middle-click and drag to navigate");
|
Chris@597
|
2784 }
|
Chris@597
|
2785 #else
|
Chris@189
|
2786 if (editable) {
|
Chris@189
|
2787 help = tr("Click and drag to select a range; hold Shift to avoid snapping to items; hold Ctrl for multi-select; middle-click and drag to navigate");
|
Chris@189
|
2788 } else {
|
Chris@189
|
2789 help = tr("Click and drag to select a range; hold Ctrl for multi-select; middle-click and drag to navigate");
|
Chris@189
|
2790 }
|
Chris@597
|
2791 #endif
|
Chris@189
|
2792
|
Chris@189
|
2793 if (pos) {
|
Chris@189
|
2794 bool closeToLeft = false, closeToRight = false;
|
Chris@189
|
2795 Selection selection = getSelectionAt(pos->x(), closeToLeft, closeToRight);
|
Chris@189
|
2796 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
Chris@189
|
2797
|
Chris@189
|
2798 help = tr("Click and drag to move the selection boundary");
|
Chris@189
|
2799 }
|
Chris@189
|
2800 }
|
Chris@189
|
2801 } else {
|
Chris@189
|
2802 if (editable) {
|
Chris@189
|
2803 help = tr("Click and drag to select a range; hold Shift to avoid snapping to items; middle-click to navigate");
|
Chris@189
|
2804 } else {
|
Chris@189
|
2805 help = tr("Click and drag to select a range; middle-click and drag to navigate");
|
Chris@189
|
2806 }
|
Chris@189
|
2807 }
|
Chris@189
|
2808
|
Chris@189
|
2809 } else if (mode == ViewManager::DrawMode) {
|
Chris@189
|
2810
|
Chris@189
|
2811 //!!! could call through to a layer function to find out exact meaning
|
Chris@713
|
2812 if (editable) {
|
Chris@189
|
2813 help = tr("Click to add a new item in the active layer");
|
Chris@189
|
2814 }
|
Chris@335
|
2815
|
Chris@335
|
2816 } else if (mode == ViewManager::EraseMode) {
|
Chris@335
|
2817
|
Chris@335
|
2818 //!!! could call through to a layer function to find out exact meaning
|
Chris@713
|
2819 if (editable) {
|
Chris@335
|
2820 help = tr("Click to erase an item from the active layer");
|
Chris@335
|
2821 }
|
Chris@189
|
2822
|
Chris@189
|
2823 } else if (mode == ViewManager::EditMode) {
|
Chris@189
|
2824
|
Chris@189
|
2825 //!!! could call through to layer
|
Chris@713
|
2826 if (editable) {
|
Chris@551
|
2827 help = tr("Click and drag an item in the active layer to move it; hold Shift to override initial resistance");
|
Chris@189
|
2828 if (pos) {
|
Chris@189
|
2829 bool closeToLeft = false, closeToRight = false;
|
Chris@189
|
2830 Selection selection = getSelectionAt(pos->x(), closeToLeft, closeToRight);
|
Chris@189
|
2831 if (!selection.isEmpty()) {
|
Chris@189
|
2832 help = tr("Click and drag to move all items in the selected range");
|
Chris@189
|
2833 }
|
Chris@189
|
2834 }
|
Chris@189
|
2835 }
|
Chris@189
|
2836 }
|
Chris@189
|
2837
|
Chris@189
|
2838 emit contextHelpChanged(help);
|
Chris@189
|
2839 }
|
Chris@189
|
2840
|
Chris@189
|
2841 void
|
Chris@189
|
2842 Pane::mouseEnteredWidget()
|
Chris@189
|
2843 {
|
Chris@189
|
2844 QWidget *w = dynamic_cast<QWidget *>(sender());
|
Chris@189
|
2845 if (!w) return;
|
Chris@189
|
2846
|
Chris@189
|
2847 if (w == m_vpan) {
|
Chris@189
|
2848 emit contextHelpChanged(tr("Click and drag to adjust the visible range of the vertical scale"));
|
Chris@189
|
2849 } else if (w == m_vthumb) {
|
Chris@189
|
2850 emit contextHelpChanged(tr("Click and drag to adjust the vertical zoom level"));
|
Chris@189
|
2851 } else if (w == m_hthumb) {
|
Chris@189
|
2852 emit contextHelpChanged(tr("Click and drag to adjust the horizontal zoom level"));
|
Chris@189
|
2853 } else if (w == m_reset) {
|
Chris@189
|
2854 emit contextHelpChanged(tr("Reset horizontal and vertical zoom levels to their defaults"));
|
Chris@189
|
2855 }
|
Chris@189
|
2856 }
|
Chris@189
|
2857
|
Chris@189
|
2858 void
|
Chris@189
|
2859 Pane::mouseLeftWidget()
|
Chris@189
|
2860 {
|
Chris@189
|
2861 emit contextHelpChanged("");
|
Chris@189
|
2862 }
|
Chris@189
|
2863
|
Chris@316
|
2864 void
|
Chris@316
|
2865 Pane::toXml(QTextStream &stream,
|
Chris@316
|
2866 QString indent, QString extraAttributes) const
|
Chris@127
|
2867 {
|
Chris@316
|
2868 View::toXml
|
Chris@316
|
2869 (stream, indent,
|
gyorgyf@645
|
2870 QString("type=\"pane\" centreLineVisible=\"%1\" height=\"%2\" %3")
|
gyorgyf@645
|
2871 .arg(m_centreLineVisible).arg(height()).arg(extraAttributes));
|
Chris@127
|
2872 }
|
Chris@127
|
2873
|
Chris@127
|
2874
|