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