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