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