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@182
|
7 This file copyright 2006 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@127
|
23 #include "base/CommandHistory.h"
|
Chris@127
|
24 #include "layer/WaveformLayer.h"
|
Chris@127
|
25
|
Chris@127
|
26 #include <QPaintEvent>
|
Chris@127
|
27 #include <QPainter>
|
Chris@127
|
28 #include <iostream>
|
Chris@127
|
29 #include <cmath>
|
Chris@127
|
30
|
Chris@133
|
31 //!!! for HUD -- pull out into a separate class
|
Chris@133
|
32 #include <QFrame>
|
Chris@133
|
33 #include <QGridLayout>
|
Chris@133
|
34 #include <QPushButton>
|
Chris@133
|
35 #include "widgets/Thumbwheel.h"
|
Chris@172
|
36 #include "widgets/Panner.h"
|
Chris@188
|
37 #include "widgets/RangeInputDialog.h"
|
Chris@189
|
38 #include "widgets/NotifyingPushButton.h"
|
Chris@133
|
39
|
Chris@127
|
40 using std::cerr;
|
Chris@127
|
41 using std::endl;
|
Chris@127
|
42
|
Chris@127
|
43 Pane::Pane(QWidget *w) :
|
Chris@127
|
44 View(w, true),
|
Chris@127
|
45 m_identifyFeatures(false),
|
Chris@127
|
46 m_clickedInRange(false),
|
Chris@127
|
47 m_shiftPressed(false),
|
Chris@127
|
48 m_ctrlPressed(false),
|
Chris@127
|
49 m_navigating(false),
|
Chris@127
|
50 m_resizing(false),
|
Chris@133
|
51 m_centreLineVisible(true),
|
Chris@133
|
52 m_headsUpDisplay(0)
|
Chris@127
|
53 {
|
Chris@127
|
54 setObjectName("Pane");
|
Chris@127
|
55 setMouseTracking(true);
|
Chris@133
|
56
|
Chris@133
|
57 updateHeadsUpDisplay();
|
Chris@133
|
58 }
|
Chris@133
|
59
|
Chris@133
|
60 void
|
Chris@133
|
61 Pane::updateHeadsUpDisplay()
|
Chris@133
|
62 {
|
Chris@187
|
63 Profiler profiler("Pane::updateHeadsUpDisplay", true);
|
Chris@187
|
64
|
Chris@192
|
65 if (!isVisible()) return;
|
Chris@192
|
66
|
Chris@132
|
67 /*
|
Chris@132
|
68 int count = 0;
|
Chris@132
|
69 int currentLevel = 1;
|
Chris@132
|
70 int level = 1;
|
Chris@132
|
71 while (true) {
|
Chris@132
|
72 if (getZoomLevel() == level) currentLevel = count;
|
Chris@132
|
73 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@132
|
74 ZoomConstraint::RoundUp);
|
Chris@132
|
75 if (newLevel == level) break;
|
Chris@132
|
76 if (newLevel == 131072) break; //!!! just because
|
Chris@132
|
77 level = newLevel;
|
Chris@132
|
78 ++count;
|
Chris@132
|
79 }
|
Chris@132
|
80
|
Chris@132
|
81 std::cerr << "Have " << count+1 << " zoom levels" << std::endl;
|
Chris@132
|
82 */
|
Chris@133
|
83
|
Chris@188
|
84 Layer *layer = 0;
|
Chris@188
|
85 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@188
|
86
|
Chris@133
|
87 if (!m_headsUpDisplay) {
|
Chris@133
|
88
|
Chris@133
|
89 m_headsUpDisplay = new QFrame(this);
|
Chris@133
|
90
|
Chris@133
|
91 QGridLayout *layout = new QGridLayout;
|
Chris@133
|
92 layout->setMargin(0);
|
Chris@133
|
93 layout->setSpacing(0);
|
Chris@133
|
94 m_headsUpDisplay->setLayout(layout);
|
Chris@133
|
95
|
Chris@133
|
96 m_hthumb = new Thumbwheel(Qt::Horizontal);
|
Chris@187
|
97 m_hthumb->setObjectName(tr("Horizontal Zoom"));
|
Chris@173
|
98 layout->addWidget(m_hthumb, 1, 0, 1, 2);
|
Chris@133
|
99 m_hthumb->setFixedWidth(70);
|
Chris@133
|
100 m_hthumb->setFixedHeight(16);
|
Chris@133
|
101 m_hthumb->setDefaultValue(0);
|
Chris@165
|
102 m_hthumb->setSpeed(0.6);
|
Chris@133
|
103 connect(m_hthumb, SIGNAL(valueChanged(int)), this,
|
Chris@133
|
104 SLOT(horizontalThumbwheelMoved(int)));
|
Chris@189
|
105 connect(m_hthumb, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
106 connect(m_hthumb, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@172
|
107
|
Chris@172
|
108 m_vpan = new Panner;
|
Chris@172
|
109 layout->addWidget(m_vpan, 0, 1);
|
Chris@173
|
110 m_vpan->setFixedWidth(12);
|
Chris@172
|
111 m_vpan->setFixedHeight(70);
|
Chris@174
|
112 m_vpan->setAlpha(80, 130);
|
Chris@174
|
113 connect(m_vpan, SIGNAL(rectExtentsChanged(float, float, float, float)),
|
Chris@174
|
114 this, SLOT(verticalPannerMoved(float, float, float, float)));
|
Chris@188
|
115 connect(m_vpan, SIGNAL(doubleClicked()),
|
Chris@188
|
116 this, SLOT(editVerticalPannerExtents()));
|
Chris@189
|
117 connect(m_vpan, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
118 connect(m_vpan, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@172
|
119
|
Chris@133
|
120 m_vthumb = new Thumbwheel(Qt::Vertical);
|
Chris@187
|
121 m_vthumb->setObjectName(tr("Vertical Zoom"));
|
Chris@172
|
122 layout->addWidget(m_vthumb, 0, 2);
|
Chris@133
|
123 m_vthumb->setFixedWidth(16);
|
Chris@133
|
124 m_vthumb->setFixedHeight(70);
|
Chris@133
|
125 connect(m_vthumb, SIGNAL(valueChanged(int)), this,
|
Chris@133
|
126 SLOT(verticalThumbwheelMoved(int)));
|
Chris@189
|
127 connect(m_vthumb, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
128 connect(m_vthumb, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@133
|
129
|
Chris@188
|
130 if (layer) {
|
Chris@188
|
131 RangeMapper *rm = layer->getNewVerticalZoomRangeMapper();
|
Chris@188
|
132 if (rm) m_vthumb->setRangeMapper(rm);
|
Chris@188
|
133 }
|
Chris@188
|
134
|
Chris@189
|
135 m_reset = new NotifyingPushButton;
|
Chris@189
|
136 m_reset->setFixedHeight(16);
|
Chris@189
|
137 m_reset->setFixedWidth(16);
|
Chris@189
|
138 layout->addWidget(m_reset, 1, 2);
|
Chris@189
|
139 connect(m_reset, SIGNAL(clicked()), m_hthumb, SLOT(resetToDefault()));
|
Chris@189
|
140 connect(m_reset, SIGNAL(clicked()), m_vthumb, SLOT(resetToDefault()));
|
Chris@189
|
141 connect(m_reset, SIGNAL(clicked()), m_vpan, SLOT(resetToDefault()));
|
Chris@189
|
142 connect(m_reset, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
143 connect(m_reset, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@133
|
144 }
|
Chris@133
|
145
|
Chris@133
|
146 int count = 0;
|
Chris@133
|
147 int current = 0;
|
Chris@133
|
148 int level = 1;
|
Chris@133
|
149
|
Chris@137
|
150 //!!! pull out into function (presumably in View)
|
Chris@137
|
151 bool haveConstraint = false;
|
Chris@137
|
152 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end();
|
Chris@137
|
153 ++i) {
|
Chris@137
|
154 if ((*i)->getZoomConstraint() && !(*i)->supportsOtherZoomLevels()) {
|
Chris@137
|
155 haveConstraint = true;
|
Chris@137
|
156 break;
|
Chris@137
|
157 }
|
Chris@137
|
158 }
|
Chris@137
|
159
|
Chris@137
|
160 if (haveConstraint) {
|
Chris@137
|
161 while (true) {
|
Chris@137
|
162 if (getZoomLevel() == level) current = count;
|
Chris@137
|
163 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@137
|
164 ZoomConstraint::RoundUp);
|
Chris@137
|
165 if (newLevel == level) break;
|
Chris@137
|
166 level = newLevel;
|
Chris@137
|
167 if (++count == 50) break;
|
Chris@137
|
168 }
|
Chris@137
|
169 } else {
|
Chris@137
|
170 // if we have no particular constraints, we can really spread out
|
Chris@137
|
171 while (true) {
|
Chris@137
|
172 if (getZoomLevel() >= level) current = count;
|
Chris@137
|
173 int step = level / 10;
|
Chris@137
|
174 int pwr = 0;
|
Chris@137
|
175 while (step > 0) {
|
Chris@137
|
176 ++pwr;
|
Chris@137
|
177 step /= 2;
|
Chris@137
|
178 }
|
Chris@137
|
179 step = 1;
|
Chris@137
|
180 while (pwr > 0) {
|
Chris@137
|
181 step *= 2;
|
Chris@137
|
182 --pwr;
|
Chris@137
|
183 }
|
Chris@154
|
184 // std::cerr << level << std::endl;
|
Chris@137
|
185 level += step;
|
Chris@137
|
186 if (++count == 100 || level > 262144) break;
|
Chris@137
|
187 }
|
Chris@133
|
188 }
|
Chris@133
|
189
|
Chris@133
|
190 // std::cerr << "Have " << count << " zoom levels" << std::endl;
|
Chris@133
|
191
|
Chris@133
|
192 m_hthumb->setMinimumValue(0);
|
Chris@133
|
193 m_hthumb->setMaximumValue(count);
|
Chris@133
|
194 m_hthumb->setValue(count - current);
|
Chris@133
|
195
|
Chris@133
|
196 // std::cerr << "set value to " << count-current << std::endl;
|
Chris@133
|
197
|
Chris@133
|
198 // std::cerr << "default value is " << m_hthumb->getDefaultValue() << std::endl;
|
Chris@133
|
199
|
Chris@133
|
200 if (count != 50 && m_hthumb->getDefaultValue() == 0) {
|
Chris@133
|
201 m_hthumb->setDefaultValue(count - current);
|
Chris@133
|
202 // std::cerr << "set default value to " << m_hthumb->getDefaultValue() << std::endl;
|
Chris@133
|
203 }
|
Chris@133
|
204
|
Chris@204
|
205 bool haveVThumb = false;
|
Chris@204
|
206
|
Chris@133
|
207 if (layer) {
|
Chris@133
|
208 int defaultStep = 0;
|
Chris@133
|
209 int max = layer->getVerticalZoomSteps(defaultStep);
|
Chris@133
|
210 if (max == 0) {
|
Chris@133
|
211 m_vthumb->hide();
|
Chris@133
|
212 } else {
|
Chris@204
|
213 haveVThumb = true;
|
Chris@133
|
214 m_vthumb->show();
|
Chris@187
|
215 m_vthumb->blockSignals(true);
|
Chris@133
|
216 m_vthumb->setMinimumValue(0);
|
Chris@133
|
217 m_vthumb->setMaximumValue(max);
|
Chris@133
|
218 m_vthumb->setDefaultValue(defaultStep);
|
Chris@133
|
219 m_vthumb->setValue(layer->getCurrentVerticalZoomStep());
|
Chris@187
|
220 m_vthumb->blockSignals(false);
|
Chris@135
|
221
|
Chris@135
|
222 std::cerr << "Vertical thumbwheel: min 0, max " << max
|
Chris@135
|
223 << ", default " << defaultStep << ", value "
|
Chris@135
|
224 << m_vthumb->getValue() << std::endl;
|
Chris@135
|
225
|
Chris@133
|
226 }
|
Chris@133
|
227 }
|
Chris@133
|
228
|
Chris@174
|
229 updateVerticalPanner();
|
Chris@174
|
230
|
Chris@133
|
231 if (m_manager && m_manager->getZoomWheelsEnabled() &&
|
Chris@133
|
232 width() > 120 && height() > 100) {
|
Chris@165
|
233 if (!m_headsUpDisplay->isVisible()) {
|
Chris@165
|
234 m_headsUpDisplay->show();
|
Chris@165
|
235 connect(m_manager, SIGNAL(zoomLevelChanged()),
|
Chris@165
|
236 this, SLOT(zoomLevelChanged()));
|
Chris@165
|
237 }
|
Chris@204
|
238 if (haveVThumb) {
|
Chris@204
|
239 std::cerr << "vthumb is visible, moving to " << height() -86 << std::endl;
|
Chris@204
|
240 m_headsUpDisplay->setFixedHeight(m_vthumb->height() + m_hthumb->height());
|
Chris@133
|
241 m_headsUpDisplay->move(width() - 86, height() - 86);
|
Chris@133
|
242 } else {
|
Chris@204
|
243 std::cerr << "vthumb is invisible, moving to " << height() -51 << std::endl;
|
Chris@204
|
244 m_headsUpDisplay->setFixedHeight(m_hthumb->height());
|
Chris@204
|
245 m_headsUpDisplay->move(width() - 86, height() - 16);
|
Chris@133
|
246 }
|
Chris@133
|
247 } else {
|
Chris@133
|
248 m_headsUpDisplay->hide();
|
Chris@133
|
249 if (m_manager) {
|
Chris@133
|
250 disconnect(m_manager, SIGNAL(zoomLevelChanged()),
|
Chris@133
|
251 this, SLOT(zoomLevelChanged()));
|
Chris@133
|
252 }
|
Chris@133
|
253 }
|
Chris@127
|
254 }
|
Chris@127
|
255
|
Chris@174
|
256 void
|
Chris@174
|
257 Pane::updateVerticalPanner()
|
Chris@174
|
258 {
|
Chris@174
|
259 if (!m_vpan || !m_manager || !m_manager->getZoomWheelsEnabled()) return;
|
Chris@174
|
260
|
Chris@174
|
261 float vmin, vmax, dmin, dmax;
|
Chris@174
|
262 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax) && vmax != vmin) {
|
Chris@174
|
263 float y0 = (dmin - vmin) / (vmax - vmin);
|
Chris@174
|
264 float y1 = (dmax - vmin) / (vmax - vmin);
|
Chris@174
|
265 m_vpan->blockSignals(true);
|
Chris@174
|
266 m_vpan->setRectExtents(0, 1.0 - y1, 1, y1 - y0);
|
Chris@174
|
267 m_vpan->blockSignals(false);
|
Chris@174
|
268 m_vpan->show();
|
Chris@174
|
269 } else {
|
Chris@174
|
270 m_vpan->hide();
|
Chris@174
|
271 }
|
Chris@174
|
272 }
|
Chris@174
|
273
|
Chris@127
|
274 bool
|
Chris@127
|
275 Pane::shouldIlluminateLocalFeatures(const Layer *layer, QPoint &pos) const
|
Chris@127
|
276 {
|
Chris@127
|
277 QPoint discard;
|
Chris@127
|
278 bool b0, b1;
|
Chris@127
|
279
|
Chris@127
|
280 if (layer == getSelectedLayer() &&
|
Chris@127
|
281 !shouldIlluminateLocalSelection(discard, b0, b1)) {
|
Chris@127
|
282
|
Chris@127
|
283 pos = m_identifyPoint;
|
Chris@127
|
284 return m_identifyFeatures;
|
Chris@127
|
285 }
|
Chris@127
|
286
|
Chris@127
|
287 return false;
|
Chris@127
|
288 }
|
Chris@127
|
289
|
Chris@127
|
290 bool
|
Chris@127
|
291 Pane::shouldIlluminateLocalSelection(QPoint &pos,
|
Chris@127
|
292 bool &closeToLeft,
|
Chris@127
|
293 bool &closeToRight) const
|
Chris@127
|
294 {
|
Chris@127
|
295 if (m_identifyFeatures &&
|
Chris@127
|
296 m_manager &&
|
Chris@127
|
297 m_manager->getToolMode() == ViewManager::EditMode &&
|
Chris@127
|
298 !m_manager->getSelections().empty() &&
|
Chris@127
|
299 !selectionIsBeingEdited()) {
|
Chris@127
|
300
|
Chris@127
|
301 Selection s(getSelectionAt(m_identifyPoint.x(),
|
Chris@127
|
302 closeToLeft, closeToRight));
|
Chris@127
|
303
|
Chris@127
|
304 if (!s.isEmpty()) {
|
Chris@127
|
305 if (getSelectedLayer() && getSelectedLayer()->isLayerEditable()) {
|
Chris@127
|
306
|
Chris@127
|
307 pos = m_identifyPoint;
|
Chris@127
|
308 return true;
|
Chris@127
|
309 }
|
Chris@127
|
310 }
|
Chris@127
|
311 }
|
Chris@127
|
312
|
Chris@127
|
313 return false;
|
Chris@127
|
314 }
|
Chris@127
|
315
|
Chris@127
|
316 bool
|
Chris@127
|
317 Pane::selectionIsBeingEdited() const
|
Chris@127
|
318 {
|
Chris@127
|
319 if (!m_editingSelection.isEmpty()) {
|
Chris@127
|
320 if (m_mousePos != m_clickPos &&
|
Chris@127
|
321 getFrameForX(m_mousePos.x()) != getFrameForX(m_clickPos.x())) {
|
Chris@127
|
322 return true;
|
Chris@127
|
323 }
|
Chris@127
|
324 }
|
Chris@127
|
325 return false;
|
Chris@127
|
326 }
|
Chris@127
|
327
|
Chris@127
|
328 void
|
Chris@127
|
329 Pane::setCentreLineVisible(bool visible)
|
Chris@127
|
330 {
|
Chris@127
|
331 m_centreLineVisible = visible;
|
Chris@127
|
332 update();
|
Chris@127
|
333 }
|
Chris@127
|
334
|
Chris@127
|
335 void
|
Chris@127
|
336 Pane::paintEvent(QPaintEvent *e)
|
Chris@127
|
337 {
|
Chris@127
|
338 // Profiler profiler("Pane::paintEvent", true);
|
Chris@127
|
339
|
Chris@127
|
340 QPainter paint;
|
Chris@127
|
341
|
Chris@127
|
342 QRect r(rect());
|
Chris@127
|
343
|
Chris@127
|
344 if (e) {
|
Chris@127
|
345 r = e->rect();
|
Chris@127
|
346 }
|
Chris@127
|
347 /*
|
Chris@127
|
348 paint.begin(this);
|
Chris@127
|
349 paint.setClipRect(r);
|
Chris@127
|
350
|
Chris@127
|
351 if (hasLightBackground()) {
|
Chris@127
|
352 paint.setPen(Qt::white);
|
Chris@127
|
353 paint.setBrush(Qt::white);
|
Chris@127
|
354 } else {
|
Chris@127
|
355 paint.setPen(Qt::black);
|
Chris@127
|
356 paint.setBrush(Qt::black);
|
Chris@127
|
357 }
|
Chris@127
|
358 paint.drawRect(r);
|
Chris@127
|
359
|
Chris@127
|
360 paint.end();
|
Chris@127
|
361 */
|
Chris@127
|
362 View::paintEvent(e);
|
Chris@127
|
363
|
Chris@127
|
364 paint.begin(this);
|
Chris@127
|
365
|
Chris@127
|
366 if (e) {
|
Chris@127
|
367 paint.setClipRect(r);
|
Chris@127
|
368 }
|
Chris@127
|
369
|
Chris@127
|
370 const Model *waveformModel = 0; // just for reporting purposes
|
Chris@127
|
371 int verticalScaleWidth = 0;
|
Chris@127
|
372
|
Chris@127
|
373 int fontHeight = paint.fontMetrics().height();
|
Chris@127
|
374 int fontAscent = paint.fontMetrics().ascent();
|
Chris@127
|
375
|
Chris@127
|
376 if (m_manager &&
|
Chris@127
|
377 !m_manager->isPlaying() &&
|
Chris@127
|
378 m_manager->getToolMode() == ViewManager::SelectMode) {
|
Chris@127
|
379
|
Chris@127
|
380 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@127
|
381 --vi;
|
Chris@127
|
382
|
Chris@127
|
383 std::vector<QRect> crosshairExtents;
|
Chris@127
|
384
|
Chris@127
|
385 if ((*vi)->getCrosshairExtents(this, paint, m_identifyPoint,
|
Chris@127
|
386 crosshairExtents)) {
|
Chris@127
|
387 (*vi)->paintCrosshairs(this, paint, m_identifyPoint);
|
Chris@127
|
388 break;
|
Chris@127
|
389 } else if ((*vi)->isLayerOpaque()) {
|
Chris@127
|
390 break;
|
Chris@127
|
391 }
|
Chris@127
|
392 }
|
Chris@127
|
393 }
|
Chris@127
|
394
|
Chris@127
|
395 for (LayerList::iterator vi = m_layers.end(); vi != m_layers.begin(); ) {
|
Chris@127
|
396 --vi;
|
Chris@127
|
397
|
Chris@127
|
398 if (dynamic_cast<WaveformLayer *>(*vi)) {
|
Chris@127
|
399 waveformModel = (*vi)->getModel();
|
Chris@127
|
400 }
|
Chris@127
|
401
|
Chris@189
|
402 if (!m_manager || !m_manager->shouldShowVerticalScale()) {
|
Chris@127
|
403 break;
|
Chris@127
|
404 }
|
Chris@127
|
405
|
Chris@127
|
406 verticalScaleWidth = (*vi)->getVerticalScaleWidth(this, paint);
|
Chris@127
|
407
|
Chris@127
|
408 if (verticalScaleWidth > 0 && r.left() < verticalScaleWidth) {
|
Chris@127
|
409
|
Chris@127
|
410 // Profiler profiler("Pane::paintEvent - painting vertical scale", true);
|
Chris@127
|
411
|
Chris@127
|
412 // std::cerr << "Pane::paintEvent: calling paint.save() in vertical scale block" << std::endl;
|
Chris@127
|
413 paint.save();
|
Chris@127
|
414
|
Chris@127
|
415 paint.setPen(Qt::black);
|
Chris@127
|
416 paint.setBrush(Qt::white);
|
Chris@127
|
417 paint.drawRect(0, -1, verticalScaleWidth, height()+1);
|
Chris@127
|
418
|
Chris@127
|
419 paint.setBrush(Qt::NoBrush);
|
Chris@127
|
420 (*vi)->paintVerticalScale
|
Chris@127
|
421 (this, paint, QRect(0, 0, verticalScaleWidth, height()));
|
Chris@127
|
422
|
Chris@127
|
423 paint.restore();
|
Chris@127
|
424 }
|
Chris@127
|
425
|
Chris@127
|
426 if (m_identifyFeatures) {
|
Chris@127
|
427
|
Chris@127
|
428 QPoint pos = m_identifyPoint;
|
Chris@127
|
429 QString desc = (*vi)->getFeatureDescription(this, pos);
|
Chris@127
|
430
|
Chris@127
|
431 if (desc != "") {
|
Chris@127
|
432
|
Chris@127
|
433 paint.save();
|
Chris@127
|
434
|
Chris@127
|
435 int tabStop =
|
Chris@127
|
436 paint.fontMetrics().width(tr("Some lengthy prefix:"));
|
Chris@127
|
437
|
Chris@127
|
438 QRect boundingRect =
|
Chris@127
|
439 paint.fontMetrics().boundingRect
|
Chris@127
|
440 (rect(),
|
Chris@127
|
441 Qt::AlignRight | Qt::AlignTop | Qt::TextExpandTabs,
|
Chris@127
|
442 desc, tabStop);
|
Chris@127
|
443
|
Chris@127
|
444 if (hasLightBackground()) {
|
Chris@127
|
445 paint.setPen(Qt::NoPen);
|
Chris@127
|
446 paint.setBrush(QColor(250, 250, 250, 200));
|
Chris@127
|
447 } else {
|
Chris@127
|
448 paint.setPen(Qt::NoPen);
|
Chris@127
|
449 paint.setBrush(QColor(50, 50, 50, 200));
|
Chris@127
|
450 }
|
Chris@127
|
451
|
Chris@127
|
452 int extra = paint.fontMetrics().descent();
|
Chris@127
|
453 paint.drawRect(width() - boundingRect.width() - 10 - extra,
|
Chris@127
|
454 10 - extra,
|
Chris@127
|
455 boundingRect.width() + 2 * extra,
|
Chris@127
|
456 boundingRect.height() + extra);
|
Chris@127
|
457
|
Chris@127
|
458 if (hasLightBackground()) {
|
Chris@127
|
459 paint.setPen(QColor(150, 20, 0));
|
Chris@127
|
460 } else {
|
Chris@127
|
461 paint.setPen(QColor(255, 150, 100));
|
Chris@127
|
462 }
|
Chris@127
|
463
|
Chris@127
|
464 QTextOption option;
|
Chris@127
|
465 option.setWrapMode(QTextOption::NoWrap);
|
Chris@127
|
466 option.setAlignment(Qt::AlignRight | Qt::AlignTop);
|
Chris@127
|
467 option.setTabStop(tabStop);
|
Chris@127
|
468 paint.drawText(QRectF(width() - boundingRect.width() - 10, 10,
|
Chris@127
|
469 boundingRect.width(),
|
Chris@127
|
470 boundingRect.height()),
|
Chris@127
|
471 desc,
|
Chris@127
|
472 option);
|
Chris@127
|
473
|
Chris@127
|
474 paint.restore();
|
Chris@127
|
475 }
|
Chris@127
|
476 }
|
Chris@127
|
477
|
Chris@127
|
478 break;
|
Chris@127
|
479 }
|
Chris@127
|
480
|
Chris@127
|
481 int sampleRate = getModelsSampleRate();
|
Chris@127
|
482 paint.setBrush(Qt::NoBrush);
|
Chris@127
|
483
|
Chris@189
|
484 if (m_centreLineVisible &&
|
Chris@189
|
485 m_manager &&
|
Chris@189
|
486 m_manager->shouldShowCentreLine()) {
|
Chris@127
|
487
|
Chris@189
|
488 QColor c = QColor(0, 0, 0);
|
Chris@189
|
489 if (!hasLightBackground()) {
|
Chris@189
|
490 c = QColor(240, 240, 240);
|
Chris@189
|
491 }
|
Chris@189
|
492 paint.setPen(c);
|
Chris@189
|
493 int x = width() / 2 + 1;
|
Chris@189
|
494 paint.drawLine(x, 0, x, height() - 1);
|
Chris@189
|
495 paint.drawLine(x-1, 1, x+1, 1);
|
Chris@189
|
496 paint.drawLine(x-2, 0, x+2, 0);
|
Chris@189
|
497 paint.drawLine(x-1, height() - 2, x+1, height() - 2);
|
Chris@189
|
498 paint.drawLine(x-2, height() - 1, x+2, height() - 1);
|
Chris@127
|
499
|
Chris@127
|
500 paint.setPen(QColor(50, 50, 50));
|
Chris@127
|
501
|
Chris@127
|
502 int y = height() - fontHeight
|
Chris@127
|
503 + fontAscent - 6;
|
Chris@127
|
504
|
Chris@127
|
505 LayerList::iterator vi = m_layers.end();
|
Chris@127
|
506
|
Chris@127
|
507 if (vi != m_layers.begin()) {
|
Chris@127
|
508
|
Chris@127
|
509 switch ((*--vi)->getPreferredFrameCountPosition()) {
|
Chris@127
|
510
|
Chris@127
|
511 case Layer::PositionTop:
|
Chris@127
|
512 y = fontAscent + 6;
|
Chris@127
|
513 break;
|
Chris@127
|
514
|
Chris@127
|
515 case Layer::PositionMiddle:
|
Chris@127
|
516 y = (height() - fontHeight) / 2
|
Chris@127
|
517 + fontAscent;
|
Chris@127
|
518 break;
|
Chris@127
|
519
|
Chris@127
|
520 case Layer::PositionBottom:
|
Chris@127
|
521 // y already set correctly
|
Chris@127
|
522 break;
|
Chris@127
|
523 }
|
Chris@127
|
524 }
|
Chris@127
|
525
|
Chris@189
|
526 if (m_manager && m_manager->shouldShowFrameCount()) {
|
Chris@127
|
527
|
Chris@127
|
528 if (sampleRate) {
|
Chris@127
|
529
|
Chris@127
|
530 QString text(QString::fromStdString
|
Chris@127
|
531 (RealTime::frame2RealTime
|
Chris@127
|
532 (m_centreFrame, sampleRate).toText(true)));
|
Chris@127
|
533
|
Chris@127
|
534 int tw = paint.fontMetrics().width(text);
|
Chris@127
|
535 int x = width()/2 - 4 - tw;
|
Chris@127
|
536
|
Chris@127
|
537 drawVisibleText(paint, x, y, text, OutlinedText);
|
Chris@127
|
538 }
|
Chris@127
|
539
|
Chris@127
|
540 QString text = QString("%1").arg(m_centreFrame);
|
Chris@127
|
541
|
Chris@127
|
542 int tw = paint.fontMetrics().width(text);
|
Chris@127
|
543 int x = width()/2 + 4;
|
Chris@127
|
544
|
Chris@127
|
545 drawVisibleText(paint, x, y, text, OutlinedText);
|
Chris@127
|
546 }
|
Chris@127
|
547
|
Chris@127
|
548 } else {
|
Chris@127
|
549
|
Chris@127
|
550 paint.setPen(QColor(50, 50, 50));
|
Chris@127
|
551 }
|
Chris@127
|
552
|
Chris@127
|
553 if (waveformModel &&
|
Chris@127
|
554 m_manager &&
|
Chris@189
|
555 m_manager->shouldShowDuration() &&
|
Chris@127
|
556 r.y() + r.height() >= height() - fontHeight - 6) {
|
Chris@127
|
557
|
Chris@150
|
558 size_t modelRate = waveformModel->getSampleRate();
|
Chris@127
|
559 size_t mainModelRate = m_manager->getMainModelSampleRate();
|
Chris@127
|
560 size_t playbackRate = m_manager->getPlaybackSampleRate();
|
Chris@127
|
561
|
Chris@127
|
562 QString srNote = "";
|
Chris@127
|
563
|
Chris@127
|
564 // Show (R) for waveform models that will be resampled on
|
Chris@127
|
565 // playback, and (X) for waveform models that will be played
|
Chris@127
|
566 // at the wrong rate because their rate differs from that of
|
Chris@127
|
567 // the main model.
|
Chris@127
|
568
|
Chris@150
|
569 if (modelRate == mainModelRate) {
|
Chris@150
|
570 if (modelRate != playbackRate) srNote = " " + tr("(R)");
|
Chris@127
|
571 } else {
|
Chris@150
|
572 // std::cerr << "Sample rate = " << modelRate << ", main model rate = " << mainModelRate << std::endl;
|
Chris@127
|
573 srNote = " " + tr("(X)");
|
Chris@127
|
574 }
|
Chris@127
|
575
|
Chris@127
|
576 QString desc = tr("%1 / %2Hz%3")
|
Chris@127
|
577 .arg(RealTime::frame2RealTime(waveformModel->getEndFrame(),
|
Chris@127
|
578 sampleRate)
|
Chris@127
|
579 .toText(false).c_str())
|
Chris@150
|
580 .arg(modelRate)
|
Chris@127
|
581 .arg(srNote);
|
Chris@127
|
582
|
Chris@127
|
583 if (r.x() < verticalScaleWidth + 5 + paint.fontMetrics().width(desc)) {
|
Chris@127
|
584 drawVisibleText(paint, verticalScaleWidth + 5,
|
Chris@127
|
585 height() - fontHeight + fontAscent - 6,
|
Chris@127
|
586 desc, OutlinedText);
|
Chris@127
|
587 }
|
Chris@127
|
588 }
|
Chris@127
|
589
|
Chris@127
|
590 if (m_manager &&
|
Chris@189
|
591 m_manager->shouldShowLayerNames() &&
|
Chris@127
|
592 r.y() + r.height() >= height() - m_layers.size() * fontHeight - 6) {
|
Chris@127
|
593
|
Chris@127
|
594 std::vector<QString> texts;
|
Chris@127
|
595 int maxTextWidth = 0;
|
Chris@127
|
596
|
Chris@127
|
597 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
|
Chris@127
|
598
|
Chris@127
|
599 QString text = (*i)->getLayerPresentationName();
|
Chris@127
|
600 int tw = paint.fontMetrics().width(text);
|
Chris@127
|
601 bool reduced = false;
|
Chris@127
|
602 while (tw > width() / 3 && text.length() > 4) {
|
Chris@127
|
603 if (!reduced && text.length() > 8) {
|
Chris@127
|
604 text = text.left(text.length() - 4);
|
Chris@127
|
605 } else {
|
Chris@127
|
606 text = text.left(text.length() - 2);
|
Chris@127
|
607 }
|
Chris@127
|
608 reduced = true;
|
Chris@127
|
609 tw = paint.fontMetrics().width(text + "...");
|
Chris@127
|
610 }
|
Chris@127
|
611 if (reduced) {
|
Chris@127
|
612 texts.push_back(text + "...");
|
Chris@127
|
613 } else {
|
Chris@127
|
614 texts.push_back(text);
|
Chris@127
|
615 }
|
Chris@127
|
616 if (tw > maxTextWidth) maxTextWidth = tw;
|
Chris@127
|
617 }
|
Chris@127
|
618
|
Chris@127
|
619 int lly = height() - 6;
|
Chris@133
|
620 int llx = width() - maxTextWidth - 5;
|
Chris@127
|
621
|
Chris@133
|
622 if (m_manager->getZoomWheelsEnabled()) {
|
Chris@133
|
623 lly -= 20;
|
Chris@173
|
624 llx -= 36;
|
Chris@133
|
625 }
|
Chris@133
|
626
|
Chris@133
|
627 if (r.x() + r.width() >= llx) {
|
Chris@127
|
628
|
Chris@127
|
629 for (int i = 0; i < texts.size(); ++i) {
|
Chris@127
|
630
|
Chris@127
|
631 if (i == texts.size() - 1) {
|
Chris@127
|
632 paint.setPen(Qt::black);
|
Chris@127
|
633 }
|
Chris@127
|
634
|
Chris@133
|
635 drawVisibleText(paint, llx,
|
Chris@127
|
636 lly - fontHeight + fontAscent,
|
Chris@127
|
637 texts[i], OutlinedText);
|
Chris@127
|
638
|
Chris@127
|
639 lly -= fontHeight;
|
Chris@127
|
640 }
|
Chris@127
|
641 }
|
Chris@127
|
642 }
|
Chris@127
|
643
|
Chris@127
|
644 if (m_clickedInRange && m_shiftPressed) {
|
Chris@127
|
645 if (m_manager && (m_manager->getToolMode() == ViewManager::NavigateMode)) {
|
Chris@127
|
646 //!!! be nice if this looked a bit more in keeping with the
|
Chris@127
|
647 //selection block
|
Chris@127
|
648 paint.setPen(Qt::blue);
|
Chris@127
|
649 paint.drawRect(m_clickPos.x(), m_clickPos.y(),
|
Chris@127
|
650 m_mousePos.x() - m_clickPos.x(),
|
Chris@127
|
651 m_mousePos.y() - m_clickPos.y());
|
Chris@127
|
652 }
|
Chris@127
|
653 }
|
Chris@127
|
654
|
Chris@127
|
655 if (selectionIsBeingEdited()) {
|
Chris@127
|
656
|
Chris@127
|
657 int offset = m_mousePos.x() - m_clickPos.x();
|
Chris@127
|
658 int p0 = getXForFrame(m_editingSelection.getStartFrame()) + offset;
|
Chris@127
|
659 int p1 = getXForFrame(m_editingSelection.getEndFrame()) + offset;
|
Chris@127
|
660
|
Chris@127
|
661 if (m_editingSelectionEdge < 0) {
|
Chris@127
|
662 p1 = getXForFrame(m_editingSelection.getEndFrame());
|
Chris@127
|
663 } else if (m_editingSelectionEdge > 0) {
|
Chris@127
|
664 p0 = getXForFrame(m_editingSelection.getStartFrame());
|
Chris@127
|
665 }
|
Chris@127
|
666
|
Chris@127
|
667 paint.save();
|
Chris@127
|
668 if (hasLightBackground()) {
|
Chris@127
|
669 paint.setPen(QPen(Qt::black, 2));
|
Chris@127
|
670 } else {
|
Chris@127
|
671 paint.setPen(QPen(Qt::white, 2));
|
Chris@127
|
672 }
|
Chris@127
|
673
|
Chris@127
|
674 //!!! duplicating display policy with View::drawSelections
|
Chris@127
|
675
|
Chris@127
|
676 if (m_editingSelectionEdge < 0) {
|
Chris@127
|
677 paint.drawLine(p0, 1, p1, 1);
|
Chris@127
|
678 paint.drawLine(p0, 0, p0, height());
|
Chris@127
|
679 paint.drawLine(p0, height() - 1, p1, height() - 1);
|
Chris@127
|
680 } else if (m_editingSelectionEdge > 0) {
|
Chris@127
|
681 paint.drawLine(p0, 1, p1, 1);
|
Chris@127
|
682 paint.drawLine(p1, 0, p1, height());
|
Chris@127
|
683 paint.drawLine(p0, height() - 1, p1, height() - 1);
|
Chris@127
|
684 } else {
|
Chris@127
|
685 paint.setBrush(Qt::NoBrush);
|
Chris@127
|
686 paint.drawRect(p0, 1, p1 - p0, height() - 2);
|
Chris@127
|
687 }
|
Chris@127
|
688 paint.restore();
|
Chris@127
|
689 }
|
Chris@127
|
690
|
Chris@127
|
691 paint.end();
|
Chris@127
|
692 }
|
Chris@127
|
693
|
Chris@127
|
694 Selection
|
Chris@127
|
695 Pane::getSelectionAt(int x, bool &closeToLeftEdge, bool &closeToRightEdge) const
|
Chris@127
|
696 {
|
Chris@127
|
697 closeToLeftEdge = closeToRightEdge = false;
|
Chris@127
|
698
|
Chris@127
|
699 if (!m_manager) return Selection();
|
Chris@127
|
700
|
Chris@127
|
701 long testFrame = getFrameForX(x - 5);
|
Chris@127
|
702 if (testFrame < 0) {
|
Chris@127
|
703 testFrame = getFrameForX(x);
|
Chris@127
|
704 if (testFrame < 0) return Selection();
|
Chris@127
|
705 }
|
Chris@127
|
706
|
Chris@127
|
707 Selection selection = m_manager->getContainingSelection(testFrame, true);
|
Chris@127
|
708 if (selection.isEmpty()) return selection;
|
Chris@127
|
709
|
Chris@127
|
710 int lx = getXForFrame(selection.getStartFrame());
|
Chris@127
|
711 int rx = getXForFrame(selection.getEndFrame());
|
Chris@127
|
712
|
Chris@127
|
713 int fuzz = 2;
|
Chris@127
|
714 if (x < lx - fuzz || x > rx + fuzz) return Selection();
|
Chris@127
|
715
|
Chris@127
|
716 int width = rx - lx;
|
Chris@127
|
717 fuzz = 3;
|
Chris@127
|
718 if (width < 12) fuzz = width / 4;
|
Chris@127
|
719 if (fuzz < 1) fuzz = 1;
|
Chris@127
|
720
|
Chris@127
|
721 if (x < lx + fuzz) closeToLeftEdge = true;
|
Chris@127
|
722 if (x > rx - fuzz) closeToRightEdge = true;
|
Chris@127
|
723
|
Chris@127
|
724 return selection;
|
Chris@127
|
725 }
|
Chris@127
|
726
|
Chris@174
|
727 bool
|
Chris@174
|
728 Pane::canTopLayerMoveVertical()
|
Chris@174
|
729 {
|
Chris@174
|
730 float vmin, vmax, dmin, dmax;
|
Chris@174
|
731 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) return false;
|
Chris@174
|
732 if (dmin <= vmin && dmax >= vmax) return false;
|
Chris@174
|
733 return true;
|
Chris@174
|
734 }
|
Chris@174
|
735
|
Chris@174
|
736 bool
|
Chris@174
|
737 Pane::getTopLayerDisplayExtents(float &vmin, float &vmax,
|
Chris@188
|
738 float &dmin, float &dmax,
|
Chris@188
|
739 QString *unit)
|
Chris@174
|
740 {
|
Chris@174
|
741 Layer *layer = 0;
|
Chris@174
|
742 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@174
|
743 if (!layer) return false;
|
Chris@174
|
744 bool vlog;
|
Chris@174
|
745 QString vunit;
|
Chris@188
|
746 bool rv = (layer->getValueExtents(vmin, vmax, vlog, vunit) &&
|
Chris@188
|
747 layer->getDisplayExtents(dmin, dmax));
|
Chris@188
|
748 if (unit) *unit = vunit;
|
Chris@188
|
749 return rv;
|
Chris@174
|
750 }
|
Chris@174
|
751
|
Chris@174
|
752 bool
|
Chris@174
|
753 Pane::setTopLayerDisplayExtents(float dmin, float dmax)
|
Chris@174
|
754 {
|
Chris@174
|
755 Layer *layer = 0;
|
Chris@174
|
756 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@174
|
757 if (!layer) return false;
|
Chris@174
|
758 return layer->setDisplayExtents(dmin, dmax);
|
Chris@174
|
759 }
|
Chris@174
|
760
|
Chris@127
|
761 void
|
Chris@127
|
762 Pane::mousePressEvent(QMouseEvent *e)
|
Chris@127
|
763 {
|
Chris@127
|
764 if (e->buttons() & Qt::RightButton) {
|
Chris@189
|
765 emit contextHelpChanged("");
|
Chris@127
|
766 emit rightButtonMenuRequested(mapToGlobal(e->pos()));
|
Chris@127
|
767 return;
|
Chris@127
|
768 }
|
Chris@127
|
769
|
Chris@127
|
770 m_clickPos = e->pos();
|
Chris@127
|
771 m_clickedInRange = true;
|
Chris@127
|
772 m_editingSelection = Selection();
|
Chris@127
|
773 m_editingSelectionEdge = 0;
|
Chris@127
|
774 m_shiftPressed = (e->modifiers() & Qt::ShiftModifier);
|
Chris@127
|
775 m_ctrlPressed = (e->modifiers() & Qt::ControlModifier);
|
Chris@150
|
776 m_dragMode = UnresolvedDrag;
|
Chris@127
|
777
|
Chris@127
|
778 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@127
|
779 if (m_manager) mode = m_manager->getToolMode();
|
Chris@127
|
780
|
Chris@127
|
781 m_navigating = false;
|
Chris@127
|
782
|
Chris@127
|
783 if (mode == ViewManager::NavigateMode || (e->buttons() & Qt::MidButton)) {
|
Chris@127
|
784
|
Chris@127
|
785 if (mode != ViewManager::NavigateMode) {
|
Chris@127
|
786 setCursor(Qt::PointingHandCursor);
|
Chris@127
|
787 }
|
Chris@127
|
788
|
Chris@127
|
789 m_navigating = true;
|
Chris@127
|
790 m_dragCentreFrame = m_centreFrame;
|
Chris@136
|
791 m_dragStartMinValue = 0;
|
Chris@174
|
792
|
Chris@174
|
793 float vmin, vmax, dmin, dmax;
|
Chris@174
|
794 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) {
|
Chris@174
|
795 m_dragStartMinValue = dmin;
|
Chris@136
|
796 }
|
Chris@136
|
797
|
Chris@127
|
798 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
799
|
Chris@127
|
800 bool closeToLeft = false, closeToRight = false;
|
Chris@127
|
801 Selection selection = getSelectionAt(e->x(), closeToLeft, closeToRight);
|
Chris@127
|
802
|
Chris@127
|
803 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
Chris@127
|
804
|
Chris@127
|
805 m_manager->removeSelection(selection);
|
Chris@127
|
806
|
Chris@127
|
807 if (closeToLeft) {
|
Chris@127
|
808 m_selectionStartFrame = selection.getEndFrame();
|
Chris@127
|
809 } else {
|
Chris@127
|
810 m_selectionStartFrame = selection.getStartFrame();
|
Chris@127
|
811 }
|
Chris@127
|
812
|
Chris@127
|
813 m_manager->setInProgressSelection(selection, false);
|
Chris@127
|
814 m_resizing = true;
|
Chris@127
|
815
|
Chris@127
|
816 } else {
|
Chris@127
|
817
|
Chris@127
|
818 int mouseFrame = getFrameForX(e->x());
|
Chris@127
|
819 size_t resolution = 1;
|
Chris@127
|
820 int snapFrame = mouseFrame;
|
Chris@127
|
821
|
Chris@127
|
822 Layer *layer = getSelectedLayer();
|
Chris@127
|
823 if (layer && !m_shiftPressed) {
|
Chris@127
|
824 layer->snapToFeatureFrame(this, snapFrame,
|
Chris@127
|
825 resolution, Layer::SnapLeft);
|
Chris@127
|
826 }
|
Chris@127
|
827
|
Chris@127
|
828 if (snapFrame < 0) snapFrame = 0;
|
Chris@127
|
829 m_selectionStartFrame = snapFrame;
|
Chris@127
|
830 if (m_manager) {
|
Chris@127
|
831 m_manager->setInProgressSelection(Selection(snapFrame,
|
Chris@127
|
832 snapFrame + resolution),
|
Chris@127
|
833 !m_ctrlPressed);
|
Chris@127
|
834 }
|
Chris@127
|
835
|
Chris@127
|
836 m_resizing = false;
|
Chris@127
|
837 }
|
Chris@127
|
838
|
Chris@127
|
839 update();
|
Chris@127
|
840
|
Chris@127
|
841 } else if (mode == ViewManager::DrawMode) {
|
Chris@127
|
842
|
Chris@127
|
843 Layer *layer = getSelectedLayer();
|
Chris@127
|
844 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
845 layer->drawStart(this, e);
|
Chris@127
|
846 }
|
Chris@127
|
847
|
Chris@127
|
848 } else if (mode == ViewManager::EditMode) {
|
Chris@127
|
849
|
Chris@127
|
850 if (!editSelectionStart(e)) {
|
Chris@127
|
851 Layer *layer = getSelectedLayer();
|
Chris@127
|
852 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
853 layer->editStart(this, e);
|
Chris@127
|
854 }
|
Chris@127
|
855 }
|
Chris@127
|
856 }
|
Chris@127
|
857
|
Chris@127
|
858 emit paneInteractedWith();
|
Chris@127
|
859 }
|
Chris@127
|
860
|
Chris@127
|
861 void
|
Chris@127
|
862 Pane::mouseReleaseEvent(QMouseEvent *e)
|
Chris@127
|
863 {
|
Chris@127
|
864 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
865 return;
|
Chris@127
|
866 }
|
Chris@127
|
867
|
Chris@127
|
868 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@127
|
869 if (m_manager) mode = m_manager->getToolMode();
|
Chris@127
|
870
|
Chris@127
|
871 if (m_clickedInRange) {
|
Chris@127
|
872 mouseMoveEvent(e);
|
Chris@127
|
873 }
|
Chris@127
|
874
|
Chris@127
|
875 if (m_navigating || mode == ViewManager::NavigateMode) {
|
Chris@127
|
876
|
Chris@127
|
877 m_navigating = false;
|
Chris@127
|
878
|
Chris@127
|
879 if (mode != ViewManager::NavigateMode) {
|
Chris@127
|
880 // restore cursor
|
Chris@127
|
881 toolModeChanged();
|
Chris@127
|
882 }
|
Chris@127
|
883
|
Chris@127
|
884 if (m_shiftPressed) {
|
Chris@127
|
885
|
Chris@127
|
886 int x0 = std::min(m_clickPos.x(), m_mousePos.x());
|
Chris@127
|
887 int x1 = std::max(m_clickPos.x(), m_mousePos.x());
|
Chris@127
|
888
|
Chris@127
|
889 int y0 = std::min(m_clickPos.y(), m_mousePos.y());
|
Chris@127
|
890 int y1 = std::max(m_clickPos.y(), m_mousePos.y());
|
Chris@127
|
891
|
Chris@174
|
892 zoomToRegion(x0, y0, x1, y1);
|
Chris@127
|
893 }
|
Chris@127
|
894
|
Chris@127
|
895 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
896
|
Chris@127
|
897 if (m_manager && m_manager->haveInProgressSelection()) {
|
Chris@127
|
898
|
Chris@127
|
899 bool exclusive;
|
Chris@127
|
900 Selection selection = m_manager->getInProgressSelection(exclusive);
|
Chris@127
|
901
|
Chris@127
|
902 if (selection.getEndFrame() < selection.getStartFrame() + 2) {
|
Chris@127
|
903 selection = Selection();
|
Chris@127
|
904 }
|
Chris@127
|
905
|
Chris@127
|
906 m_manager->clearInProgressSelection();
|
Chris@127
|
907
|
Chris@127
|
908 if (exclusive) {
|
Chris@127
|
909 m_manager->setSelection(selection);
|
Chris@127
|
910 } else {
|
Chris@127
|
911 m_manager->addSelection(selection);
|
Chris@127
|
912 }
|
Chris@127
|
913 }
|
Chris@127
|
914
|
Chris@127
|
915 update();
|
Chris@127
|
916
|
Chris@127
|
917 } else if (mode == ViewManager::DrawMode) {
|
Chris@127
|
918
|
Chris@127
|
919 Layer *layer = getSelectedLayer();
|
Chris@127
|
920 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
921 layer->drawEnd(this, e);
|
Chris@127
|
922 update();
|
Chris@127
|
923 }
|
Chris@127
|
924
|
Chris@127
|
925 } else if (mode == ViewManager::EditMode) {
|
Chris@127
|
926
|
Chris@127
|
927 if (!editSelectionEnd(e)) {
|
Chris@127
|
928 Layer *layer = getSelectedLayer();
|
Chris@127
|
929 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
930 layer->editEnd(this, e);
|
Chris@127
|
931 update();
|
Chris@127
|
932 }
|
Chris@127
|
933 }
|
Chris@127
|
934 }
|
Chris@127
|
935
|
Chris@127
|
936 m_clickedInRange = false;
|
Chris@127
|
937
|
Chris@127
|
938 emit paneInteractedWith();
|
Chris@127
|
939 }
|
Chris@127
|
940
|
Chris@127
|
941 void
|
Chris@127
|
942 Pane::mouseMoveEvent(QMouseEvent *e)
|
Chris@127
|
943 {
|
Chris@127
|
944 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
945 return;
|
Chris@127
|
946 }
|
Chris@127
|
947
|
Chris@189
|
948 updateContextHelp(&e->pos());
|
Chris@189
|
949
|
Chris@127
|
950 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@127
|
951 if (m_manager) mode = m_manager->getToolMode();
|
Chris@127
|
952
|
Chris@127
|
953 QPoint prevPoint = m_identifyPoint;
|
Chris@127
|
954 m_identifyPoint = e->pos();
|
Chris@127
|
955
|
Chris@127
|
956 if (!m_clickedInRange) {
|
Chris@127
|
957
|
Chris@127
|
958 if (mode == ViewManager::SelectMode) {
|
Chris@127
|
959 bool closeToLeft = false, closeToRight = false;
|
Chris@127
|
960 getSelectionAt(e->x(), closeToLeft, closeToRight);
|
Chris@127
|
961 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
Chris@127
|
962 setCursor(Qt::SizeHorCursor);
|
Chris@127
|
963 } else {
|
Chris@127
|
964 setCursor(Qt::ArrowCursor);
|
Chris@127
|
965 }
|
Chris@127
|
966 }
|
Chris@127
|
967
|
Chris@127
|
968 if (!m_manager->isPlaying()) {
|
Chris@127
|
969
|
Chris@174
|
970 if (getSelectedLayer()) {
|
Chris@127
|
971
|
Chris@174
|
972 bool previouslyIdentifying = m_identifyFeatures;
|
Chris@174
|
973 m_identifyFeatures = true;
|
Chris@174
|
974
|
Chris@174
|
975 if (m_identifyFeatures != previouslyIdentifying ||
|
Chris@174
|
976 m_identifyPoint != prevPoint) {
|
Chris@174
|
977 update();
|
Chris@174
|
978 }
|
Chris@174
|
979 }
|
Chris@127
|
980 }
|
Chris@127
|
981
|
Chris@127
|
982 return;
|
Chris@127
|
983 }
|
Chris@127
|
984
|
Chris@127
|
985 if (m_navigating || mode == ViewManager::NavigateMode) {
|
Chris@127
|
986
|
Chris@127
|
987 if (m_shiftPressed) {
|
Chris@127
|
988
|
Chris@127
|
989 m_mousePos = e->pos();
|
Chris@127
|
990 update();
|
Chris@127
|
991
|
Chris@127
|
992 } else {
|
Chris@127
|
993
|
Chris@174
|
994 dragTopLayer(e);
|
Chris@150
|
995 }
|
Chris@127
|
996
|
Chris@127
|
997 } else if (mode == ViewManager::SelectMode) {
|
Chris@127
|
998
|
Chris@174
|
999 dragExtendSelection(e);
|
Chris@127
|
1000
|
Chris@127
|
1001 } else if (mode == ViewManager::DrawMode) {
|
Chris@127
|
1002
|
Chris@127
|
1003 Layer *layer = getSelectedLayer();
|
Chris@127
|
1004 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
1005 layer->drawDrag(this, e);
|
Chris@127
|
1006 }
|
Chris@127
|
1007
|
Chris@127
|
1008 } else if (mode == ViewManager::EditMode) {
|
Chris@127
|
1009
|
Chris@127
|
1010 if (!editSelectionDrag(e)) {
|
Chris@127
|
1011 Layer *layer = getSelectedLayer();
|
Chris@127
|
1012 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
1013 layer->editDrag(this, e);
|
Chris@127
|
1014 }
|
Chris@127
|
1015 }
|
Chris@127
|
1016 }
|
Chris@127
|
1017 }
|
Chris@127
|
1018
|
Chris@127
|
1019 void
|
Chris@174
|
1020 Pane::zoomToRegion(int x0, int y0, int x1, int y1)
|
Chris@174
|
1021 {
|
Chris@174
|
1022 int w = x1 - x0;
|
Chris@174
|
1023
|
Chris@174
|
1024 long newStartFrame = getFrameForX(x0);
|
Chris@174
|
1025
|
Chris@174
|
1026 long visibleFrames = getEndFrame() - getStartFrame();
|
Chris@174
|
1027 if (newStartFrame <= -visibleFrames) {
|
Chris@174
|
1028 newStartFrame = -visibleFrames + 1;
|
Chris@174
|
1029 }
|
Chris@174
|
1030
|
Chris@174
|
1031 if (newStartFrame >= long(getModelsEndFrame())) {
|
Chris@174
|
1032 newStartFrame = getModelsEndFrame() - 1;
|
Chris@174
|
1033 }
|
Chris@174
|
1034
|
Chris@174
|
1035 float ratio = float(w) / float(width());
|
Chris@174
|
1036 // std::cerr << "ratio: " << ratio << std::endl;
|
Chris@174
|
1037 size_t newZoomLevel = (size_t)nearbyint(m_zoomLevel * ratio);
|
Chris@174
|
1038 if (newZoomLevel < 1) newZoomLevel = 1;
|
Chris@174
|
1039
|
Chris@174
|
1040 // std::cerr << "start: " << m_startFrame << ", level " << m_zoomLevel << std::endl;
|
Chris@174
|
1041 setZoomLevel(getZoomConstraintBlockSize(newZoomLevel));
|
Chris@174
|
1042 setStartFrame(newStartFrame);
|
Chris@174
|
1043
|
Chris@174
|
1044 QString unit;
|
Chris@174
|
1045 float min, max;
|
Chris@174
|
1046 bool log;
|
Chris@174
|
1047 Layer *layer = 0;
|
Chris@174
|
1048 for (LayerList::const_iterator i = m_layers.begin();
|
Chris@174
|
1049 i != m_layers.end(); ++i) {
|
Chris@174
|
1050 if ((*i)->getValueExtents(min, max, log, unit) &&
|
Chris@174
|
1051 (*i)->getDisplayExtents(min, max)) {
|
Chris@174
|
1052 layer = *i;
|
Chris@174
|
1053 break;
|
Chris@174
|
1054 }
|
Chris@174
|
1055 }
|
Chris@174
|
1056
|
Chris@174
|
1057 if (layer) {
|
Chris@174
|
1058 if (log) {
|
Chris@174
|
1059 min = (min < 0.0) ? -log10f(-min) : (min == 0.0) ? 0.0 : log10f(min);
|
Chris@174
|
1060 max = (max < 0.0) ? -log10f(-max) : (max == 0.0) ? 0.0 : log10f(max);
|
Chris@174
|
1061 }
|
Chris@174
|
1062 float rmin = min + ((max - min) * (height() - y1)) / height();
|
Chris@174
|
1063 float rmax = min + ((max - min) * (height() - y0)) / height();
|
Chris@174
|
1064 std::cerr << "min: " << min << ", max: " << max << ", y0: " << y0 << ", y1: " << y1 << ", h: " << height() << ", rmin: " << rmin << ", rmax: " << rmax << std::endl;
|
Chris@174
|
1065 if (log) {
|
Chris@174
|
1066 rmin = powf(10, rmin);
|
Chris@174
|
1067 rmax = powf(10, rmax);
|
Chris@174
|
1068 }
|
Chris@174
|
1069 std::cerr << "finally: rmin: " << rmin << ", rmax: " << rmax << " " << unit.toStdString() << std::endl;
|
Chris@174
|
1070
|
Chris@174
|
1071 layer->setDisplayExtents(rmin, rmax);
|
Chris@174
|
1072 updateVerticalPanner();
|
Chris@174
|
1073 }
|
Chris@174
|
1074 }
|
Chris@174
|
1075
|
Chris@174
|
1076 void
|
Chris@174
|
1077 Pane::dragTopLayer(QMouseEvent *e)
|
Chris@174
|
1078 {
|
Chris@174
|
1079 // We need to avoid making it too easy to drag both
|
Chris@174
|
1080 // horizontally and vertically, in the case where the
|
Chris@174
|
1081 // mouse is moved "mostly" in horizontal or vertical axis
|
Chris@174
|
1082 // with only a small variation in the other axis. This is
|
Chris@174
|
1083 // particularly important during playback (when we want to
|
Chris@174
|
1084 // avoid small horizontal motions) or in slow refresh
|
Chris@174
|
1085 // layers like spectrogram (when we want to avoid small
|
Chris@174
|
1086 // vertical motions).
|
Chris@174
|
1087 //
|
Chris@174
|
1088 // To this end we have horizontal and vertical thresholds
|
Chris@174
|
1089 // and a series of states: unresolved, horizontally or
|
Chris@174
|
1090 // vertically constrained, free.
|
Chris@174
|
1091 //
|
Chris@174
|
1092 // When the mouse first moves, we're unresolved: we
|
Chris@174
|
1093 // restrict ourselves to whichever direction seems safest,
|
Chris@174
|
1094 // until the mouse has passed a small threshold distance
|
Chris@174
|
1095 // from the click point. Then we lock in to one of the
|
Chris@174
|
1096 // constrained modes, based on which axis that distance
|
Chris@174
|
1097 // was measured in first. Finally, if it turns out we've
|
Chris@174
|
1098 // also moved more than a certain larger distance in the
|
Chris@174
|
1099 // other direction as well, we may switch into free mode.
|
Chris@174
|
1100 //
|
Chris@174
|
1101 // If the top layer is incapable of being dragged
|
Chris@174
|
1102 // vertically, the logic is short circuited.
|
Chris@174
|
1103
|
Chris@174
|
1104 int xdiff = e->x() - m_clickPos.x();
|
Chris@174
|
1105 int ydiff = e->y() - m_clickPos.y();
|
Chris@174
|
1106 int smallThreshold = 10, bigThreshold = 50;
|
Chris@174
|
1107
|
Chris@174
|
1108 bool canMoveVertical = canTopLayerMoveVertical();
|
Chris@174
|
1109 bool canMoveHorizontal = true;
|
Chris@174
|
1110
|
Chris@174
|
1111 if (!canMoveHorizontal) {
|
Chris@174
|
1112 m_dragMode = HorizontalDrag;
|
Chris@174
|
1113 }
|
Chris@174
|
1114
|
Chris@174
|
1115 if (m_dragMode == UnresolvedDrag) {
|
Chris@174
|
1116
|
Chris@174
|
1117 if (abs(ydiff) > smallThreshold &&
|
Chris@174
|
1118 abs(ydiff) > abs(xdiff) * 2) {
|
Chris@174
|
1119 m_dragMode = VerticalDrag;
|
Chris@174
|
1120 } else if (abs(xdiff) > smallThreshold &&
|
Chris@174
|
1121 abs(xdiff) > abs(ydiff) * 2) {
|
Chris@174
|
1122 m_dragMode = HorizontalDrag;
|
Chris@174
|
1123 } else if (abs(xdiff) > smallThreshold &&
|
Chris@174
|
1124 abs(ydiff) > smallThreshold) {
|
Chris@174
|
1125 m_dragMode = FreeDrag;
|
Chris@174
|
1126 } else {
|
Chris@174
|
1127 // When playing, we don't want to disturb the play
|
Chris@174
|
1128 // position too easily; when not playing, we don't
|
Chris@174
|
1129 // want to move up/down too easily
|
Chris@174
|
1130 if (m_manager && m_manager->isPlaying()) {
|
Chris@174
|
1131 canMoveHorizontal = false;
|
Chris@174
|
1132 } else {
|
Chris@174
|
1133 canMoveVertical = false;
|
Chris@174
|
1134 }
|
Chris@174
|
1135 }
|
Chris@174
|
1136 }
|
Chris@174
|
1137
|
Chris@174
|
1138 if (m_dragMode == VerticalDrag) {
|
Chris@174
|
1139 if (abs(xdiff) > bigThreshold) m_dragMode = FreeDrag;
|
Chris@174
|
1140 else canMoveHorizontal = false;
|
Chris@174
|
1141 }
|
Chris@174
|
1142
|
Chris@174
|
1143 if (m_dragMode == HorizontalDrag && canMoveVertical) {
|
Chris@174
|
1144 if (abs(ydiff) > bigThreshold) m_dragMode = FreeDrag;
|
Chris@174
|
1145 else canMoveVertical = false;
|
Chris@174
|
1146 }
|
Chris@174
|
1147
|
Chris@174
|
1148 if (canMoveHorizontal) {
|
Chris@174
|
1149
|
Chris@174
|
1150 long frameOff = getFrameForX(e->x()) - getFrameForX(m_clickPos.x());
|
Chris@174
|
1151
|
Chris@174
|
1152 size_t newCentreFrame = m_dragCentreFrame;
|
Chris@174
|
1153
|
Chris@174
|
1154 if (frameOff < 0) {
|
Chris@174
|
1155 newCentreFrame -= frameOff;
|
Chris@174
|
1156 } else if (newCentreFrame >= size_t(frameOff)) {
|
Chris@174
|
1157 newCentreFrame -= frameOff;
|
Chris@174
|
1158 } else {
|
Chris@174
|
1159 newCentreFrame = 0;
|
Chris@174
|
1160 }
|
Chris@174
|
1161
|
Chris@174
|
1162 if (newCentreFrame >= getModelsEndFrame()) {
|
Chris@174
|
1163 newCentreFrame = getModelsEndFrame();
|
Chris@174
|
1164 if (newCentreFrame > 0) --newCentreFrame;
|
Chris@174
|
1165 }
|
Chris@174
|
1166
|
Chris@174
|
1167 if (getXForFrame(m_centreFrame) != getXForFrame(newCentreFrame)) {
|
Chris@174
|
1168 setCentreFrame(newCentreFrame);
|
Chris@174
|
1169 }
|
Chris@174
|
1170 }
|
Chris@174
|
1171
|
Chris@174
|
1172 if (canMoveVertical) {
|
Chris@174
|
1173
|
Chris@174
|
1174 float vmin = 0.f, vmax = 0.f;
|
Chris@174
|
1175 float dmin = 0.f, dmax = 0.f;
|
Chris@174
|
1176
|
Chris@174
|
1177 if (getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) {
|
Chris@174
|
1178
|
Chris@174
|
1179 std::cerr << "ydiff = " << ydiff << std::endl;
|
Chris@174
|
1180
|
Chris@174
|
1181 float perpix = (dmax - dmin) / height();
|
Chris@174
|
1182 float valdiff = ydiff * perpix;
|
Chris@174
|
1183 std::cerr << "valdiff = " << valdiff << std::endl;
|
Chris@174
|
1184
|
Chris@174
|
1185 float newmin = m_dragStartMinValue + valdiff;
|
Chris@174
|
1186 float newmax = m_dragStartMinValue + (dmax - dmin) + valdiff;
|
Chris@174
|
1187 if (newmin < vmin) {
|
Chris@174
|
1188 newmax += vmin - newmin;
|
Chris@174
|
1189 newmin += vmin - newmin;
|
Chris@174
|
1190 }
|
Chris@174
|
1191 if (newmax > vmax) {
|
Chris@174
|
1192 newmin -= newmax - vmax;
|
Chris@174
|
1193 newmax -= newmax - vmax;
|
Chris@174
|
1194 }
|
Chris@174
|
1195 std::cerr << "(" << dmin << ", " << dmax << ") -> ("
|
Chris@174
|
1196 << newmin << ", " << newmax << ") (drag start " << m_dragStartMinValue << ")" << std::endl;
|
Chris@174
|
1197
|
Chris@174
|
1198 setTopLayerDisplayExtents(newmin, newmax);
|
Chris@174
|
1199 updateVerticalPanner();
|
Chris@174
|
1200 }
|
Chris@174
|
1201 }
|
Chris@174
|
1202 }
|
Chris@174
|
1203
|
Chris@174
|
1204 void
|
Chris@174
|
1205 Pane::dragExtendSelection(QMouseEvent *e)
|
Chris@174
|
1206 {
|
Chris@174
|
1207 int mouseFrame = getFrameForX(e->x());
|
Chris@174
|
1208 size_t resolution = 1;
|
Chris@174
|
1209 int snapFrameLeft = mouseFrame;
|
Chris@174
|
1210 int snapFrameRight = mouseFrame;
|
Chris@174
|
1211
|
Chris@174
|
1212 Layer *layer = getSelectedLayer();
|
Chris@174
|
1213 if (layer && !m_shiftPressed) {
|
Chris@174
|
1214 layer->snapToFeatureFrame(this, snapFrameLeft,
|
Chris@174
|
1215 resolution, Layer::SnapLeft);
|
Chris@174
|
1216 layer->snapToFeatureFrame(this, snapFrameRight,
|
Chris@174
|
1217 resolution, Layer::SnapRight);
|
Chris@174
|
1218 }
|
Chris@174
|
1219
|
Chris@174
|
1220 // std::cerr << "snap: frame = " << mouseFrame << ", start frame = " << m_selectionStartFrame << ", left = " << snapFrameLeft << ", right = " << snapFrameRight << std::endl;
|
Chris@174
|
1221
|
Chris@174
|
1222 if (snapFrameLeft < 0) snapFrameLeft = 0;
|
Chris@174
|
1223 if (snapFrameRight < 0) snapFrameRight = 0;
|
Chris@174
|
1224
|
Chris@174
|
1225 size_t min, max;
|
Chris@174
|
1226
|
Chris@174
|
1227 if (m_selectionStartFrame > snapFrameLeft) {
|
Chris@174
|
1228 min = snapFrameLeft;
|
Chris@174
|
1229 max = m_selectionStartFrame;
|
Chris@174
|
1230 } else if (snapFrameRight > m_selectionStartFrame) {
|
Chris@174
|
1231 min = m_selectionStartFrame;
|
Chris@174
|
1232 max = snapFrameRight;
|
Chris@174
|
1233 } else {
|
Chris@174
|
1234 min = snapFrameLeft;
|
Chris@174
|
1235 max = snapFrameRight;
|
Chris@174
|
1236 }
|
Chris@174
|
1237
|
Chris@174
|
1238 if (m_manager) {
|
Chris@174
|
1239 m_manager->setInProgressSelection(Selection(min, max),
|
Chris@174
|
1240 !m_resizing && !m_ctrlPressed);
|
Chris@174
|
1241 }
|
Chris@174
|
1242
|
Chris@174
|
1243 bool doScroll = false;
|
Chris@174
|
1244 if (!m_manager) doScroll = true;
|
Chris@174
|
1245 if (!m_manager->isPlaying()) doScroll = true;
|
Chris@174
|
1246 if (m_followPlay != PlaybackScrollContinuous) doScroll = true;
|
Chris@174
|
1247
|
Chris@174
|
1248 if (doScroll) {
|
Chris@174
|
1249 int offset = mouseFrame - getStartFrame();
|
Chris@174
|
1250 int available = getEndFrame() - getStartFrame();
|
Chris@174
|
1251 if (offset >= available * 0.95) {
|
Chris@174
|
1252 int move = int(offset - available * 0.95) + 1;
|
Chris@174
|
1253 setCentreFrame(m_centreFrame + move);
|
Chris@174
|
1254 } else if (offset <= available * 0.10) {
|
Chris@174
|
1255 int move = int(available * 0.10 - offset) + 1;
|
Chris@174
|
1256 if (m_centreFrame > move) {
|
Chris@174
|
1257 setCentreFrame(m_centreFrame - move);
|
Chris@174
|
1258 } else {
|
Chris@174
|
1259 setCentreFrame(0);
|
Chris@174
|
1260 }
|
Chris@174
|
1261 }
|
Chris@174
|
1262 }
|
Chris@174
|
1263
|
Chris@174
|
1264 update();
|
Chris@174
|
1265 }
|
Chris@174
|
1266
|
Chris@174
|
1267 void
|
Chris@127
|
1268 Pane::mouseDoubleClickEvent(QMouseEvent *e)
|
Chris@127
|
1269 {
|
Chris@127
|
1270 if (e->buttons() & Qt::RightButton) {
|
Chris@127
|
1271 return;
|
Chris@127
|
1272 }
|
Chris@127
|
1273
|
Chris@127
|
1274 // std::cerr << "mouseDoubleClickEvent" << std::endl;
|
Chris@127
|
1275
|
Chris@127
|
1276 m_clickPos = e->pos();
|
Chris@127
|
1277 m_clickedInRange = true;
|
Chris@127
|
1278 m_shiftPressed = (e->modifiers() & Qt::ShiftModifier);
|
Chris@127
|
1279 m_ctrlPressed = (e->modifiers() & Qt::ControlModifier);
|
Chris@127
|
1280
|
Chris@127
|
1281 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@127
|
1282 if (m_manager) mode = m_manager->getToolMode();
|
Chris@127
|
1283
|
Chris@127
|
1284 if (mode == ViewManager::NavigateMode ||
|
Chris@127
|
1285 mode == ViewManager::EditMode) {
|
Chris@127
|
1286
|
Chris@127
|
1287 Layer *layer = getSelectedLayer();
|
Chris@127
|
1288 if (layer && layer->isLayerEditable()) {
|
Chris@127
|
1289 layer->editOpen(this, e);
|
Chris@127
|
1290 }
|
Chris@127
|
1291 }
|
Chris@127
|
1292 }
|
Chris@127
|
1293
|
Chris@127
|
1294 void
|
Chris@127
|
1295 Pane::leaveEvent(QEvent *)
|
Chris@127
|
1296 {
|
Chris@127
|
1297 bool previouslyIdentifying = m_identifyFeatures;
|
Chris@127
|
1298 m_identifyFeatures = false;
|
Chris@127
|
1299 if (previouslyIdentifying) update();
|
Chris@189
|
1300 emit contextHelpChanged("");
|
Chris@127
|
1301 }
|
Chris@127
|
1302
|
Chris@127
|
1303 void
|
Chris@133
|
1304 Pane::resizeEvent(QResizeEvent *)
|
Chris@133
|
1305 {
|
Chris@133
|
1306 updateHeadsUpDisplay();
|
Chris@133
|
1307 }
|
Chris@133
|
1308
|
Chris@133
|
1309 void
|
Chris@127
|
1310 Pane::wheelEvent(QWheelEvent *e)
|
Chris@127
|
1311 {
|
Chris@127
|
1312 //std::cerr << "wheelEvent, delta " << e->delta() << std::endl;
|
Chris@127
|
1313
|
Chris@127
|
1314 int count = e->delta();
|
Chris@127
|
1315
|
Chris@127
|
1316 if (count > 0) {
|
Chris@127
|
1317 if (count >= 120) count /= 120;
|
Chris@127
|
1318 else count = 1;
|
Chris@127
|
1319 }
|
Chris@127
|
1320
|
Chris@127
|
1321 if (count < 0) {
|
Chris@127
|
1322 if (count <= -120) count /= 120;
|
Chris@127
|
1323 else count = -1;
|
Chris@127
|
1324 }
|
Chris@127
|
1325
|
Chris@127
|
1326 if (e->modifiers() & Qt::ControlModifier) {
|
Chris@127
|
1327
|
Chris@127
|
1328 // Scroll left or right, rapidly
|
Chris@127
|
1329
|
Chris@127
|
1330 if (getStartFrame() < 0 &&
|
Chris@127
|
1331 getEndFrame() >= getModelsEndFrame()) return;
|
Chris@127
|
1332
|
Chris@127
|
1333 long delta = ((width() / 2) * count * m_zoomLevel);
|
Chris@127
|
1334
|
Chris@127
|
1335 if (int(m_centreFrame) < delta) {
|
Chris@127
|
1336 setCentreFrame(0);
|
Chris@127
|
1337 } else if (int(m_centreFrame) - delta >= int(getModelsEndFrame())) {
|
Chris@127
|
1338 setCentreFrame(getModelsEndFrame());
|
Chris@127
|
1339 } else {
|
Chris@127
|
1340 setCentreFrame(m_centreFrame - delta);
|
Chris@127
|
1341 }
|
Chris@127
|
1342
|
Chris@127
|
1343 } else {
|
Chris@127
|
1344
|
Chris@127
|
1345 // Zoom in or out
|
Chris@127
|
1346
|
Chris@127
|
1347 int newZoomLevel = m_zoomLevel;
|
Chris@127
|
1348
|
Chris@127
|
1349 while (count > 0) {
|
Chris@127
|
1350 if (newZoomLevel <= 2) {
|
Chris@127
|
1351 newZoomLevel = 1;
|
Chris@127
|
1352 break;
|
Chris@127
|
1353 }
|
Chris@127
|
1354 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel - 1,
|
Chris@127
|
1355 ZoomConstraint::RoundDown);
|
Chris@127
|
1356 --count;
|
Chris@127
|
1357 }
|
Chris@127
|
1358
|
Chris@127
|
1359 while (count < 0) {
|
Chris@127
|
1360 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel + 1,
|
Chris@127
|
1361 ZoomConstraint::RoundUp);
|
Chris@127
|
1362 ++count;
|
Chris@127
|
1363 }
|
Chris@127
|
1364
|
Chris@127
|
1365 if (newZoomLevel != m_zoomLevel) {
|
Chris@127
|
1366 setZoomLevel(newZoomLevel);
|
Chris@127
|
1367 }
|
Chris@127
|
1368 }
|
Chris@127
|
1369
|
Chris@127
|
1370 emit paneInteractedWith();
|
Chris@127
|
1371 }
|
Chris@127
|
1372
|
Chris@132
|
1373 void
|
Chris@132
|
1374 Pane::horizontalThumbwheelMoved(int value)
|
Chris@132
|
1375 {
|
Chris@137
|
1376 //!!! dupe with updateHeadsUpDisplay
|
Chris@137
|
1377
|
Chris@132
|
1378 int count = 0;
|
Chris@132
|
1379 int level = 1;
|
Chris@137
|
1380
|
Chris@137
|
1381
|
Chris@137
|
1382 //!!! pull out into function (presumably in View)
|
Chris@137
|
1383 bool haveConstraint = false;
|
Chris@137
|
1384 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end();
|
Chris@137
|
1385 ++i) {
|
Chris@137
|
1386 if ((*i)->getZoomConstraint() && !(*i)->supportsOtherZoomLevels()) {
|
Chris@137
|
1387 haveConstraint = true;
|
Chris@137
|
1388 break;
|
Chris@137
|
1389 }
|
Chris@132
|
1390 }
|
Chris@132
|
1391
|
Chris@137
|
1392 if (haveConstraint) {
|
Chris@137
|
1393 while (true) {
|
Chris@137
|
1394 if (m_hthumb->getMaximumValue() - value == count) break;
|
Chris@137
|
1395 int newLevel = getZoomConstraintBlockSize(level + 1,
|
Chris@137
|
1396 ZoomConstraint::RoundUp);
|
Chris@137
|
1397 if (newLevel == level) break;
|
Chris@137
|
1398 level = newLevel;
|
Chris@137
|
1399 if (++count == 50) break;
|
Chris@137
|
1400 }
|
Chris@137
|
1401 } else {
|
Chris@137
|
1402 while (true) {
|
Chris@137
|
1403 if (m_hthumb->getMaximumValue() - value == count) break;
|
Chris@137
|
1404 int step = level / 10;
|
Chris@137
|
1405 int pwr = 0;
|
Chris@137
|
1406 while (step > 0) {
|
Chris@137
|
1407 ++pwr;
|
Chris@137
|
1408 step /= 2;
|
Chris@137
|
1409 }
|
Chris@137
|
1410 step = 1;
|
Chris@137
|
1411 while (pwr > 0) {
|
Chris@137
|
1412 step *= 2;
|
Chris@137
|
1413 --pwr;
|
Chris@137
|
1414 }
|
Chris@137
|
1415 // std::cerr << level << std::endl;
|
Chris@137
|
1416 level += step;
|
Chris@137
|
1417 if (++count == 100 || level > 262144) break;
|
Chris@137
|
1418 }
|
Chris@137
|
1419 }
|
Chris@137
|
1420
|
Chris@137
|
1421 std::cerr << "new level is " << level << std::endl;
|
Chris@132
|
1422 setZoomLevel(level);
|
Chris@132
|
1423 }
|
Chris@132
|
1424
|
Chris@132
|
1425 void
|
Chris@132
|
1426 Pane::verticalThumbwheelMoved(int value)
|
Chris@132
|
1427 {
|
Chris@133
|
1428 Layer *layer = 0;
|
Chris@133
|
1429 if (getLayerCount() > 0) layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
1430 if (layer) {
|
Chris@133
|
1431 int defaultStep = 0;
|
Chris@133
|
1432 int max = layer->getVerticalZoomSteps(defaultStep);
|
Chris@133
|
1433 if (max == 0) {
|
Chris@133
|
1434 updateHeadsUpDisplay();
|
Chris@133
|
1435 return;
|
Chris@133
|
1436 }
|
Chris@133
|
1437 if (value > max) {
|
Chris@133
|
1438 value = max;
|
Chris@133
|
1439 }
|
Chris@133
|
1440 layer->setVerticalZoomStep(value);
|
Chris@174
|
1441 updateVerticalPanner();
|
Chris@133
|
1442 }
|
Chris@132
|
1443 }
|
Chris@132
|
1444
|
Chris@174
|
1445 void
|
Chris@174
|
1446 Pane::verticalPannerMoved(float x0, float y0, float w, float h)
|
Chris@174
|
1447 {
|
Chris@174
|
1448 float vmin, vmax, dmin, dmax;
|
Chris@174
|
1449 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax)) return;
|
Chris@174
|
1450 float y1 = y0 + h;
|
Chris@174
|
1451 float newmax = vmin + ((1.0 - y0) * (vmax - vmin));
|
Chris@174
|
1452 float newmin = vmin + ((1.0 - y1) * (vmax - vmin));
|
Chris@174
|
1453 std::cerr << "verticalPannerMoved: (" << x0 << "," << y0 << "," << w
|
Chris@174
|
1454 << "," << h << ") -> (" << newmin << "," << newmax << ")" << std::endl;
|
Chris@174
|
1455 setTopLayerDisplayExtents(newmin, newmax);
|
Chris@174
|
1456 }
|
Chris@174
|
1457
|
Chris@188
|
1458 void
|
Chris@188
|
1459 Pane::editVerticalPannerExtents()
|
Chris@188
|
1460 {
|
Chris@188
|
1461 if (!m_vpan || !m_manager || !m_manager->getZoomWheelsEnabled()) return;
|
Chris@188
|
1462
|
Chris@188
|
1463 float vmin, vmax, dmin, dmax;
|
Chris@188
|
1464 QString unit;
|
Chris@188
|
1465 if (!getTopLayerDisplayExtents(vmin, vmax, dmin, dmax, &unit)
|
Chris@188
|
1466 || vmax == vmin) {
|
Chris@188
|
1467 return;
|
Chris@188
|
1468 }
|
Chris@188
|
1469
|
Chris@188
|
1470 RangeInputDialog dialog(tr("Enter new range"),
|
Chris@188
|
1471 tr("New vertical display range, from %1 to %2 %4:")
|
Chris@188
|
1472 .arg(vmin).arg(vmax).arg(unit),
|
Chris@188
|
1473 unit, vmin, vmax, this);
|
Chris@188
|
1474 dialog.setRange(dmin, dmax);
|
Chris@188
|
1475
|
Chris@188
|
1476 if (dialog.exec() == QDialog::Accepted) {
|
Chris@188
|
1477 dialog.getRange(dmin, dmax);
|
Chris@188
|
1478 setTopLayerDisplayExtents(dmin, dmax);
|
Chris@188
|
1479 updateVerticalPanner();
|
Chris@188
|
1480 }
|
Chris@188
|
1481 }
|
Chris@188
|
1482
|
Chris@127
|
1483 bool
|
Chris@127
|
1484 Pane::editSelectionStart(QMouseEvent *e)
|
Chris@127
|
1485 {
|
Chris@127
|
1486 if (!m_identifyFeatures ||
|
Chris@127
|
1487 !m_manager ||
|
Chris@127
|
1488 m_manager->getToolMode() != ViewManager::EditMode) {
|
Chris@127
|
1489 return false;
|
Chris@127
|
1490 }
|
Chris@127
|
1491
|
Chris@127
|
1492 bool closeToLeft, closeToRight;
|
Chris@127
|
1493 Selection s(getSelectionAt(e->x(), closeToLeft, closeToRight));
|
Chris@127
|
1494 if (s.isEmpty()) return false;
|
Chris@127
|
1495 m_editingSelection = s;
|
Chris@127
|
1496 m_editingSelectionEdge = (closeToLeft ? -1 : closeToRight ? 1 : 0);
|
Chris@127
|
1497 m_mousePos = e->pos();
|
Chris@127
|
1498 return true;
|
Chris@127
|
1499 }
|
Chris@127
|
1500
|
Chris@127
|
1501 bool
|
Chris@127
|
1502 Pane::editSelectionDrag(QMouseEvent *e)
|
Chris@127
|
1503 {
|
Chris@127
|
1504 if (m_editingSelection.isEmpty()) return false;
|
Chris@127
|
1505 m_mousePos = e->pos();
|
Chris@127
|
1506 update();
|
Chris@127
|
1507 return true;
|
Chris@127
|
1508 }
|
Chris@127
|
1509
|
Chris@127
|
1510 bool
|
Chris@127
|
1511 Pane::editSelectionEnd(QMouseEvent *e)
|
Chris@127
|
1512 {
|
Chris@127
|
1513 if (m_editingSelection.isEmpty()) return false;
|
Chris@127
|
1514
|
Chris@127
|
1515 int offset = m_mousePos.x() - m_clickPos.x();
|
Chris@127
|
1516 Layer *layer = getSelectedLayer();
|
Chris@127
|
1517
|
Chris@127
|
1518 if (offset == 0 || !layer) {
|
Chris@127
|
1519 m_editingSelection = Selection();
|
Chris@127
|
1520 return true;
|
Chris@127
|
1521 }
|
Chris@127
|
1522
|
Chris@127
|
1523 int p0 = getXForFrame(m_editingSelection.getStartFrame()) + offset;
|
Chris@127
|
1524 int p1 = getXForFrame(m_editingSelection.getEndFrame()) + offset;
|
Chris@127
|
1525
|
Chris@127
|
1526 long f0 = getFrameForX(p0);
|
Chris@127
|
1527 long f1 = getFrameForX(p1);
|
Chris@127
|
1528
|
Chris@127
|
1529 Selection newSelection(f0, f1);
|
Chris@127
|
1530
|
Chris@127
|
1531 if (m_editingSelectionEdge == 0) {
|
Chris@127
|
1532
|
Chris@127
|
1533 CommandHistory::getInstance()->startCompoundOperation
|
Chris@127
|
1534 (tr("Drag Selection"), true);
|
Chris@127
|
1535
|
Chris@127
|
1536 layer->moveSelection(m_editingSelection, f0);
|
Chris@127
|
1537
|
Chris@127
|
1538 } else {
|
Chris@127
|
1539
|
Chris@127
|
1540 CommandHistory::getInstance()->startCompoundOperation
|
Chris@127
|
1541 (tr("Resize Selection"), true);
|
Chris@127
|
1542
|
Chris@127
|
1543 if (m_editingSelectionEdge < 0) {
|
Chris@127
|
1544 f1 = m_editingSelection.getEndFrame();
|
Chris@127
|
1545 } else {
|
Chris@127
|
1546 f0 = m_editingSelection.getStartFrame();
|
Chris@127
|
1547 }
|
Chris@127
|
1548
|
Chris@127
|
1549 newSelection = Selection(f0, f1);
|
Chris@127
|
1550 layer->resizeSelection(m_editingSelection, newSelection);
|
Chris@127
|
1551 }
|
Chris@127
|
1552
|
Chris@127
|
1553 m_manager->removeSelection(m_editingSelection);
|
Chris@127
|
1554 m_manager->addSelection(newSelection);
|
Chris@127
|
1555
|
Chris@127
|
1556 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@127
|
1557
|
Chris@127
|
1558 m_editingSelection = Selection();
|
Chris@127
|
1559 return true;
|
Chris@127
|
1560 }
|
Chris@127
|
1561
|
Chris@127
|
1562 void
|
Chris@127
|
1563 Pane::toolModeChanged()
|
Chris@127
|
1564 {
|
Chris@127
|
1565 ViewManager::ToolMode mode = m_manager->getToolMode();
|
Chris@127
|
1566 // std::cerr << "Pane::toolModeChanged(" << mode << ")" << std::endl;
|
Chris@127
|
1567
|
Chris@127
|
1568 switch (mode) {
|
Chris@127
|
1569
|
Chris@127
|
1570 case ViewManager::NavigateMode:
|
Chris@127
|
1571 setCursor(Qt::PointingHandCursor);
|
Chris@127
|
1572 break;
|
Chris@127
|
1573
|
Chris@127
|
1574 case ViewManager::SelectMode:
|
Chris@127
|
1575 setCursor(Qt::ArrowCursor);
|
Chris@127
|
1576 break;
|
Chris@127
|
1577
|
Chris@127
|
1578 case ViewManager::EditMode:
|
Chris@127
|
1579 setCursor(Qt::UpArrowCursor);
|
Chris@127
|
1580 break;
|
Chris@127
|
1581
|
Chris@127
|
1582 case ViewManager::DrawMode:
|
Chris@127
|
1583 setCursor(Qt::CrossCursor);
|
Chris@127
|
1584 break;
|
Chris@127
|
1585 /*
|
Chris@127
|
1586 case ViewManager::TextMode:
|
Chris@127
|
1587 setCursor(Qt::IBeamCursor);
|
Chris@127
|
1588 break;
|
Chris@127
|
1589 */
|
Chris@127
|
1590 }
|
Chris@127
|
1591 }
|
Chris@127
|
1592
|
Chris@133
|
1593 void
|
Chris@133
|
1594 Pane::zoomWheelsEnabledChanged()
|
Chris@133
|
1595 {
|
Chris@133
|
1596 updateHeadsUpDisplay();
|
Chris@133
|
1597 update();
|
Chris@133
|
1598 }
|
Chris@133
|
1599
|
Chris@133
|
1600 void
|
Chris@133
|
1601 Pane::zoomLevelChanged()
|
Chris@133
|
1602 {
|
Chris@192
|
1603 std::cerr << "Pane[" << this << "]::zoomLevelChanged (global now "
|
Chris@192
|
1604 << (m_manager ? m_manager->getGlobalZoom() : 0) << ")" << std::endl;
|
Chris@192
|
1605
|
Chris@133
|
1606 if (m_manager && m_manager->getZoomWheelsEnabled()) {
|
Chris@133
|
1607 updateHeadsUpDisplay();
|
Chris@133
|
1608 }
|
Chris@133
|
1609 }
|
Chris@133
|
1610
|
Chris@133
|
1611 void
|
Chris@133
|
1612 Pane::propertyContainerSelected(View *v, PropertyContainer *pc)
|
Chris@133
|
1613 {
|
Chris@133
|
1614 Layer *layer = 0;
|
Chris@133
|
1615
|
Chris@133
|
1616 if (getLayerCount() > 0) {
|
Chris@133
|
1617 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
1618 disconnect(layer, SIGNAL(verticalZoomChanged()),
|
Chris@133
|
1619 this, SLOT(verticalZoomChanged()));
|
Chris@133
|
1620 }
|
Chris@133
|
1621
|
Chris@133
|
1622 View::propertyContainerSelected(v, pc);
|
Chris@133
|
1623 updateHeadsUpDisplay();
|
Chris@133
|
1624
|
Chris@187
|
1625 if (m_vthumb) {
|
Chris@187
|
1626 RangeMapper *rm = 0;
|
Chris@187
|
1627 if (layer) rm = layer->getNewVerticalZoomRangeMapper();
|
Chris@187
|
1628 if (rm) m_vthumb->setRangeMapper(rm);
|
Chris@187
|
1629 }
|
Chris@187
|
1630
|
Chris@133
|
1631 if (getLayerCount() > 0) {
|
Chris@133
|
1632 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
1633 connect(layer, SIGNAL(verticalZoomChanged()),
|
Chris@133
|
1634 this, SLOT(verticalZoomChanged()));
|
Chris@133
|
1635 }
|
Chris@133
|
1636 }
|
Chris@133
|
1637
|
Chris@133
|
1638 void
|
Chris@133
|
1639 Pane::verticalZoomChanged()
|
Chris@133
|
1640 {
|
Chris@133
|
1641 Layer *layer = 0;
|
Chris@133
|
1642
|
Chris@133
|
1643 if (getLayerCount() > 0) {
|
Chris@133
|
1644
|
Chris@133
|
1645 layer = getLayer(getLayerCount() - 1);
|
Chris@133
|
1646
|
Chris@133
|
1647 if (m_vthumb && m_vthumb->isVisible()) {
|
Chris@133
|
1648 m_vthumb->setValue(layer->getCurrentVerticalZoomStep());
|
Chris@133
|
1649 }
|
Chris@133
|
1650 }
|
Chris@133
|
1651 }
|
Chris@133
|
1652
|
Chris@189
|
1653 void
|
Chris@189
|
1654 Pane::updateContextHelp(const QPoint *pos)
|
Chris@189
|
1655 {
|
Chris@189
|
1656 QString help = "";
|
Chris@189
|
1657
|
Chris@189
|
1658 if (m_clickedInRange) {
|
Chris@189
|
1659 emit contextHelpChanged("");
|
Chris@189
|
1660 return;
|
Chris@189
|
1661 }
|
Chris@189
|
1662
|
Chris@189
|
1663 ViewManager::ToolMode mode = ViewManager::NavigateMode;
|
Chris@189
|
1664 if (m_manager) mode = m_manager->getToolMode();
|
Chris@189
|
1665
|
Chris@189
|
1666 bool editable = false;
|
Chris@189
|
1667 Layer *layer = getSelectedLayer();
|
Chris@189
|
1668 if (layer && layer->isLayerEditable()) {
|
Chris@189
|
1669 editable = true;
|
Chris@189
|
1670 }
|
Chris@189
|
1671
|
Chris@189
|
1672 if (mode == ViewManager::NavigateMode) {
|
Chris@189
|
1673
|
Chris@189
|
1674 help = tr("Click and drag to navigate");
|
Chris@189
|
1675
|
Chris@189
|
1676 } else if (mode == ViewManager::SelectMode) {
|
Chris@189
|
1677
|
Chris@189
|
1678 bool haveSelection = (m_manager && !m_manager->getSelections().empty());
|
Chris@189
|
1679
|
Chris@189
|
1680 if (haveSelection) {
|
Chris@189
|
1681 if (editable) {
|
Chris@189
|
1682 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
|
1683 } else {
|
Chris@189
|
1684 help = tr("Click and drag to select a range; hold Ctrl for multi-select; middle-click and drag to navigate");
|
Chris@189
|
1685 }
|
Chris@189
|
1686
|
Chris@189
|
1687 if (pos) {
|
Chris@189
|
1688 bool closeToLeft = false, closeToRight = false;
|
Chris@189
|
1689 Selection selection = getSelectionAt(pos->x(), closeToLeft, closeToRight);
|
Chris@189
|
1690 if ((closeToLeft || closeToRight) && !(closeToLeft && closeToRight)) {
|
Chris@189
|
1691
|
Chris@189
|
1692 help = tr("Click and drag to move the selection boundary");
|
Chris@189
|
1693 }
|
Chris@189
|
1694 }
|
Chris@189
|
1695 } else {
|
Chris@189
|
1696 if (editable) {
|
Chris@189
|
1697 help = tr("Click and drag to select a range; hold Shift to avoid snapping to items; middle-click to navigate");
|
Chris@189
|
1698 } else {
|
Chris@189
|
1699 help = tr("Click and drag to select a range; middle-click and drag to navigate");
|
Chris@189
|
1700 }
|
Chris@189
|
1701 }
|
Chris@189
|
1702
|
Chris@189
|
1703 } else if (mode == ViewManager::DrawMode) {
|
Chris@189
|
1704
|
Chris@189
|
1705 //!!! could call through to a layer function to find out exact meaning
|
Chris@189
|
1706 if (editable) {
|
Chris@189
|
1707 help = tr("Click to add a new item in the active layer");
|
Chris@189
|
1708 }
|
Chris@189
|
1709
|
Chris@189
|
1710 } else if (mode == ViewManager::EditMode) {
|
Chris@189
|
1711
|
Chris@189
|
1712 //!!! could call through to layer
|
Chris@189
|
1713 if (editable) {
|
Chris@189
|
1714 help = tr("Click and drag an item in the active layer to move it");
|
Chris@189
|
1715 if (pos) {
|
Chris@189
|
1716 bool closeToLeft = false, closeToRight = false;
|
Chris@189
|
1717 Selection selection = getSelectionAt(pos->x(), closeToLeft, closeToRight);
|
Chris@189
|
1718 if (!selection.isEmpty()) {
|
Chris@189
|
1719 help = tr("Click and drag to move all items in the selected range");
|
Chris@189
|
1720 }
|
Chris@189
|
1721 }
|
Chris@189
|
1722 }
|
Chris@189
|
1723 }
|
Chris@189
|
1724
|
Chris@189
|
1725 emit contextHelpChanged(help);
|
Chris@189
|
1726 }
|
Chris@189
|
1727
|
Chris@189
|
1728 void
|
Chris@189
|
1729 Pane::mouseEnteredWidget()
|
Chris@189
|
1730 {
|
Chris@189
|
1731 QWidget *w = dynamic_cast<QWidget *>(sender());
|
Chris@189
|
1732 if (!w) return;
|
Chris@189
|
1733
|
Chris@189
|
1734 if (w == m_vpan) {
|
Chris@189
|
1735 emit contextHelpChanged(tr("Click and drag to adjust the visible range of the vertical scale"));
|
Chris@189
|
1736 } else if (w == m_vthumb) {
|
Chris@189
|
1737 emit contextHelpChanged(tr("Click and drag to adjust the vertical zoom level"));
|
Chris@189
|
1738 } else if (w == m_hthumb) {
|
Chris@189
|
1739 emit contextHelpChanged(tr("Click and drag to adjust the horizontal zoom level"));
|
Chris@189
|
1740 } else if (w == m_reset) {
|
Chris@189
|
1741 emit contextHelpChanged(tr("Reset horizontal and vertical zoom levels to their defaults"));
|
Chris@189
|
1742 }
|
Chris@189
|
1743 }
|
Chris@189
|
1744
|
Chris@189
|
1745 void
|
Chris@189
|
1746 Pane::mouseLeftWidget()
|
Chris@189
|
1747 {
|
Chris@189
|
1748 emit contextHelpChanged("");
|
Chris@189
|
1749 }
|
Chris@189
|
1750
|
Chris@127
|
1751 QString
|
Chris@127
|
1752 Pane::toXmlString(QString indent, QString extraAttributes) const
|
Chris@127
|
1753 {
|
Chris@127
|
1754 return View::toXmlString
|
Chris@127
|
1755 (indent,
|
Chris@127
|
1756 QString("type=\"pane\" centreLineVisible=\"%1\" height=\"%2\" %3")
|
Chris@127
|
1757 .arg(m_centreLineVisible).arg(height()).arg(extraAttributes));
|
Chris@127
|
1758 }
|
Chris@127
|
1759
|
Chris@127
|
1760
|
Chris@127
|
1761 #ifdef INCLUDE_MOCFILES
|
Chris@127
|
1762 #include "Pane.moc.cpp"
|
Chris@127
|
1763 #endif
|
Chris@127
|
1764
|