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@127
|
7 This file copyright 2006 Chris Cannam.
|
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 "View.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/Profiler.h"
|
Chris@278
|
21 #include "base/Pitch.h"
|
Chris@338
|
22 #include "base/Preferences.h"
|
Chris@1357
|
23 #include "base/HitCount.h"
|
Chris@919
|
24 #include "ViewProxy.h"
|
Chris@127
|
25
|
Chris@301
|
26 #include "layer/TimeRulerLayer.h"
|
Chris@287
|
27 #include "layer/SingleColourLayer.h"
|
Chris@1078
|
28 #include "layer/PaintAssistant.h"
|
Chris@1078
|
29
|
Chris@1354
|
30 #include "data/model/RelativelyFineZoomConstraint.h"
|
Chris@301
|
31 #include "data/model/RangeSummarisableTimeValueModel.h"
|
Chris@127
|
32
|
Chris@797
|
33 #include "widgets/IconLoader.h"
|
Chris@797
|
34
|
Chris@127
|
35 #include <QPainter>
|
Chris@127
|
36 #include <QPaintEvent>
|
Chris@127
|
37 #include <QRect>
|
Chris@127
|
38 #include <QApplication>
|
Chris@226
|
39 #include <QProgressDialog>
|
Chris@316
|
40 #include <QTextStream>
|
Chris@338
|
41 #include <QFont>
|
Chris@583
|
42 #include <QMessageBox>
|
Chris@797
|
43 #include <QPushButton>
|
Chris@956
|
44 #include <QSettings>
|
Chris@1202
|
45 #include <QSvgGenerator>
|
Chris@127
|
46
|
Chris@127
|
47 #include <iostream>
|
Chris@127
|
48 #include <cassert>
|
Chris@520
|
49 #include <cmath>
|
Chris@127
|
50
|
Chris@1352
|
51 //#define DEBUG_VIEW 1
|
Chris@1003
|
52 //#define DEBUG_VIEW_WIDGET_PAINT 1
|
Chris@1448
|
53 //#define DEBUG_PROGRESS_STUFF 1
|
Chris@127
|
54
|
Chris@127
|
55 View::View(QWidget *w, bool showProgress) :
|
Chris@127
|
56 QFrame(w),
|
Chris@1044
|
57 m_id(getNextId()),
|
Chris@127
|
58 m_centreFrame(0),
|
Chris@1326
|
59 m_zoomLevel(ZoomLevel::FramesPerPixel, 1024),
|
Chris@127
|
60 m_followPan(true),
|
Chris@127
|
61 m_followZoom(true),
|
Chris@815
|
62 m_followPlay(PlaybackScrollPageWithCentre),
|
Chris@789
|
63 m_followPlayIsDetached(false),
|
Chris@153
|
64 m_playPointerFrame(0),
|
Chris@127
|
65 m_showProgress(showProgress),
|
Chris@1408
|
66 m_cache(nullptr),
|
Chris@1408
|
67 m_buffer(nullptr),
|
Chris@1357
|
68 m_cacheValid(false),
|
Chris@127
|
69 m_cacheCentreFrame(0),
|
Chris@1326
|
70 m_cacheZoomLevel(ZoomLevel::FramesPerPixel, 1024),
|
Chris@127
|
71 m_selectionCached(false),
|
Chris@127
|
72 m_deleting(false),
|
Chris@127
|
73 m_haveSelectedLayer(false),
|
Chris@1408
|
74 m_manager(nullptr),
|
Chris@127
|
75 m_propertyContainer(new ViewPropertyContainer(this))
|
Chris@127
|
76 {
|
Chris@728
|
77 // cerr << "View::View(" << this << ")" << endl;
|
Chris@127
|
78 }
|
Chris@127
|
79
|
Chris@127
|
80 View::~View()
|
Chris@127
|
81 {
|
Chris@728
|
82 // cerr << "View::~View(" << this << ")" << endl;
|
Chris@127
|
83
|
Chris@127
|
84 m_deleting = true;
|
Chris@127
|
85 delete m_propertyContainer;
|
Chris@1215
|
86 delete m_cache;
|
Chris@1215
|
87 delete m_buffer;
|
Chris@127
|
88 }
|
Chris@127
|
89
|
Chris@127
|
90 PropertyContainer::PropertyList
|
Chris@127
|
91 View::getProperties() const
|
Chris@127
|
92 {
|
Chris@127
|
93 PropertyContainer::PropertyList list;
|
Chris@127
|
94 list.push_back("Global Scroll");
|
Chris@127
|
95 list.push_back("Global Zoom");
|
Chris@127
|
96 list.push_back("Follow Playback");
|
Chris@127
|
97 return list;
|
Chris@127
|
98 }
|
Chris@127
|
99
|
Chris@127
|
100 QString
|
Chris@127
|
101 View::getPropertyLabel(const PropertyName &pn) const
|
Chris@127
|
102 {
|
Chris@127
|
103 if (pn == "Global Scroll") return tr("Global Scroll");
|
Chris@127
|
104 if (pn == "Global Zoom") return tr("Global Zoom");
|
Chris@127
|
105 if (pn == "Follow Playback") return tr("Follow Playback");
|
Chris@127
|
106 return "";
|
Chris@127
|
107 }
|
Chris@127
|
108
|
Chris@127
|
109 PropertyContainer::PropertyType
|
Chris@127
|
110 View::getPropertyType(const PropertyContainer::PropertyName &name) const
|
Chris@127
|
111 {
|
Chris@127
|
112 if (name == "Global Scroll") return PropertyContainer::ToggleProperty;
|
Chris@127
|
113 if (name == "Global Zoom") return PropertyContainer::ToggleProperty;
|
Chris@127
|
114 if (name == "Follow Playback") return PropertyContainer::ValueProperty;
|
Chris@127
|
115 return PropertyContainer::InvalidProperty;
|
Chris@127
|
116 }
|
Chris@127
|
117
|
Chris@127
|
118 int
|
Chris@127
|
119 View::getPropertyRangeAndValue(const PropertyContainer::PropertyName &name,
|
Chris@1266
|
120 int *min, int *max, int *deflt) const
|
Chris@127
|
121 {
|
Chris@216
|
122 if (deflt) *deflt = 1;
|
Chris@127
|
123 if (name == "Global Scroll") return m_followPan;
|
Chris@127
|
124 if (name == "Global Zoom") return m_followZoom;
|
Chris@127
|
125 if (name == "Follow Playback") {
|
Chris@1266
|
126 if (min) *min = 0;
|
Chris@1266
|
127 if (max) *max = 2;
|
Chris@815
|
128 if (deflt) *deflt = int(PlaybackScrollPageWithCentre);
|
Chris@815
|
129 switch (m_followPlay) {
|
Chris@815
|
130 case PlaybackScrollContinuous: return 0;
|
Chris@815
|
131 case PlaybackScrollPageWithCentre: case PlaybackScrollPage: return 1;
|
Chris@815
|
132 case PlaybackIgnore: return 2;
|
Chris@815
|
133 }
|
Chris@127
|
134 }
|
Chris@127
|
135 if (min) *min = 0;
|
Chris@127
|
136 if (max) *max = 0;
|
Chris@216
|
137 if (deflt) *deflt = 0;
|
Chris@127
|
138 return 0;
|
Chris@127
|
139 }
|
Chris@127
|
140
|
Chris@127
|
141 QString
|
Chris@127
|
142 View::getPropertyValueLabel(const PropertyContainer::PropertyName &name,
|
Chris@1266
|
143 int value) const
|
Chris@127
|
144 {
|
Chris@127
|
145 if (name == "Follow Playback") {
|
Chris@1266
|
146 switch (value) {
|
Chris@1266
|
147 default:
|
Chris@1266
|
148 case 0: return tr("Scroll");
|
Chris@1266
|
149 case 1: return tr("Page");
|
Chris@1266
|
150 case 2: return tr("Off");
|
Chris@1266
|
151 }
|
Chris@127
|
152 }
|
Chris@127
|
153 return tr("<unknown>");
|
Chris@127
|
154 }
|
Chris@127
|
155
|
Chris@127
|
156 void
|
Chris@127
|
157 View::setProperty(const PropertyContainer::PropertyName &name, int value)
|
Chris@127
|
158 {
|
Chris@127
|
159 if (name == "Global Scroll") {
|
Chris@1266
|
160 setFollowGlobalPan(value != 0);
|
Chris@127
|
161 } else if (name == "Global Zoom") {
|
Chris@1266
|
162 setFollowGlobalZoom(value != 0);
|
Chris@127
|
163 } else if (name == "Follow Playback") {
|
Chris@1266
|
164 switch (value) {
|
Chris@1266
|
165 default:
|
Chris@1266
|
166 case 0: setPlaybackFollow(PlaybackScrollContinuous); break;
|
Chris@1266
|
167 case 1: setPlaybackFollow(PlaybackScrollPageWithCentre); break;
|
Chris@1266
|
168 case 2: setPlaybackFollow(PlaybackIgnore); break;
|
Chris@1266
|
169 }
|
Chris@127
|
170 }
|
Chris@127
|
171 }
|
Chris@127
|
172
|
Chris@806
|
173 int
|
Chris@127
|
174 View::getPropertyContainerCount() const
|
Chris@127
|
175 {
|
Chris@908
|
176 return int(m_fixedOrderLayers.size()) + 1; // the 1 is for me
|
Chris@127
|
177 }
|
Chris@127
|
178
|
Chris@127
|
179 const PropertyContainer *
|
Chris@806
|
180 View::getPropertyContainer(int i) const
|
Chris@127
|
181 {
|
Chris@127
|
182 return (const PropertyContainer *)(((View *)this)->
|
Chris@1266
|
183 getPropertyContainer(i));
|
Chris@127
|
184 }
|
Chris@127
|
185
|
Chris@127
|
186 PropertyContainer *
|
Chris@806
|
187 View::getPropertyContainer(int i)
|
Chris@127
|
188 {
|
Chris@127
|
189 if (i == 0) return m_propertyContainer;
|
Chris@837
|
190 return m_fixedOrderLayers[i-1];
|
Chris@127
|
191 }
|
Chris@127
|
192
|
Chris@127
|
193 bool
|
Chris@904
|
194 View::getValueExtents(QString unit, double &min, double &max, bool &log) const
|
Chris@127
|
195 {
|
Chris@127
|
196 bool have = false;
|
Chris@127
|
197
|
Chris@835
|
198 for (LayerList::const_iterator i = m_layerStack.begin();
|
Chris@835
|
199 i != m_layerStack.end(); ++i) {
|
Chris@127
|
200
|
Chris@127
|
201 QString layerUnit;
|
Chris@904
|
202 double layerMin = 0.0, layerMax = 0.0;
|
Chris@904
|
203 double displayMin = 0.0, displayMax = 0.0;
|
Chris@127
|
204 bool layerLog = false;
|
Chris@127
|
205
|
Chris@127
|
206 if ((*i)->getValueExtents(layerMin, layerMax, layerLog, layerUnit) &&
|
Chris@127
|
207 layerUnit.toLower() == unit.toLower()) {
|
Chris@127
|
208
|
Chris@127
|
209 if ((*i)->getDisplayExtents(displayMin, displayMax)) {
|
Chris@127
|
210
|
Chris@127
|
211 min = displayMin;
|
Chris@127
|
212 max = displayMax;
|
Chris@127
|
213 log = layerLog;
|
Chris@127
|
214 have = true;
|
Chris@127
|
215 break;
|
Chris@127
|
216
|
Chris@127
|
217 } else {
|
Chris@127
|
218
|
Chris@127
|
219 if (!have || layerMin < min) min = layerMin;
|
Chris@127
|
220 if (!have || layerMax > max) max = layerMax;
|
Chris@127
|
221 if (layerLog) log = true;
|
Chris@127
|
222 have = true;
|
Chris@127
|
223 }
|
Chris@127
|
224 }
|
Chris@127
|
225 }
|
Chris@127
|
226
|
Chris@127
|
227 return have;
|
Chris@127
|
228 }
|
Chris@127
|
229
|
Chris@127
|
230 int
|
Chris@127
|
231 View::getTextLabelHeight(const Layer *layer, QPainter &paint) const
|
Chris@127
|
232 {
|
Chris@127
|
233 std::map<int, Layer *> sortedLayers;
|
Chris@127
|
234
|
Chris@835
|
235 for (LayerList::const_iterator i = m_layerStack.begin();
|
Chris@835
|
236 i != m_layerStack.end(); ++i) {
|
Chris@127
|
237 if ((*i)->needsTextLabelHeight()) {
|
Chris@1439
|
238 sortedLayers[(*i)->getExportId()] = *i;
|
Chris@127
|
239 }
|
Chris@127
|
240 }
|
Chris@127
|
241
|
Chris@1402
|
242 int y = scalePixelSize(15) + paint.fontMetrics().ascent();
|
Chris@127
|
243
|
Chris@127
|
244 for (std::map<int, Layer *>::const_iterator i = sortedLayers.begin();
|
Chris@127
|
245 i != sortedLayers.end(); ++i) {
|
Chris@1273
|
246 if (i->second == layer) break;
|
Chris@127
|
247 y += paint.fontMetrics().height();
|
Chris@127
|
248 }
|
Chris@127
|
249
|
Chris@127
|
250 return y;
|
Chris@127
|
251 }
|
Chris@127
|
252
|
Chris@127
|
253 void
|
Chris@127
|
254 View::propertyContainerSelected(View *client, PropertyContainer *pc)
|
Chris@127
|
255 {
|
Chris@127
|
256 if (client != this) return;
|
Chris@127
|
257
|
Chris@127
|
258 if (pc == m_propertyContainer) {
|
Chris@1266
|
259 if (m_haveSelectedLayer) {
|
Chris@1266
|
260 m_haveSelectedLayer = false;
|
Chris@1266
|
261 update();
|
Chris@1266
|
262 }
|
Chris@1266
|
263 return;
|
Chris@127
|
264 }
|
Chris@127
|
265
|
Chris@1357
|
266 m_cacheValid = false;
|
Chris@127
|
267
|
Chris@1408
|
268 Layer *selectedLayer = nullptr;
|
Chris@127
|
269
|
Chris@835
|
270 for (LayerList::iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) {
|
Chris@1266
|
271 if (*i == pc) {
|
Chris@1266
|
272 selectedLayer = *i;
|
Chris@1266
|
273 m_layerStack.erase(i);
|
Chris@1266
|
274 break;
|
Chris@1266
|
275 }
|
Chris@127
|
276 }
|
Chris@127
|
277
|
Chris@127
|
278 if (selectedLayer) {
|
Chris@1266
|
279 m_haveSelectedLayer = true;
|
Chris@1266
|
280 m_layerStack.push_back(selectedLayer);
|
Chris@1266
|
281 update();
|
Chris@127
|
282 } else {
|
Chris@1266
|
283 m_haveSelectedLayer = false;
|
Chris@127
|
284 }
|
Chris@298
|
285
|
Chris@298
|
286 emit propertyContainerSelected(pc);
|
Chris@127
|
287 }
|
Chris@127
|
288
|
Chris@127
|
289 void
|
Chris@127
|
290 View::toolModeChanged()
|
Chris@127
|
291 {
|
Chris@587
|
292 // SVDEBUG << "View::toolModeChanged(" << m_manager->getToolMode() << ")" << endl;
|
Chris@127
|
293 }
|
Chris@127
|
294
|
Chris@133
|
295 void
|
Chris@133
|
296 View::overlayModeChanged()
|
Chris@133
|
297 {
|
Chris@1357
|
298 m_cacheValid = false;
|
Chris@133
|
299 update();
|
Chris@133
|
300 }
|
Chris@133
|
301
|
Chris@133
|
302 void
|
Chris@133
|
303 View::zoomWheelsEnabledChanged()
|
Chris@133
|
304 {
|
Chris@133
|
305 // subclass might override this
|
Chris@133
|
306 }
|
Chris@133
|
307
|
Chris@908
|
308 sv_frame_t
|
Chris@127
|
309 View::getStartFrame() const
|
Chris@127
|
310 {
|
Chris@313
|
311 return getFrameForX(0);
|
Chris@127
|
312 }
|
Chris@127
|
313
|
Chris@908
|
314 sv_frame_t
|
Chris@127
|
315 View::getEndFrame() const
|
Chris@127
|
316 {
|
Chris@127
|
317 return getFrameForX(width()) - 1;
|
Chris@127
|
318 }
|
Chris@127
|
319
|
Chris@127
|
320 void
|
Chris@908
|
321 View::setStartFrame(sv_frame_t f)
|
Chris@127
|
322 {
|
Chris@1326
|
323 setCentreFrame(f + sv_frame_t(round
|
Chris@1326
|
324 (m_zoomLevel.pixelsToFrames(width() / 2))));
|
Chris@127
|
325 }
|
Chris@127
|
326
|
Chris@127
|
327 bool
|
Chris@908
|
328 View::setCentreFrame(sv_frame_t f, bool e)
|
Chris@127
|
329 {
|
Chris@127
|
330 bool changeVisible = false;
|
Chris@127
|
331
|
Chris@1329
|
332 #ifdef DEBUG_VIEW
|
Chris@1329
|
333 SVCERR << "View::setCentreFrame: from " << m_centreFrame
|
Chris@1329
|
334 << " to " << f << endl;
|
Chris@1329
|
335 #endif
|
Chris@1329
|
336
|
Chris@127
|
337 if (m_centreFrame != f) {
|
Chris@127
|
338
|
Chris@1327
|
339 sv_frame_t formerCentre = m_centreFrame;
|
Chris@1266
|
340 m_centreFrame = f;
|
Chris@1266
|
341
|
Chris@1327
|
342 if (m_zoomLevel.zone == ZoomLevel::PixelsPerFrame) {
|
Chris@127
|
343
|
Chris@1363
|
344 #ifdef DEBUG_VIEW
|
Chris@1327
|
345 SVCERR << "View(" << this << ")::setCentreFrame: in PixelsPerFrame zone, so change must be visible" << endl;
|
Chris@127
|
346 #endif
|
Chris@1266
|
347 update();
|
Chris@1266
|
348 changeVisible = true;
|
Chris@1327
|
349
|
Chris@1327
|
350 } else {
|
Chris@1327
|
351
|
Chris@1327
|
352 int formerPixel = int(formerCentre / m_zoomLevel.level);
|
Chris@1327
|
353 int newPixel = int(m_centreFrame / m_zoomLevel.level);
|
Chris@1327
|
354
|
Chris@1327
|
355 if (newPixel != formerPixel) {
|
Chris@1327
|
356
|
Chris@1363
|
357 #ifdef DEBUG_VIEW
|
Chris@1327
|
358 SVCERR << "View(" << this << ")::setCentreFrame: newPixel " << newPixel << ", formerPixel " << formerPixel << endl;
|
Chris@1327
|
359 #endif
|
Chris@1329
|
360 // ensure the centre frame is a multiple of the zoom level
|
Chris@1329
|
361 m_centreFrame = sv_frame_t(newPixel) * m_zoomLevel.level;
|
Chris@1363
|
362
|
Chris@1363
|
363 #ifdef DEBUG_VIEW
|
Chris@1363
|
364 SVCERR << "View(" << this
|
Chris@1363
|
365 << ")::setCentreFrame: centre frame rounded to "
|
Chris@1363
|
366 << m_centreFrame << " (zoom level is "
|
Chris@1363
|
367 << m_zoomLevel.level << ")" << endl;
|
Chris@1363
|
368 #endif
|
Chris@1329
|
369
|
Chris@1327
|
370 update();
|
Chris@1327
|
371 changeVisible = true;
|
Chris@1327
|
372 }
|
Chris@1266
|
373 }
|
Chris@1266
|
374
|
Chris@1266
|
375 if (e) {
|
Chris@1363
|
376 sv_frame_t rf = alignToReference(m_centreFrame);
|
Chris@830
|
377 #ifdef DEBUG_VIEW
|
Chris@682
|
378 cerr << "View[" << this << "]::setCentreFrame(" << f
|
Chris@1363
|
379 << "): m_centreFrame = " << m_centreFrame
|
Chris@1363
|
380 << ", emitting centreFrameChanged with aligned frame "
|
Chris@1363
|
381 << rf << endl;
|
Chris@355
|
382 #endif
|
Chris@333
|
383 emit centreFrameChanged(rf, m_followPan, m_followPlay);
|
Chris@333
|
384 }
|
Chris@127
|
385 }
|
Chris@127
|
386
|
Chris@127
|
387 return changeVisible;
|
Chris@127
|
388 }
|
Chris@127
|
389
|
Chris@127
|
390 int
|
Chris@908
|
391 View::getXForFrame(sv_frame_t frame) const
|
Chris@127
|
392 {
|
Chris@1341
|
393 // In FramesPerPixel mode, the pixel should be the one "covering"
|
Chris@1341
|
394 // the given frame, i.e. to the "left" of it - not necessarily the
|
Chris@1341
|
395 // nearest boundary.
|
Chris@1341
|
396
|
Chris@1341
|
397 sv_frame_t level = m_zoomLevel.level;
|
Chris@1327
|
398 sv_frame_t fdiff = frame - getCentreFrame();
|
Chris@1375
|
399 int result = 0;
|
Chris@1375
|
400
|
Chris@1375
|
401 bool inRange = false;
|
Chris@1327
|
402 if (m_zoomLevel.zone == ZoomLevel::FramesPerPixel) {
|
Chris@1375
|
403 inRange = ((fdiff / level) < sv_frame_t(INT_MAX) &&
|
Chris@1375
|
404 (fdiff / level) > sv_frame_t(INT_MIN));
|
Chris@1375
|
405 } else {
|
Chris@1375
|
406 inRange = (fdiff < sv_frame_t(INT_MAX) / level &&
|
Chris@1375
|
407 fdiff > sv_frame_t(INT_MIN) / level);
|
Chris@1375
|
408 }
|
Chris@1375
|
409
|
Chris@1375
|
410 if (inRange) {
|
Chris@1375
|
411
|
Chris@1375
|
412 sv_frame_t adjusted;
|
Chris@1375
|
413
|
Chris@1375
|
414 if (m_zoomLevel.zone == ZoomLevel::FramesPerPixel) {
|
Chris@1375
|
415 adjusted = fdiff / level;
|
Chris@1375
|
416 if ((fdiff < 0) && ((fdiff % level) != 0)) {
|
Chris@1375
|
417 --adjusted; // round to the left
|
Chris@1375
|
418 }
|
Chris@1375
|
419 } else {
|
Chris@1375
|
420 adjusted = fdiff * level;
|
Chris@1341
|
421 }
|
Chris@1375
|
422
|
Chris@1375
|
423 adjusted = adjusted + (width()/2);
|
Chris@1375
|
424
|
Chris@1375
|
425 if (adjusted > INT_MAX || adjusted < INT_MIN) {
|
Chris@1375
|
426 inRange = false;
|
Chris@1375
|
427 } else {
|
Chris@1375
|
428 result = int(adjusted);
|
Chris@1375
|
429 }
|
Chris@1327
|
430 }
|
Chris@1327
|
431
|
Chris@1375
|
432 if (!inRange) {
|
Chris@1375
|
433 SVCERR << "ERROR: Frame " << frame
|
Chris@1375
|
434 << " is out of range in View::getXForFrame" << endl;
|
Chris@1375
|
435 SVCERR << "ERROR: (centre frame = " << getCentreFrame() << ", fdiff = "
|
Chris@1375
|
436 << fdiff << ", zoom level = " << m_zoomLevel << ")" << endl;
|
Chris@1375
|
437 SVCERR << "ERROR: This is a logic error: getXForFrame should not be "
|
Chris@1375
|
438 << "called for locations unadjacent to the current view"
|
Chris@1375
|
439 << endl;
|
Chris@1375
|
440 return 0;
|
Chris@1375
|
441 }
|
Chris@1375
|
442
|
Chris@1341
|
443 return result;
|
Chris@127
|
444 }
|
Chris@127
|
445
|
Chris@908
|
446 sv_frame_t
|
Chris@127
|
447 View::getFrameForX(int x) const
|
Chris@127
|
448 {
|
Chris@1330
|
449 // Note, this must always return a value that is on a zoom-level
|
Chris@1330
|
450 // boundary - regardless of whether the nominal centre frame is on
|
Chris@1341
|
451 // such a boundary or not.
|
Chris@1341
|
452
|
Chris@1341
|
453 // In PixelsPerFrame mode, the frame should be the one immediately
|
Chris@1341
|
454 // left of the given pixel, not necessarily the nearest.
|
Chris@1330
|
455
|
Chris@1327
|
456 int diff = x - (width()/2);
|
Chris@1330
|
457 sv_frame_t level = m_zoomLevel.level;
|
Chris@1330
|
458 sv_frame_t fdiff, result;
|
Chris@1330
|
459
|
Chris@1327
|
460 if (m_zoomLevel.zone == ZoomLevel::FramesPerPixel) {
|
Chris@1330
|
461 fdiff = diff * level;
|
Chris@1330
|
462 result = ((fdiff + m_centreFrame) / level) * level;
|
Chris@1327
|
463 } else {
|
Chris@1330
|
464 fdiff = diff / level;
|
Chris@1341
|
465 if ((diff < 0) && ((diff % level) != 0)) {
|
Chris@1341
|
466 --fdiff; // round to the left
|
Chris@1341
|
467 }
|
Chris@1330
|
468 result = fdiff + m_centreFrame;
|
Chris@1327
|
469 }
|
Chris@1341
|
470
|
Chris@1363
|
471 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1330
|
472 if (x == 0) {
|
Chris@1330
|
473 SVCERR << "getFrameForX(" << x << "): diff = " << diff << ", fdiff = "
|
Chris@1330
|
474 << fdiff << ", m_centreFrame = " << m_centreFrame
|
Chris@1330
|
475 << ", level = " << m_zoomLevel.level
|
Chris@1330
|
476 << ", diff % level = " << (diff % m_zoomLevel.level)
|
Chris@1330
|
477 << ", nominal " << fdiff + m_centreFrame
|
Chris@1330
|
478 << ", will return " << result
|
Chris@1330
|
479 << endl;
|
Chris@1330
|
480 }
|
Chris@1352
|
481 #endif
|
Chris@1352
|
482
|
Chris@1330
|
483 return result;
|
Chris@127
|
484 }
|
Chris@127
|
485
|
Chris@904
|
486 double
|
Chris@904
|
487 View::getYForFrequency(double frequency,
|
Chris@1266
|
488 double minf,
|
Chris@1266
|
489 double maxf,
|
Chris@1266
|
490 bool logarithmic) const
|
Chris@127
|
491 {
|
Chris@382
|
492 Profiler profiler("View::getYForFrequency");
|
Chris@382
|
493
|
Chris@127
|
494 int h = height();
|
Chris@127
|
495
|
Chris@127
|
496 if (logarithmic) {
|
Chris@127
|
497
|
Chris@1266
|
498 static double lastminf = 0.0, lastmaxf = 0.0;
|
Chris@1266
|
499 static double logminf = 0.0, logmaxf = 0.0;
|
Chris@1266
|
500
|
Chris@1266
|
501 if (lastminf != minf) {
|
Chris@1266
|
502 lastminf = (minf == 0.0 ? 1.0 : minf);
|
Chris@1266
|
503 logminf = log10(minf);
|
Chris@1266
|
504 }
|
Chris@1266
|
505 if (lastmaxf != maxf) {
|
Chris@1266
|
506 lastmaxf = (maxf < lastminf ? lastminf : maxf);
|
Chris@1266
|
507 logmaxf = log10(maxf);
|
Chris@1266
|
508 }
|
Chris@1266
|
509
|
Chris@1266
|
510 if (logminf == logmaxf) return 0;
|
Chris@1266
|
511 return h - (h * (log10(frequency) - logminf)) / (logmaxf - logminf);
|
Chris@127
|
512
|
Chris@127
|
513 } else {
|
Chris@1266
|
514
|
Chris@1266
|
515 if (minf == maxf) return 0;
|
Chris@1266
|
516 return h - (h * (frequency - minf)) / (maxf - minf);
|
Chris@127
|
517 }
|
Chris@127
|
518 }
|
Chris@127
|
519
|
Chris@904
|
520 double
|
Chris@1085
|
521 View::getFrequencyForY(double y,
|
Chris@1266
|
522 double minf,
|
Chris@1266
|
523 double maxf,
|
Chris@1266
|
524 bool logarithmic) const
|
Chris@127
|
525 {
|
Chris@1085
|
526 double h = height();
|
Chris@127
|
527
|
Chris@127
|
528 if (logarithmic) {
|
Chris@127
|
529
|
Chris@1266
|
530 static double lastminf = 0.0, lastmaxf = 0.0;
|
Chris@1266
|
531 static double logminf = 0.0, logmaxf = 0.0;
|
Chris@1266
|
532
|
Chris@1266
|
533 if (lastminf != minf) {
|
Chris@1266
|
534 lastminf = (minf == 0.0 ? 1.0 : minf);
|
Chris@1266
|
535 logminf = log10(minf);
|
Chris@1266
|
536 }
|
Chris@1266
|
537 if (lastmaxf != maxf) {
|
Chris@1266
|
538 lastmaxf = (maxf < lastminf ? lastminf : maxf);
|
Chris@1266
|
539 logmaxf = log10(maxf);
|
Chris@1266
|
540 }
|
Chris@1266
|
541
|
Chris@1266
|
542 if (logminf == logmaxf) return 0;
|
Chris@1266
|
543 return pow(10.0, logminf + ((logmaxf - logminf) * (h - y)) / h);
|
Chris@127
|
544
|
Chris@127
|
545 } else {
|
Chris@127
|
546
|
Chris@1266
|
547 if (minf == maxf) return 0;
|
Chris@1266
|
548 return minf + ((h - y) * (maxf - minf)) / h;
|
Chris@127
|
549 }
|
Chris@127
|
550 }
|
Chris@127
|
551
|
Chris@1183
|
552 ZoomLevel
|
Chris@127
|
553 View::getZoomLevel() const
|
Chris@127
|
554 {
|
Chris@127
|
555 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1266
|
556 // cout << "zoom level: " << m_zoomLevel << endl;
|
Chris@127
|
557 #endif
|
Chris@127
|
558 return m_zoomLevel;
|
Chris@127
|
559 }
|
Chris@127
|
560
|
Chris@956
|
561 int
|
Chris@956
|
562 View::effectiveDevicePixelRatio() const
|
Chris@956
|
563 {
|
Chris@956
|
564 #ifdef Q_OS_MAC
|
Chris@956
|
565 int dpratio = devicePixelRatio();
|
Chris@956
|
566 if (dpratio > 1) {
|
Chris@956
|
567 QSettings settings;
|
Chris@956
|
568 settings.beginGroup("Preferences");
|
Chris@956
|
569 if (!settings.value("scaledHiDpi", true).toBool()) {
|
Chris@956
|
570 dpratio = 1;
|
Chris@956
|
571 }
|
Chris@956
|
572 settings.endGroup();
|
Chris@956
|
573 }
|
Chris@956
|
574 return dpratio;
|
Chris@956
|
575 #else
|
Chris@956
|
576 return 1;
|
Chris@956
|
577 #endif
|
Chris@956
|
578 }
|
Chris@956
|
579
|
Chris@127
|
580 void
|
Chris@1183
|
581 View::setZoomLevel(ZoomLevel z)
|
Chris@127
|
582 {
|
Chris@1327
|
583 //!!! int dpratio = effectiveDevicePixelRatio();
|
Chris@1327
|
584 // if (z < dpratio) return;
|
Chris@1327
|
585 // if (z < 1) z = 1;
|
Chris@1327
|
586 if (m_zoomLevel == z) {
|
Chris@1327
|
587 return;
|
Chris@127
|
588 }
|
Chris@1327
|
589 m_zoomLevel = z;
|
Chris@1327
|
590 emit zoomLevelChanged(z, m_followZoom);
|
Chris@1327
|
591 update();
|
Chris@127
|
592 }
|
Chris@127
|
593
|
Chris@224
|
594 bool
|
Chris@224
|
595 View::hasLightBackground() const
|
Chris@224
|
596 {
|
Chris@287
|
597 bool darkPalette = false;
|
Chris@292
|
598 if (m_manager) darkPalette = m_manager->getGlobalDarkBackground();
|
Chris@287
|
599
|
Chris@287
|
600 Layer::ColourSignificance maxSignificance = Layer::ColourAbsent;
|
Chris@287
|
601 bool mostSignificantHasDarkBackground = false;
|
Chris@287
|
602
|
Chris@835
|
603 for (LayerList::const_iterator i = m_layerStack.begin();
|
Chris@835
|
604 i != m_layerStack.end(); ++i) {
|
Chris@287
|
605
|
Chris@287
|
606 Layer::ColourSignificance s = (*i)->getLayerColourSignificance();
|
Chris@287
|
607 bool light = (*i)->hasLightBackground();
|
Chris@287
|
608
|
Chris@287
|
609 if (int(s) > int(maxSignificance)) {
|
Chris@287
|
610 maxSignificance = s;
|
Chris@287
|
611 mostSignificantHasDarkBackground = !light;
|
Chris@287
|
612 } else if (s == maxSignificance && !light) {
|
Chris@287
|
613 mostSignificantHasDarkBackground = true;
|
Chris@287
|
614 }
|
Chris@224
|
615 }
|
Chris@287
|
616
|
Chris@1314
|
617 if (int(maxSignificance) >= int(Layer::ColourDistinguishes)) {
|
Chris@287
|
618 return !mostSignificantHasDarkBackground;
|
Chris@287
|
619 } else {
|
Chris@287
|
620 return !darkPalette;
|
Chris@287
|
621 }
|
Chris@287
|
622 }
|
Chris@287
|
623
|
Chris@287
|
624 QColor
|
Chris@287
|
625 View::getBackground() const
|
Chris@287
|
626 {
|
Chris@287
|
627 bool light = hasLightBackground();
|
Chris@287
|
628
|
Chris@287
|
629 QColor widgetbg = palette().window().color();
|
Chris@287
|
630 bool widgetLight =
|
Chris@287
|
631 (widgetbg.red() + widgetbg.green() + widgetbg.blue()) > 384;
|
Chris@287
|
632
|
Chris@296
|
633 if (widgetLight == light) {
|
Chris@296
|
634 if (widgetLight) {
|
Chris@1475
|
635 return widgetbg.lighter();
|
Chris@296
|
636 } else {
|
Chris@1475
|
637 return widgetbg.darker();
|
Chris@296
|
638 }
|
Chris@296
|
639 }
|
Chris@287
|
640 else if (light) return Qt::white;
|
Chris@287
|
641 else return Qt::black;
|
Chris@287
|
642 }
|
Chris@287
|
643
|
Chris@287
|
644 QColor
|
Chris@287
|
645 View::getForeground() const
|
Chris@287
|
646 {
|
Chris@287
|
647 bool light = hasLightBackground();
|
Chris@287
|
648
|
Chris@287
|
649 QColor widgetfg = palette().text().color();
|
Chris@287
|
650 bool widgetLight =
|
Chris@287
|
651 (widgetfg.red() + widgetfg.green() + widgetfg.blue()) > 384;
|
Chris@287
|
652
|
Chris@287
|
653 if (widgetLight != light) return widgetfg;
|
Chris@287
|
654 else if (light) return Qt::black;
|
Chris@287
|
655 else return Qt::white;
|
Chris@224
|
656 }
|
Chris@224
|
657
|
Chris@127
|
658 void
|
Chris@127
|
659 View::addLayer(Layer *layer)
|
Chris@127
|
660 {
|
Chris@1357
|
661 m_cacheValid = false;
|
Chris@127
|
662
|
Chris@287
|
663 SingleColourLayer *scl = dynamic_cast<SingleColourLayer *>(layer);
|
Chris@287
|
664 if (scl) scl->setDefaultColourFor(this);
|
Chris@287
|
665
|
Chris@836
|
666 m_fixedOrderLayers.push_back(layer);
|
Chris@835
|
667 m_layerStack.push_back(layer);
|
Chris@127
|
668
|
Chris@555
|
669 QProgressBar *pb = new QProgressBar(this);
|
Chris@555
|
670 pb->setMinimum(0);
|
Chris@555
|
671 pb->setMaximum(0);
|
Chris@555
|
672 pb->setFixedWidth(80);
|
Chris@555
|
673 pb->setTextVisible(false);
|
Chris@555
|
674
|
Chris@797
|
675 QPushButton *cancel = new QPushButton(this);
|
Chris@1350
|
676 cancel->setIcon(IconLoader().load("cancel"));
|
Chris@797
|
677 cancel->setFlat(true);
|
Chris@1402
|
678 int scaled20 = scalePixelSize(20);
|
Chris@1351
|
679 cancel->setFixedSize(QSize(scaled20, scaled20));
|
Chris@797
|
680 connect(cancel, SIGNAL(clicked()), this, SLOT(cancelClicked()));
|
Chris@797
|
681
|
Chris@555
|
682 ProgressBarRec pbr;
|
Chris@797
|
683 pbr.cancel = cancel;
|
Chris@555
|
684 pbr.bar = pb;
|
Chris@555
|
685 pbr.lastCheck = 0;
|
Chris@555
|
686 pbr.checkTimer = new QTimer();
|
Chris@555
|
687 connect(pbr.checkTimer, SIGNAL(timeout()), this,
|
Chris@555
|
688 SLOT(progressCheckStalledTimerElapsed()));
|
Chris@555
|
689
|
Chris@555
|
690 m_progressBars[layer] = pbr;
|
Chris@555
|
691
|
Chris@555
|
692 QFont f(pb->font());
|
Chris@339
|
693 int fs = Preferences::getInstance()->getViewFontSize();
|
Chris@339
|
694 f.setPointSize(std::min(fs, int(ceil(fs * 0.85))));
|
Chris@339
|
695
|
Chris@797
|
696 cancel->hide();
|
Chris@797
|
697
|
Chris@555
|
698 pb->setFont(f);
|
Chris@555
|
699 pb->hide();
|
Chris@127
|
700
|
Chris@127
|
701 connect(layer, SIGNAL(layerParametersChanged()),
|
Chris@1266
|
702 this, SLOT(layerParametersChanged()));
|
Chris@197
|
703 connect(layer, SIGNAL(layerParameterRangesChanged()),
|
Chris@1266
|
704 this, SLOT(layerParameterRangesChanged()));
|
Chris@268
|
705 connect(layer, SIGNAL(layerMeasurementRectsChanged()),
|
Chris@1266
|
706 this, SLOT(layerMeasurementRectsChanged()));
|
Chris@127
|
707 connect(layer, SIGNAL(layerNameChanged()),
|
Chris@1266
|
708 this, SLOT(layerNameChanged()));
|
Chris@127
|
709 connect(layer, SIGNAL(modelChanged()),
|
Chris@1266
|
710 this, SLOT(modelChanged()));
|
Chris@127
|
711 connect(layer, SIGNAL(modelCompletionChanged()),
|
Chris@1266
|
712 this, SLOT(modelCompletionChanged()));
|
Chris@320
|
713 connect(layer, SIGNAL(modelAlignmentCompletionChanged()),
|
Chris@1266
|
714 this, SLOT(modelAlignmentCompletionChanged()));
|
Chris@908
|
715 connect(layer, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)),
|
Chris@1266
|
716 this, SLOT(modelChangedWithin(sv_frame_t, sv_frame_t)));
|
Chris@127
|
717 connect(layer, SIGNAL(modelReplaced()),
|
Chris@1266
|
718 this, SLOT(modelReplaced()));
|
Chris@127
|
719
|
Chris@127
|
720 update();
|
Chris@127
|
721
|
Chris@127
|
722 emit propertyContainerAdded(layer);
|
Chris@127
|
723 }
|
Chris@127
|
724
|
Chris@127
|
725 void
|
Chris@127
|
726 View::removeLayer(Layer *layer)
|
Chris@127
|
727 {
|
Chris@127
|
728 if (m_deleting) {
|
Chris@1266
|
729 return;
|
Chris@127
|
730 }
|
Chris@127
|
731
|
Chris@1357
|
732 m_cacheValid = false;
|
Chris@127
|
733
|
Chris@836
|
734 for (LayerList::iterator i = m_fixedOrderLayers.begin();
|
Chris@836
|
735 i != m_fixedOrderLayers.end();
|
Chris@836
|
736 ++i) {
|
Chris@1266
|
737 if (*i == layer) {
|
Chris@1266
|
738 m_fixedOrderLayers.erase(i);
|
Chris@836
|
739 break;
|
Chris@836
|
740 }
|
Chris@836
|
741 }
|
Chris@836
|
742
|
Chris@836
|
743 for (LayerList::iterator i = m_layerStack.begin();
|
Chris@836
|
744 i != m_layerStack.end();
|
Chris@836
|
745 ++i) {
|
Chris@1266
|
746 if (*i == layer) {
|
Chris@1266
|
747 m_layerStack.erase(i);
|
Chris@1266
|
748 if (m_progressBars.find(layer) != m_progressBars.end()) {
|
Chris@1266
|
749 delete m_progressBars[layer].bar;
|
Chris@797
|
750 delete m_progressBars[layer].cancel;
|
Chris@1266
|
751 delete m_progressBars[layer].checkTimer;
|
Chris@1266
|
752 m_progressBars.erase(layer);
|
Chris@1266
|
753 }
|
Chris@1266
|
754 break;
|
Chris@1266
|
755 }
|
Chris@127
|
756 }
|
Chris@127
|
757
|
Chris@197
|
758 disconnect(layer, SIGNAL(layerParametersChanged()),
|
Chris@197
|
759 this, SLOT(layerParametersChanged()));
|
Chris@197
|
760 disconnect(layer, SIGNAL(layerParameterRangesChanged()),
|
Chris@197
|
761 this, SLOT(layerParameterRangesChanged()));
|
Chris@197
|
762 disconnect(layer, SIGNAL(layerNameChanged()),
|
Chris@197
|
763 this, SLOT(layerNameChanged()));
|
Chris@197
|
764 disconnect(layer, SIGNAL(modelChanged()),
|
Chris@197
|
765 this, SLOT(modelChanged()));
|
Chris@197
|
766 disconnect(layer, SIGNAL(modelCompletionChanged()),
|
Chris@197
|
767 this, SLOT(modelCompletionChanged()));
|
Chris@320
|
768 disconnect(layer, SIGNAL(modelAlignmentCompletionChanged()),
|
Chris@320
|
769 this, SLOT(modelAlignmentCompletionChanged()));
|
Chris@908
|
770 disconnect(layer, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)),
|
Chris@908
|
771 this, SLOT(modelChangedWithin(sv_frame_t, sv_frame_t)));
|
Chris@197
|
772 disconnect(layer, SIGNAL(modelReplaced()),
|
Chris@197
|
773 this, SLOT(modelReplaced()));
|
Chris@197
|
774
|
Chris@127
|
775 update();
|
Chris@127
|
776
|
Chris@127
|
777 emit propertyContainerRemoved(layer);
|
Chris@127
|
778 }
|
Chris@127
|
779
|
Chris@127
|
780 Layer *
|
Chris@834
|
781 View::getInteractionLayer()
|
Chris@834
|
782 {
|
Chris@834
|
783 Layer *sl = getSelectedLayer();
|
Chris@834
|
784 if (sl && !(sl->isLayerDormant(this))) {
|
Chris@834
|
785 return sl;
|
Chris@834
|
786 }
|
Chris@835
|
787 if (!m_layerStack.empty()) {
|
Chris@834
|
788 int n = getLayerCount();
|
Chris@834
|
789 while (n > 0) {
|
Chris@834
|
790 --n;
|
Chris@834
|
791 Layer *layer = getLayer(n);
|
Chris@834
|
792 if (!(layer->isLayerDormant(this))) {
|
Chris@834
|
793 return layer;
|
Chris@834
|
794 }
|
Chris@834
|
795 }
|
Chris@834
|
796 }
|
Chris@1408
|
797 return nullptr;
|
Chris@834
|
798 }
|
Chris@834
|
799
|
Chris@841
|
800 const Layer *
|
Chris@841
|
801 View::getInteractionLayer() const
|
Chris@841
|
802 {
|
Chris@841
|
803 return const_cast<const Layer *>(const_cast<View *>(this)->getInteractionLayer());
|
Chris@841
|
804 }
|
Chris@841
|
805
|
Chris@834
|
806 Layer *
|
Chris@127
|
807 View::getSelectedLayer()
|
Chris@127
|
808 {
|
Chris@835
|
809 if (m_haveSelectedLayer && !m_layerStack.empty()) {
|
Chris@839
|
810 return getLayer(getLayerCount() - 1);
|
Chris@127
|
811 } else {
|
Chris@1408
|
812 return nullptr;
|
Chris@127
|
813 }
|
Chris@127
|
814 }
|
Chris@127
|
815
|
Chris@127
|
816 const Layer *
|
Chris@127
|
817 View::getSelectedLayer() const
|
Chris@127
|
818 {
|
Chris@127
|
819 return const_cast<const Layer *>(const_cast<View *>(this)->getSelectedLayer());
|
Chris@127
|
820 }
|
Chris@127
|
821
|
Chris@127
|
822 void
|
Chris@127
|
823 View::setViewManager(ViewManager *manager)
|
Chris@127
|
824 {
|
Chris@127
|
825 if (m_manager) {
|
Chris@1266
|
826 m_manager->disconnect(this, SLOT(globalCentreFrameChanged(sv_frame_t)));
|
Chris@1266
|
827 m_manager->disconnect(this, SLOT(viewCentreFrameChanged(View *, sv_frame_t)));
|
Chris@1266
|
828 m_manager->disconnect(this, SLOT(viewManagerPlaybackFrameChanged(sv_frame_t)));
|
Chris@1324
|
829 m_manager->disconnect(this, SLOT(viewZoomLevelChanged(View *, ZoomLevel, bool)));
|
Chris@211
|
830 m_manager->disconnect(this, SLOT(toolModeChanged()));
|
Chris@211
|
831 m_manager->disconnect(this, SLOT(selectionChanged()));
|
Chris@211
|
832 m_manager->disconnect(this, SLOT(overlayModeChanged()));
|
Chris@211
|
833 m_manager->disconnect(this, SLOT(zoomWheelsEnabledChanged()));
|
Chris@908
|
834 disconnect(m_manager, SLOT(viewCentreFrameChanged(sv_frame_t, bool, PlaybackFollowMode)));
|
Chris@1324
|
835 disconnect(m_manager, SLOT(zoomLevelChanged(ZoomLevel, bool)));
|
Chris@127
|
836 }
|
Chris@127
|
837
|
Chris@127
|
838 m_manager = manager;
|
Chris@127
|
839
|
Chris@908
|
840 connect(m_manager, SIGNAL(globalCentreFrameChanged(sv_frame_t)),
|
Chris@1266
|
841 this, SLOT(globalCentreFrameChanged(sv_frame_t)));
|
Chris@908
|
842 connect(m_manager, SIGNAL(viewCentreFrameChanged(View *, sv_frame_t)),
|
Chris@1266
|
843 this, SLOT(viewCentreFrameChanged(View *, sv_frame_t)));
|
Chris@908
|
844 connect(m_manager, SIGNAL(playbackFrameChanged(sv_frame_t)),
|
Chris@1266
|
845 this, SLOT(viewManagerPlaybackFrameChanged(sv_frame_t)));
|
Chris@806
|
846
|
Chris@1183
|
847 connect(m_manager, SIGNAL(viewZoomLevelChanged(View *, ZoomLevel, bool)),
|
Chris@1324
|
848 this, SLOT(viewZoomLevelChanged(View *, ZoomLevel, bool)));
|
Chris@211
|
849
|
Chris@127
|
850 connect(m_manager, SIGNAL(toolModeChanged()),
|
Chris@1266
|
851 this, SLOT(toolModeChanged()));
|
Chris@127
|
852 connect(m_manager, SIGNAL(selectionChanged()),
|
Chris@1266
|
853 this, SLOT(selectionChanged()));
|
Chris@127
|
854 connect(m_manager, SIGNAL(inProgressSelectionChanged()),
|
Chris@1266
|
855 this, SLOT(selectionChanged()));
|
Chris@127
|
856 connect(m_manager, SIGNAL(overlayModeChanged()),
|
Chris@133
|
857 this, SLOT(overlayModeChanged()));
|
Chris@607
|
858 connect(m_manager, SIGNAL(showCentreLineChanged()),
|
Chris@607
|
859 this, SLOT(overlayModeChanged()));
|
Chris@133
|
860 connect(m_manager, SIGNAL(zoomWheelsEnabledChanged()),
|
Chris@133
|
861 this, SLOT(zoomWheelsEnabledChanged()));
|
Chris@127
|
862
|
Chris@908
|
863 connect(this, SIGNAL(centreFrameChanged(sv_frame_t, bool,
|
Chris@211
|
864 PlaybackFollowMode)),
|
Chris@908
|
865 m_manager, SLOT(viewCentreFrameChanged(sv_frame_t, bool,
|
Chris@211
|
866 PlaybackFollowMode)));
|
Chris@211
|
867
|
Chris@1183
|
868 connect(this, SIGNAL(zoomLevelChanged(ZoomLevel, bool)),
|
Chris@1324
|
869 m_manager, SLOT(viewZoomLevelChanged(ZoomLevel, bool)));
|
Chris@127
|
870
|
Chris@815
|
871 switch (m_followPlay) {
|
Chris@815
|
872
|
Chris@815
|
873 case PlaybackScrollPage:
|
Chris@815
|
874 case PlaybackScrollPageWithCentre:
|
Chris@364
|
875 setCentreFrame(m_manager->getGlobalCentreFrame(), false);
|
Chris@815
|
876 break;
|
Chris@815
|
877
|
Chris@815
|
878 case PlaybackScrollContinuous:
|
Chris@236
|
879 setCentreFrame(m_manager->getPlaybackFrame(), false);
|
Chris@815
|
880 break;
|
Chris@815
|
881
|
Chris@815
|
882 case PlaybackIgnore:
|
Chris@815
|
883 if (m_followPan) {
|
Chris@815
|
884 setCentreFrame(m_manager->getGlobalCentreFrame(), false);
|
Chris@815
|
885 }
|
Chris@815
|
886 break;
|
Chris@236
|
887 }
|
Chris@516
|
888
|
Chris@236
|
889 if (m_followZoom) setZoomLevel(m_manager->getGlobalZoom());
|
Chris@236
|
890
|
Chris@511
|
891 movePlayPointer(getAlignedPlaybackFrame());
|
Chris@511
|
892
|
Chris@127
|
893 toolModeChanged();
|
Chris@127
|
894 }
|
Chris@127
|
895
|
Chris@127
|
896 void
|
Chris@908
|
897 View::setViewManager(ViewManager *vm, sv_frame_t initialCentreFrame)
|
Chris@516
|
898 {
|
Chris@516
|
899 setViewManager(vm);
|
Chris@516
|
900 setCentreFrame(initialCentreFrame, false);
|
Chris@516
|
901 }
|
Chris@516
|
902
|
Chris@516
|
903 void
|
Chris@127
|
904 View::setFollowGlobalPan(bool f)
|
Chris@127
|
905 {
|
Chris@127
|
906 m_followPan = f;
|
Chris@127
|
907 emit propertyContainerPropertyChanged(m_propertyContainer);
|
Chris@127
|
908 }
|
Chris@127
|
909
|
Chris@127
|
910 void
|
Chris@127
|
911 View::setFollowGlobalZoom(bool f)
|
Chris@127
|
912 {
|
Chris@127
|
913 m_followZoom = f;
|
Chris@127
|
914 emit propertyContainerPropertyChanged(m_propertyContainer);
|
Chris@127
|
915 }
|
Chris@127
|
916
|
Chris@127
|
917 void
|
Chris@127
|
918 View::setPlaybackFollow(PlaybackFollowMode m)
|
Chris@127
|
919 {
|
Chris@127
|
920 m_followPlay = m;
|
Chris@127
|
921 emit propertyContainerPropertyChanged(m_propertyContainer);
|
Chris@127
|
922 }
|
Chris@127
|
923
|
Chris@127
|
924 void
|
Chris@127
|
925 View::modelChanged()
|
Chris@127
|
926 {
|
Chris@127
|
927 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@682
|
928 cerr << "View(" << this << ")::modelChanged()" << endl;
|
Chris@127
|
929 #endif
|
Chris@1475
|
930
|
Chris@1475
|
931 QObject *obj = sender();
|
Chris@1475
|
932
|
Chris@1475
|
933 ModelId model;
|
Chris@1475
|
934 if (Model *modelPtr = qobject_cast<Model *>(obj)) {
|
Chris@1475
|
935 model = modelPtr->getId();
|
Chris@1475
|
936 } else if (Layer *layerPtr = qobject_cast<Layer *>(obj)) {
|
Chris@1475
|
937 model = layerPtr->getModel();
|
Chris@1475
|
938 } else {
|
Chris@1475
|
939 return;
|
Chris@1475
|
940 }
|
Chris@127
|
941
|
Chris@127
|
942 // If the model that has changed is not used by any of the cached
|
Chris@127
|
943 // layers, we won't need to recreate the cache
|
Chris@127
|
944
|
Chris@127
|
945 bool recreate = false;
|
Chris@127
|
946
|
Chris@127
|
947 bool discard;
|
Chris@127
|
948 LayerList scrollables = getScrollableBackLayers(false, discard);
|
Chris@127
|
949 for (LayerList::const_iterator i = scrollables.begin();
|
Chris@1266
|
950 i != scrollables.end(); ++i) {
|
Chris@1475
|
951 if ((*i)->getModel() == model) {
|
Chris@1266
|
952 recreate = true;
|
Chris@1266
|
953 break;
|
Chris@1266
|
954 }
|
Chris@127
|
955 }
|
Chris@127
|
956
|
Chris@127
|
957 if (recreate) {
|
Chris@1357
|
958 m_cacheValid = false;
|
Chris@127
|
959 }
|
Chris@127
|
960
|
Chris@336
|
961 emit layerModelChanged();
|
Chris@336
|
962
|
Chris@127
|
963 checkProgress(obj);
|
Chris@127
|
964
|
Chris@127
|
965 update();
|
Chris@127
|
966 }
|
Chris@127
|
967
|
Chris@127
|
968 void
|
Chris@908
|
969 View::modelChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame)
|
Chris@127
|
970 {
|
Chris@127
|
971 QObject *obj = sender();
|
Chris@1475
|
972
|
Chris@1475
|
973 ModelId model;
|
Chris@1475
|
974 if (Model *modelPtr = qobject_cast<Model *>(obj)) {
|
Chris@1475
|
975 model = modelPtr->getId();
|
Chris@1475
|
976 } else if (Layer *layerPtr = qobject_cast<Layer *>(obj)) {
|
Chris@1475
|
977 model = layerPtr->getModel();
|
Chris@1475
|
978 } else {
|
Chris@1475
|
979 return;
|
Chris@1475
|
980 }
|
Chris@127
|
981
|
Chris@908
|
982 sv_frame_t myStartFrame = getStartFrame();
|
Chris@908
|
983 sv_frame_t myEndFrame = getEndFrame();
|
Chris@127
|
984
|
Chris@127
|
985 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@806
|
986 cerr << "View(" << this << ")::modelChangedWithin(" << startFrame << "," << endFrame << ") [me " << myStartFrame << "," << myEndFrame << "]" << endl;
|
Chris@127
|
987 #endif
|
Chris@127
|
988
|
Chris@908
|
989 if (myStartFrame > 0 && endFrame < myStartFrame) {
|
Chris@1266
|
990 checkProgress(obj);
|
Chris@1266
|
991 return;
|
Chris@127
|
992 }
|
Chris@127
|
993 if (startFrame > myEndFrame) {
|
Chris@1266
|
994 checkProgress(obj);
|
Chris@1266
|
995 return;
|
Chris@127
|
996 }
|
Chris@127
|
997
|
Chris@127
|
998 // If the model that has changed is not used by any of the cached
|
Chris@127
|
999 // layers, we won't need to recreate the cache
|
Chris@127
|
1000
|
Chris@127
|
1001 bool recreate = false;
|
Chris@127
|
1002
|
Chris@127
|
1003 bool discard;
|
Chris@127
|
1004 LayerList scrollables = getScrollableBackLayers(false, discard);
|
Chris@127
|
1005 for (LayerList::const_iterator i = scrollables.begin();
|
Chris@1266
|
1006 i != scrollables.end(); ++i) {
|
Chris@1475
|
1007 if ((*i)->getModel() == model) {
|
Chris@1266
|
1008 recreate = true;
|
Chris@1266
|
1009 break;
|
Chris@1266
|
1010 }
|
Chris@127
|
1011 }
|
Chris@127
|
1012
|
Chris@127
|
1013 if (recreate) {
|
Chris@1357
|
1014 m_cacheValid = false;
|
Chris@127
|
1015 }
|
Chris@127
|
1016
|
Chris@806
|
1017 if (startFrame < myStartFrame) startFrame = myStartFrame;
|
Chris@127
|
1018 if (endFrame > myEndFrame) endFrame = myEndFrame;
|
Chris@127
|
1019
|
Chris@127
|
1020 checkProgress(obj);
|
Chris@127
|
1021
|
Chris@127
|
1022 update();
|
Chris@127
|
1023 }
|
Chris@127
|
1024
|
Chris@127
|
1025 void
|
Chris@127
|
1026 View::modelCompletionChanged()
|
Chris@127
|
1027 {
|
Chris@682
|
1028 // cerr << "View(" << this << ")::modelCompletionChanged()" << endl;
|
Chris@301
|
1029
|
Chris@127
|
1030 QObject *obj = sender();
|
Chris@127
|
1031 checkProgress(obj);
|
Chris@127
|
1032 }
|
Chris@127
|
1033
|
Chris@127
|
1034 void
|
Chris@320
|
1035 View::modelAlignmentCompletionChanged()
|
Chris@320
|
1036 {
|
Chris@682
|
1037 // cerr << "View(" << this << ")::modelAlignmentCompletionChanged()" << endl;
|
Chris@320
|
1038
|
Chris@320
|
1039 QObject *obj = sender();
|
Chris@320
|
1040 checkProgress(obj);
|
Chris@320
|
1041 }
|
Chris@320
|
1042
|
Chris@320
|
1043 void
|
Chris@127
|
1044 View::modelReplaced()
|
Chris@127
|
1045 {
|
Chris@127
|
1046 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@682
|
1047 cerr << "View(" << this << ")::modelReplaced()" << endl;
|
Chris@127
|
1048 #endif
|
Chris@1357
|
1049 m_cacheValid = false;
|
Chris@127
|
1050 update();
|
Chris@127
|
1051 }
|
Chris@127
|
1052
|
Chris@127
|
1053 void
|
Chris@127
|
1054 View::layerParametersChanged()
|
Chris@127
|
1055 {
|
Chris@127
|
1056 Layer *layer = dynamic_cast<Layer *>(sender());
|
Chris@127
|
1057
|
Chris@127
|
1058 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@587
|
1059 SVDEBUG << "View::layerParametersChanged()" << endl;
|
Chris@127
|
1060 #endif
|
Chris@127
|
1061
|
Chris@1357
|
1062 m_cacheValid = false;
|
Chris@127
|
1063 update();
|
Chris@127
|
1064
|
Chris@127
|
1065 if (layer) {
|
Chris@1266
|
1066 emit propertyContainerPropertyChanged(layer);
|
Chris@127
|
1067 }
|
Chris@127
|
1068 }
|
Chris@127
|
1069
|
Chris@127
|
1070 void
|
Chris@197
|
1071 View::layerParameterRangesChanged()
|
Chris@197
|
1072 {
|
Chris@197
|
1073 Layer *layer = dynamic_cast<Layer *>(sender());
|
Chris@197
|
1074 if (layer) emit propertyContainerPropertyRangeChanged(layer);
|
Chris@197
|
1075 }
|
Chris@197
|
1076
|
Chris@197
|
1077 void
|
Chris@268
|
1078 View::layerMeasurementRectsChanged()
|
Chris@268
|
1079 {
|
Chris@268
|
1080 Layer *layer = dynamic_cast<Layer *>(sender());
|
Chris@268
|
1081 if (layer) update();
|
Chris@268
|
1082 }
|
Chris@268
|
1083
|
Chris@268
|
1084 void
|
Chris@127
|
1085 View::layerNameChanged()
|
Chris@127
|
1086 {
|
Chris@127
|
1087 Layer *layer = dynamic_cast<Layer *>(sender());
|
Chris@127
|
1088 if (layer) emit propertyContainerNameChanged(layer);
|
Chris@127
|
1089 }
|
Chris@127
|
1090
|
Chris@127
|
1091 void
|
Chris@908
|
1092 View::globalCentreFrameChanged(sv_frame_t rf)
|
Chris@127
|
1093 {
|
Chris@211
|
1094 if (m_followPan) {
|
Chris@908
|
1095 sv_frame_t f = alignFromReference(rf);
|
Chris@830
|
1096 #ifdef DEBUG_VIEW
|
Chris@682
|
1097 cerr << "View[" << this << "]::globalCentreFrameChanged(" << rf
|
Chris@682
|
1098 << "): setting centre frame to " << f << endl;
|
Chris@363
|
1099 #endif
|
Chris@333
|
1100 setCentreFrame(f, false);
|
Chris@127
|
1101 }
|
Chris@127
|
1102 }
|
Chris@127
|
1103
|
Chris@127
|
1104 void
|
Chris@908
|
1105 View::viewCentreFrameChanged(View *, sv_frame_t )
|
Chris@211
|
1106 {
|
Chris@211
|
1107 // We do nothing with this, but a subclass might
|
Chris@211
|
1108 }
|
Chris@211
|
1109
|
Chris@211
|
1110 void
|
Chris@908
|
1111 View::viewManagerPlaybackFrameChanged(sv_frame_t f)
|
Chris@127
|
1112 {
|
Chris@127
|
1113 if (m_manager) {
|
Chris@1266
|
1114 if (sender() != m_manager) return;
|
Chris@127
|
1115 }
|
Chris@127
|
1116
|
Chris@830
|
1117 #ifdef DEBUG_VIEW
|
Chris@830
|
1118 cerr << "View::viewManagerPlaybackFrameChanged(" << f << ")" << endl;
|
Chris@830
|
1119 #endif
|
Chris@830
|
1120
|
Chris@301
|
1121 f = getAlignedPlaybackFrame();
|
Chris@301
|
1122
|
Chris@830
|
1123 #ifdef DEBUG_VIEW
|
Chris@951
|
1124 cerr << " -> aligned frame = " << f << endl;
|
Chris@830
|
1125 #endif
|
Chris@830
|
1126
|
Chris@511
|
1127 movePlayPointer(f);
|
Chris@511
|
1128 }
|
Chris@511
|
1129
|
Chris@511
|
1130 void
|
Chris@908
|
1131 View::movePlayPointer(sv_frame_t newFrame)
|
Chris@511
|
1132 {
|
Chris@830
|
1133 #ifdef DEBUG_VIEW
|
Chris@830
|
1134 cerr << "View(" << this << ")::movePlayPointer(" << newFrame << ")" << endl;
|
Chris@830
|
1135 #endif
|
Chris@830
|
1136
|
Chris@511
|
1137 if (m_playPointerFrame == newFrame) return;
|
Chris@511
|
1138 bool visibleChange =
|
Chris@511
|
1139 (getXForFrame(m_playPointerFrame) != getXForFrame(newFrame));
|
Chris@908
|
1140 sv_frame_t oldPlayPointerFrame = m_playPointerFrame;
|
Chris@511
|
1141 m_playPointerFrame = newFrame;
|
Chris@511
|
1142 if (!visibleChange) return;
|
Chris@127
|
1143
|
Chris@513
|
1144 bool somethingGoingOn =
|
Chris@513
|
1145 ((QApplication::mouseButtons() != Qt::NoButton) ||
|
Chris@513
|
1146 (QApplication::keyboardModifiers() & Qt::AltModifier));
|
Chris@513
|
1147
|
Chris@789
|
1148 bool pointerInVisibleArea =
|
Chris@1266
|
1149 long(m_playPointerFrame) >= getStartFrame() &&
|
Chris@789
|
1150 (m_playPointerFrame < getEndFrame() ||
|
Chris@789
|
1151 // include old pointer location so we know to refresh when moving out
|
Chris@789
|
1152 oldPlayPointerFrame < getEndFrame());
|
Chris@789
|
1153
|
Chris@127
|
1154 switch (m_followPlay) {
|
Chris@127
|
1155
|
Chris@127
|
1156 case PlaybackScrollContinuous:
|
Chris@1266
|
1157 if (!somethingGoingOn) {
|
Chris@1266
|
1158 setCentreFrame(m_playPointerFrame, false);
|
Chris@1266
|
1159 }
|
Chris@1266
|
1160 break;
|
Chris@127
|
1161
|
Chris@127
|
1162 case PlaybackScrollPage:
|
Chris@815
|
1163 case PlaybackScrollPageWithCentre:
|
Chris@789
|
1164
|
Chris@789
|
1165 if (!pointerInVisibleArea && somethingGoingOn) {
|
Chris@789
|
1166
|
Chris@789
|
1167 m_followPlayIsDetached = true;
|
Chris@789
|
1168
|
Chris@789
|
1169 } else if (!pointerInVisibleArea && m_followPlayIsDetached) {
|
Chris@789
|
1170
|
Chris@789
|
1171 // do nothing; we aren't tracking until the pointer comes back in
|
Chris@789
|
1172
|
Chris@789
|
1173 } else {
|
Chris@789
|
1174
|
Chris@789
|
1175 int xold = getXForFrame(oldPlayPointerFrame);
|
Chris@789
|
1176 update(xold - 4, 0, 9, height());
|
Chris@789
|
1177
|
Chris@908
|
1178 sv_frame_t w = getEndFrame() - getStartFrame();
|
Chris@789
|
1179 w -= w/5;
|
Chris@1416
|
1180 sv_frame_t sf = m_playPointerFrame;
|
Chris@1416
|
1181 if (w > 0) {
|
Chris@1416
|
1182 sf = (sf / w) * w - w/8;
|
Chris@1416
|
1183 }
|
Chris@789
|
1184
|
Chris@789
|
1185 if (m_manager &&
|
Chris@789
|
1186 m_manager->isPlaying() &&
|
Chris@789
|
1187 m_manager->getPlaySelectionMode()) {
|
Chris@789
|
1188 MultiSelection::SelectionList selections = m_manager->getSelections();
|
Chris@789
|
1189 if (!selections.empty()) {
|
Chris@908
|
1190 sv_frame_t selectionStart = selections.begin()->getStartFrame();
|
Chris@808
|
1191 if (sf < selectionStart - w / 10) {
|
Chris@808
|
1192 sf = selectionStart - w / 10;
|
Chris@789
|
1193 }
|
Chris@789
|
1194 }
|
Chris@789
|
1195 }
|
Chris@127
|
1196
|
Chris@127
|
1197 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@789
|
1198 cerr << "PlaybackScrollPage: f = " << m_playPointerFrame << ", sf = " << sf << ", start frame "
|
Chris@789
|
1199 << getStartFrame() << endl;
|
Chris@127
|
1200 #endif
|
Chris@127
|
1201
|
Chris@789
|
1202 // We don't consider scrolling unless the pointer is outside
|
Chris@789
|
1203 // the central visible range already
|
Chris@789
|
1204
|
Chris@789
|
1205 int xnew = getXForFrame(m_playPointerFrame);
|
Chris@127
|
1206
|
Chris@127
|
1207 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@789
|
1208 cerr << "xnew = " << xnew << ", width = " << width() << endl;
|
Chris@127
|
1209 #endif
|
Chris@127
|
1210
|
Chris@789
|
1211 bool shouldScroll = (xnew > (width() * 7) / 8);
|
Chris@789
|
1212
|
Chris@789
|
1213 if (!m_followPlayIsDetached && (xnew < width() / 8)) {
|
Chris@789
|
1214 shouldScroll = true;
|
Chris@789
|
1215 }
|
Chris@789
|
1216
|
Chris@789
|
1217 if (xnew > width() / 8) {
|
Chris@789
|
1218 m_followPlayIsDetached = false;
|
Chris@791
|
1219 } else if (somethingGoingOn) {
|
Chris@791
|
1220 m_followPlayIsDetached = true;
|
Chris@789
|
1221 }
|
Chris@789
|
1222
|
Chris@789
|
1223 if (!somethingGoingOn && shouldScroll) {
|
Chris@908
|
1224 sv_frame_t offset = getFrameForX(width()/2) - getStartFrame();
|
Chris@908
|
1225 sv_frame_t newCentre = sf + offset;
|
Chris@789
|
1226 bool changed = setCentreFrame(newCentre, false);
|
Chris@789
|
1227 if (changed) {
|
Chris@789
|
1228 xold = getXForFrame(oldPlayPointerFrame);
|
Chris@789
|
1229 update(xold - 4, 0, 9, height());
|
Chris@789
|
1230 }
|
Chris@789
|
1231 }
|
Chris@789
|
1232
|
Chris@789
|
1233 update(xnew - 4, 0, 9, height());
|
Chris@789
|
1234 }
|
Chris@789
|
1235 break;
|
Chris@127
|
1236
|
Chris@127
|
1237 case PlaybackIgnore:
|
Chris@1266
|
1238 if (m_playPointerFrame >= getStartFrame() &&
|
Chris@511
|
1239 m_playPointerFrame < getEndFrame()) {
|
Chris@1266
|
1240 update();
|
Chris@1266
|
1241 }
|
Chris@1266
|
1242 break;
|
Chris@127
|
1243 }
|
Chris@127
|
1244 }
|
Chris@127
|
1245
|
Chris@127
|
1246 void
|
Chris@1183
|
1247 View::viewZoomLevelChanged(View *p, ZoomLevel z, bool locked)
|
Chris@127
|
1248 {
|
Chris@244
|
1249 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@682
|
1250 cerr << "View[" << this << "]: viewZoomLevelChanged(" << p << ", " << z << ", " << locked << ")" << endl;
|
Chris@244
|
1251 #endif
|
Chris@127
|
1252 if (m_followZoom && p != this && locked) {
|
Chris@222
|
1253 setZoomLevel(z);
|
Chris@127
|
1254 }
|
Chris@127
|
1255 }
|
Chris@127
|
1256
|
Chris@127
|
1257 void
|
Chris@127
|
1258 View::selectionChanged()
|
Chris@127
|
1259 {
|
Chris@127
|
1260 if (m_selectionCached) {
|
Chris@1357
|
1261 m_cacheValid = false;
|
Chris@1266
|
1262 m_selectionCached = false;
|
Chris@127
|
1263 }
|
Chris@127
|
1264 update();
|
Chris@127
|
1265 }
|
Chris@127
|
1266
|
Chris@908
|
1267 sv_frame_t
|
Chris@222
|
1268 View::getFirstVisibleFrame() const
|
Chris@222
|
1269 {
|
Chris@908
|
1270 sv_frame_t f0 = getStartFrame();
|
Chris@908
|
1271 sv_frame_t f = getModelsStartFrame();
|
Chris@806
|
1272 if (f0 < 0 || f0 < f) return f;
|
Chris@222
|
1273 return f0;
|
Chris@222
|
1274 }
|
Chris@222
|
1275
|
Chris@908
|
1276 sv_frame_t
|
Chris@222
|
1277 View::getLastVisibleFrame() const
|
Chris@222
|
1278 {
|
Chris@908
|
1279 sv_frame_t f0 = getEndFrame();
|
Chris@908
|
1280 sv_frame_t f = getModelsEndFrame();
|
Chris@222
|
1281 if (f0 > f) return f;
|
Chris@222
|
1282 return f0;
|
Chris@222
|
1283 }
|
Chris@222
|
1284
|
Chris@908
|
1285 sv_frame_t
|
Chris@127
|
1286 View::getModelsStartFrame() const
|
Chris@127
|
1287 {
|
Chris@127
|
1288 bool first = true;
|
Chris@908
|
1289 sv_frame_t startFrame = 0;
|
Chris@127
|
1290
|
Chris@1475
|
1291 for (Layer *layer: m_layerStack) {
|
Chris@1475
|
1292
|
Chris@1475
|
1293 auto model = ModelById::get(layer->getModel());
|
Chris@1475
|
1294
|
Chris@1475
|
1295 if (model && model->isOK()) {
|
Chris@1475
|
1296
|
Chris@1475
|
1297 sv_frame_t thisStartFrame = model->getStartFrame();
|
Chris@1266
|
1298
|
Chris@1266
|
1299 if (first || thisStartFrame < startFrame) {
|
Chris@1266
|
1300 startFrame = thisStartFrame;
|
Chris@1266
|
1301 }
|
Chris@1266
|
1302 first = false;
|
Chris@1266
|
1303 }
|
Chris@127
|
1304 }
|
Chris@1475
|
1305
|
Chris@127
|
1306 return startFrame;
|
Chris@127
|
1307 }
|
Chris@127
|
1308
|
Chris@908
|
1309 sv_frame_t
|
Chris@127
|
1310 View::getModelsEndFrame() const
|
Chris@127
|
1311 {
|
Chris@127
|
1312 bool first = true;
|
Chris@908
|
1313 sv_frame_t endFrame = 0;
|
Chris@127
|
1314
|
Chris@1475
|
1315 for (Layer *layer: m_layerStack) {
|
Chris@1475
|
1316
|
Chris@1475
|
1317 auto model = ModelById::get(layer->getModel());
|
Chris@1475
|
1318
|
Chris@1475
|
1319 if (model && model->isOK()) {
|
Chris@1475
|
1320
|
Chris@1475
|
1321 sv_frame_t thisEndFrame = model->getEndFrame();
|
Chris@1266
|
1322
|
Chris@1266
|
1323 if (first || thisEndFrame > endFrame) {
|
Chris@1266
|
1324 endFrame = thisEndFrame;
|
Chris@1266
|
1325 }
|
Chris@1266
|
1326 first = false;
|
Chris@1266
|
1327 }
|
Chris@127
|
1328 }
|
Chris@127
|
1329
|
Chris@127
|
1330 if (first) return getModelsStartFrame();
|
Chris@127
|
1331 return endFrame;
|
Chris@127
|
1332 }
|
Chris@127
|
1333
|
Chris@908
|
1334 sv_samplerate_t
|
Chris@127
|
1335 View::getModelsSampleRate() const
|
Chris@127
|
1336 {
|
Chris@127
|
1337 //!!! Just go for the first, for now. If we were supporting
|
Chris@127
|
1338 // multiple samplerates, we'd probably want to do frame/time
|
Chris@127
|
1339 // conversion in the model
|
Chris@127
|
1340
|
Chris@159
|
1341 //!!! nah, this wants to always return the sr of the main model!
|
Chris@159
|
1342
|
Chris@1475
|
1343 for (Layer *layer: m_layerStack) {
|
Chris@1475
|
1344
|
Chris@1475
|
1345 auto model = ModelById::get(layer->getModel());
|
Chris@1475
|
1346
|
Chris@1475
|
1347 if (model && model->isOK()) {
|
Chris@1475
|
1348 return model->getSampleRate();
|
Chris@1266
|
1349 }
|
Chris@127
|
1350 }
|
Chris@1475
|
1351
|
Chris@127
|
1352 return 0;
|
Chris@127
|
1353 }
|
Chris@127
|
1354
|
Chris@315
|
1355 View::ModelSet
|
Chris@315
|
1356 View::getModels()
|
Chris@315
|
1357 {
|
Chris@315
|
1358 ModelSet models;
|
Chris@315
|
1359
|
Chris@315
|
1360 for (int i = 0; i < getLayerCount(); ++i) {
|
Chris@315
|
1361
|
Chris@315
|
1362 Layer *layer = getLayer(i);
|
Chris@315
|
1363
|
Chris@315
|
1364 if (dynamic_cast<TimeRulerLayer *>(layer)) {
|
Chris@315
|
1365 continue;
|
Chris@315
|
1366 }
|
Chris@315
|
1367
|
Chris@1475
|
1368 if (layer && !layer->getModel().isNone()) {
|
Chris@1475
|
1369 models.insert(layer->getModel());
|
Chris@315
|
1370 }
|
Chris@315
|
1371 }
|
Chris@315
|
1372
|
Chris@315
|
1373 return models;
|
Chris@315
|
1374 }
|
Chris@315
|
1375
|
Chris@1475
|
1376 ModelId
|
Chris@320
|
1377 View::getAligningModel() const
|
Chris@301
|
1378 {
|
Chris@320
|
1379 if (!m_manager ||
|
Chris@320
|
1380 !m_manager->getAlignMode() ||
|
Chris@1479
|
1381 m_manager->getPlaybackModel().isNone()) {
|
Chris@1475
|
1382 return {};
|
Chris@314
|
1383 }
|
Chris@301
|
1384
|
Chris@1475
|
1385 ModelId anyModel;
|
Chris@1475
|
1386 ModelId alignedModel;
|
Chris@1475
|
1387 ModelId goodModel;
|
Chris@1475
|
1388
|
Chris@1475
|
1389 for (auto layer: m_layerStack) {
|
Chris@320
|
1390
|
Chris@320
|
1391 if (!layer) continue;
|
Chris@320
|
1392 if (dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@301
|
1393
|
Chris@1475
|
1394 auto model = ModelById::get(layer->getModel());
|
Chris@301
|
1395 if (!model) continue;
|
Chris@301
|
1396
|
Chris@1475
|
1397 anyModel = model->getId();
|
Chris@1475
|
1398
|
Chris@1475
|
1399 if (!model->getAlignmentReference().isNone()) {
|
Chris@1475
|
1400 alignedModel = model->getId();
|
Chris@320
|
1401 if (layer->isLayerOpaque() ||
|
Chris@1475
|
1402 std::dynamic_pointer_cast
|
Chris@1475
|
1403 <RangeSummarisableTimeValueModel>(model)) {
|
Chris@1475
|
1404 goodModel = model->getId();
|
Chris@320
|
1405 }
|
Chris@301
|
1406 }
|
Chris@320
|
1407 }
|
Chris@301
|
1408
|
Chris@1475
|
1409 if (!goodModel.isNone()) return goodModel;
|
Chris@1475
|
1410 else if (!alignedModel.isNone()) return alignedModel;
|
Chris@320
|
1411 else return anyModel;
|
Chris@320
|
1412 }
|
Chris@320
|
1413
|
Chris@908
|
1414 sv_frame_t
|
Chris@908
|
1415 View::alignFromReference(sv_frame_t f) const
|
Chris@320
|
1416 {
|
Chris@856
|
1417 if (!m_manager || !m_manager->getAlignMode()) return f;
|
Chris@1475
|
1418 auto aligningModel = ModelById::get(getAligningModel());
|
Chris@320
|
1419 if (!aligningModel) return f;
|
Chris@320
|
1420 return aligningModel->alignFromReference(f);
|
Chris@320
|
1421 }
|
Chris@320
|
1422
|
Chris@908
|
1423 sv_frame_t
|
Chris@908
|
1424 View::alignToReference(sv_frame_t f) const
|
Chris@320
|
1425 {
|
Chris@321
|
1426 if (!m_manager->getAlignMode()) return f;
|
Chris@1475
|
1427 auto aligningModel = ModelById::get(getAligningModel());
|
Chris@320
|
1428 if (!aligningModel) return f;
|
Chris@320
|
1429 return aligningModel->alignToReference(f);
|
Chris@320
|
1430 }
|
Chris@320
|
1431
|
Chris@908
|
1432 sv_frame_t
|
Chris@320
|
1433 View::getAlignedPlaybackFrame() const
|
Chris@320
|
1434 {
|
Chris@856
|
1435 if (!m_manager) return 0;
|
Chris@908
|
1436 sv_frame_t pf = m_manager->getPlaybackFrame();
|
Chris@321
|
1437 if (!m_manager->getAlignMode()) return pf;
|
Chris@321
|
1438
|
Chris@1475
|
1439 auto aligningModel = ModelById::get(getAligningModel());
|
Chris@320
|
1440 if (!aligningModel) return pf;
|
Chris@830
|
1441
|
Chris@908
|
1442 sv_frame_t af = aligningModel->alignFromReference(pf);
|
Chris@301
|
1443
|
Chris@301
|
1444 return af;
|
Chris@301
|
1445 }
|
Chris@301
|
1446
|
Chris@127
|
1447 bool
|
Chris@127
|
1448 View::areLayersScrollable() const
|
Chris@127
|
1449 {
|
Chris@127
|
1450 // True iff all views are scrollable
|
Chris@835
|
1451 for (LayerList::const_iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) {
|
Chris@1266
|
1452 if (!(*i)->isLayerScrollable(this)) return false;
|
Chris@127
|
1453 }
|
Chris@127
|
1454 return true;
|
Chris@127
|
1455 }
|
Chris@127
|
1456
|
Chris@127
|
1457 View::LayerList
|
Chris@127
|
1458 View::getScrollableBackLayers(bool testChanged, bool &changed) const
|
Chris@127
|
1459 {
|
Chris@127
|
1460 changed = false;
|
Chris@127
|
1461
|
Chris@127
|
1462 // We want a list of all the scrollable layers that are behind the
|
Chris@127
|
1463 // backmost non-scrollable layer.
|
Chris@127
|
1464
|
Chris@127
|
1465 LayerList scrollables;
|
Chris@127
|
1466 bool metUnscrollable = false;
|
Chris@127
|
1467
|
Chris@835
|
1468 for (LayerList::const_iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) {
|
Chris@587
|
1469 // SVDEBUG << "View::getScrollableBackLayers: calling isLayerDormant on layer " << *i << endl;
|
Chris@682
|
1470 // cerr << "(name is " << (*i)->objectName() << ")"
|
Chris@682
|
1471 // << endl;
|
Chris@587
|
1472 // SVDEBUG << "View::getScrollableBackLayers: I am " << this << endl;
|
Chris@1266
|
1473 if ((*i)->isLayerDormant(this)) continue;
|
Chris@1266
|
1474 if ((*i)->isLayerOpaque()) {
|
Chris@1266
|
1475 // You can't see anything behind an opaque layer!
|
Chris@1266
|
1476 scrollables.clear();
|
Chris@127
|
1477 if (metUnscrollable) break;
|
Chris@1266
|
1478 }
|
Chris@1266
|
1479 if (!metUnscrollable && (*i)->isLayerScrollable(this)) {
|
Chris@127
|
1480 scrollables.push_back(*i);
|
Chris@127
|
1481 } else {
|
Chris@127
|
1482 metUnscrollable = true;
|
Chris@127
|
1483 }
|
Chris@127
|
1484 }
|
Chris@127
|
1485
|
Chris@127
|
1486 if (testChanged && scrollables != m_lastScrollableBackLayers) {
|
Chris@1266
|
1487 m_lastScrollableBackLayers = scrollables;
|
Chris@1266
|
1488 changed = true;
|
Chris@127
|
1489 }
|
Chris@127
|
1490 return scrollables;
|
Chris@127
|
1491 }
|
Chris@127
|
1492
|
Chris@127
|
1493 View::LayerList
|
Chris@127
|
1494 View::getNonScrollableFrontLayers(bool testChanged, bool &changed) const
|
Chris@127
|
1495 {
|
Chris@127
|
1496 changed = false;
|
Chris@127
|
1497 LayerList nonScrollables;
|
Chris@127
|
1498
|
Chris@127
|
1499 // Everything in front of the first non-scrollable from the back
|
Chris@127
|
1500 // should also be considered non-scrollable
|
Chris@127
|
1501
|
Chris@127
|
1502 bool started = false;
|
Chris@127
|
1503
|
Chris@835
|
1504 for (LayerList::const_iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) {
|
Chris@1266
|
1505 if ((*i)->isLayerDormant(this)) continue;
|
Chris@1266
|
1506 if (!started && (*i)->isLayerScrollable(this)) {
|
Chris@1266
|
1507 continue;
|
Chris@1266
|
1508 }
|
Chris@1266
|
1509 started = true;
|
Chris@1266
|
1510 if ((*i)->isLayerOpaque()) {
|
Chris@1266
|
1511 // You can't see anything behind an opaque layer!
|
Chris@1266
|
1512 nonScrollables.clear();
|
Chris@1266
|
1513 }
|
Chris@1266
|
1514 nonScrollables.push_back(*i);
|
Chris@127
|
1515 }
|
Chris@127
|
1516
|
Chris@127
|
1517 if (testChanged && nonScrollables != m_lastNonScrollableBackLayers) {
|
Chris@1266
|
1518 m_lastNonScrollableBackLayers = nonScrollables;
|
Chris@1266
|
1519 changed = true;
|
Chris@127
|
1520 }
|
Chris@127
|
1521
|
Chris@127
|
1522 return nonScrollables;
|
Chris@127
|
1523 }
|
Chris@127
|
1524
|
Chris@1327
|
1525 ZoomLevel
|
Chris@1327
|
1526 View::getZoomConstraintLevel(ZoomLevel zoomLevel,
|
Chris@1327
|
1527 ZoomConstraint::RoundingDirection dir)
|
Chris@127
|
1528 const
|
Chris@127
|
1529 {
|
Chris@1327
|
1530 using namespace std::rel_ops;
|
Chris@1327
|
1531
|
Chris@1354
|
1532 ZoomLevel candidate =
|
Chris@1354
|
1533 RelativelyFineZoomConstraint().getNearestZoomLevel(zoomLevel, dir);
|
Chris@1354
|
1534
|
Chris@1354
|
1535 for (auto i : m_layerStack) {
|
Chris@1354
|
1536
|
Chris@1354
|
1537 if (i->supportsOtherZoomLevels() || !(i->getZoomConstraint())) {
|
Chris@1354
|
1538 continue;
|
Chris@1354
|
1539 }
|
Chris@1354
|
1540
|
Chris@1327
|
1541 ZoomLevel thisLevel =
|
Chris@1354
|
1542 i->getZoomConstraint()->getNearestZoomLevel(zoomLevel, dir);
|
Chris@1266
|
1543
|
Chris@1266
|
1544 // Go for the block size that's furthest from the one
|
Chris@1266
|
1545 // passed in. Most of the time, that's what we want.
|
Chris@1354
|
1546 if ((thisLevel > zoomLevel && thisLevel > candidate) ||
|
Chris@1327
|
1547 (thisLevel < zoomLevel && thisLevel < candidate)) {
|
Chris@1327
|
1548 candidate = thisLevel;
|
Chris@1266
|
1549 }
|
Chris@127
|
1550 }
|
Chris@127
|
1551
|
Chris@127
|
1552 return candidate;
|
Chris@127
|
1553 }
|
Chris@127
|
1554
|
Chris@1354
|
1555 int
|
Chris@1354
|
1556 View::countZoomLevels() const
|
Chris@1354
|
1557 {
|
Chris@1354
|
1558 int n = 0;
|
Chris@1354
|
1559 ZoomLevel min = ZoomConstraint().getMinZoomLevel();
|
Chris@1354
|
1560 ZoomLevel max = ZoomConstraint().getMaxZoomLevel();
|
Chris@1354
|
1561 ZoomLevel level = min;
|
Chris@1354
|
1562 while (true) {
|
Chris@1354
|
1563 ++n;
|
Chris@1354
|
1564 if (level == max) {
|
Chris@1354
|
1565 break;
|
Chris@1354
|
1566 }
|
Chris@1354
|
1567 level = getZoomConstraintLevel
|
Chris@1354
|
1568 (level.incremented(), ZoomConstraint::RoundUp);
|
Chris@1354
|
1569 }
|
Chris@1355
|
1570 // cerr << "View::countZoomLevels: " << n << endl;
|
Chris@1354
|
1571 return n;
|
Chris@1354
|
1572 }
|
Chris@1354
|
1573
|
Chris@1354
|
1574 ZoomLevel
|
Chris@1354
|
1575 View::getZoomLevelByIndex(int ix) const
|
Chris@1354
|
1576 {
|
Chris@1354
|
1577 int n = 0;
|
Chris@1354
|
1578 ZoomLevel min = ZoomConstraint().getMinZoomLevel();
|
Chris@1354
|
1579 ZoomLevel max = ZoomConstraint().getMaxZoomLevel();
|
Chris@1354
|
1580 ZoomLevel level = min;
|
Chris@1354
|
1581 while (true) {
|
Chris@1354
|
1582 if (n == ix) {
|
Chris@1355
|
1583 // cerr << "View::getZoomLevelByIndex: " << ix << " -> " << level
|
Chris@1355
|
1584 // << endl;
|
Chris@1354
|
1585 return level;
|
Chris@1354
|
1586 }
|
Chris@1354
|
1587 ++n;
|
Chris@1354
|
1588 if (level == max) {
|
Chris@1354
|
1589 break;
|
Chris@1354
|
1590 }
|
Chris@1354
|
1591 level = getZoomConstraintLevel
|
Chris@1354
|
1592 (level.incremented(), ZoomConstraint::RoundUp);
|
Chris@1354
|
1593 }
|
Chris@1355
|
1594 // cerr << "View::getZoomLevelByIndex: " << ix << " -> " << max << " (max)"
|
Chris@1355
|
1595 // << endl;
|
Chris@1354
|
1596 return max;
|
Chris@1354
|
1597 }
|
Chris@1354
|
1598
|
Chris@1354
|
1599 int
|
Chris@1354
|
1600 View::getZoomLevelIndex(ZoomLevel z) const
|
Chris@1354
|
1601 {
|
Chris@1354
|
1602 int n = 0;
|
Chris@1354
|
1603 ZoomLevel min = ZoomConstraint().getMinZoomLevel();
|
Chris@1354
|
1604 ZoomLevel max = ZoomConstraint().getMaxZoomLevel();
|
Chris@1354
|
1605 ZoomLevel level = min;
|
Chris@1354
|
1606 while (true) {
|
Chris@1354
|
1607 if (z == level) {
|
Chris@1355
|
1608 // cerr << "View::getZoomLevelIndex: " << z << " -> " << n
|
Chris@1355
|
1609 // << endl;
|
Chris@1354
|
1610 return n;
|
Chris@1354
|
1611 }
|
Chris@1354
|
1612 ++n;
|
Chris@1354
|
1613 if (level == max) {
|
Chris@1354
|
1614 break;
|
Chris@1354
|
1615 }
|
Chris@1354
|
1616 level = getZoomConstraintLevel
|
Chris@1354
|
1617 (level.incremented(), ZoomConstraint::RoundUp);
|
Chris@1354
|
1618 }
|
Chris@1355
|
1619 // cerr << "View::getZoomLevelIndex: " << z << " -> " << n << " (max)"
|
Chris@1355
|
1620 // << endl;
|
Chris@1354
|
1621 return n;
|
Chris@1354
|
1622 }
|
Chris@1354
|
1623
|
Chris@1401
|
1624 double
|
Chris@1401
|
1625 View::scaleSize(double size) const
|
Chris@1401
|
1626 {
|
Chris@1401
|
1627 static double ratio = 0.0;
|
Chris@1401
|
1628
|
Chris@1401
|
1629 if (ratio == 0.0) {
|
Chris@1401
|
1630 double baseEm;
|
Chris@1401
|
1631 #ifdef Q_OS_MAC
|
Chris@1401
|
1632 baseEm = 17.0;
|
Chris@1401
|
1633 #else
|
Chris@1401
|
1634 baseEm = 15.0;
|
Chris@1401
|
1635 #endif
|
Chris@1401
|
1636 double em = QFontMetrics(QFont()).height();
|
Chris@1401
|
1637 ratio = em / baseEm;
|
Chris@1401
|
1638
|
Chris@1401
|
1639 SVDEBUG << "View::scaleSize: ratio is " << ratio
|
Chris@1401
|
1640 << " (em = " << em << ")" << endl;
|
Chris@1401
|
1641
|
Chris@1401
|
1642 if (ratio < 1.0) {
|
Chris@1401
|
1643 SVDEBUG << "View::scaleSize: rounding ratio up to 1.0" << endl;
|
Chris@1401
|
1644 ratio = 1.0;
|
Chris@1401
|
1645 }
|
Chris@1401
|
1646 }
|
Chris@1401
|
1647
|
Chris@1401
|
1648 return size * ratio;
|
Chris@1401
|
1649 }
|
Chris@1401
|
1650
|
Chris@1402
|
1651 int
|
Chris@1402
|
1652 View::scalePixelSize(int size) const
|
Chris@1402
|
1653 {
|
Chris@1402
|
1654 double d = scaleSize(size);
|
Chris@1402
|
1655 int i = int(d + 0.5);
|
Chris@1402
|
1656 if (size != 0 && i == 0) i = 1;
|
Chris@1402
|
1657 return i;
|
Chris@1402
|
1658 }
|
Chris@1402
|
1659
|
Chris@1401
|
1660 double
|
Chris@1401
|
1661 View::scalePenWidth(double width) const
|
Chris@1401
|
1662 {
|
Chris@1401
|
1663 if (width <= 0) { // zero-width pen, produce a scaled one-pixel pen
|
Chris@1401
|
1664 width = 1;
|
Chris@1401
|
1665 }
|
Chris@1401
|
1666 double ratio = scaleSize(1.0);
|
Chris@1401
|
1667 return width * sqrt(ratio);
|
Chris@1401
|
1668 }
|
Chris@1401
|
1669
|
Chris@1401
|
1670 QPen
|
Chris@1401
|
1671 View::scalePen(QPen pen) const
|
Chris@1401
|
1672 {
|
Chris@1401
|
1673 return QPen(pen.color(), scalePenWidth(pen.width()));
|
Chris@1401
|
1674 }
|
Chris@1401
|
1675
|
Chris@183
|
1676 bool
|
Chris@183
|
1677 View::areLayerColoursSignificant() const
|
Chris@183
|
1678 {
|
Chris@835
|
1679 for (LayerList::const_iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) {
|
Chris@1266
|
1680 if ((*i)->getLayerColourSignificance() ==
|
Chris@287
|
1681 Layer::ColourHasMeaningfulValue) return true;
|
Chris@183
|
1682 if ((*i)->isLayerOpaque()) break;
|
Chris@183
|
1683 }
|
Chris@183
|
1684 return false;
|
Chris@183
|
1685 }
|
Chris@183
|
1686
|
Chris@217
|
1687 bool
|
Chris@217
|
1688 View::hasTopLayerTimeXAxis() const
|
Chris@217
|
1689 {
|
Chris@835
|
1690 LayerList::const_iterator i = m_layerStack.end();
|
Chris@835
|
1691 if (i == m_layerStack.begin()) return false;
|
Chris@217
|
1692 --i;
|
Chris@217
|
1693 return (*i)->hasTimeXAxis();
|
Chris@217
|
1694 }
|
Chris@217
|
1695
|
Chris@127
|
1696 void
|
Chris@127
|
1697 View::zoom(bool in)
|
Chris@127
|
1698 {
|
Chris@1183
|
1699 ZoomLevel newZoomLevel = m_zoomLevel;
|
Chris@127
|
1700
|
Chris@127
|
1701 if (in) {
|
Chris@1324
|
1702 newZoomLevel = getZoomConstraintLevel(m_zoomLevel.decremented(),
|
Chris@1183
|
1703 ZoomConstraint::RoundDown);
|
Chris@127
|
1704 } else {
|
Chris@1324
|
1705 newZoomLevel = getZoomConstraintLevel(m_zoomLevel.incremented(),
|
Chris@1183
|
1706 ZoomConstraint::RoundUp);
|
Chris@127
|
1707 }
|
Chris@127
|
1708
|
Chris@1327
|
1709 using namespace std::rel_ops;
|
Chris@1327
|
1710
|
Chris@127
|
1711 if (newZoomLevel != m_zoomLevel) {
|
Chris@1266
|
1712 setZoomLevel(newZoomLevel);
|
Chris@127
|
1713 }
|
Chris@127
|
1714 }
|
Chris@127
|
1715
|
Chris@127
|
1716 void
|
Chris@510
|
1717 View::scroll(bool right, bool lots, bool e)
|
Chris@127
|
1718 {
|
Chris@908
|
1719 sv_frame_t delta;
|
Chris@127
|
1720 if (lots) {
|
Chris@1266
|
1721 delta = (getEndFrame() - getStartFrame()) / 2;
|
Chris@127
|
1722 } else {
|
Chris@1266
|
1723 delta = (getEndFrame() - getStartFrame()) / 20;
|
Chris@127
|
1724 }
|
Chris@127
|
1725 if (right) delta = -delta;
|
Chris@127
|
1726
|
Chris@1363
|
1727 #ifdef DEBUG_VIEW
|
Chris@1363
|
1728 SVCERR << "View::scroll(" << right << ", " << lots << ", " << e << "): "
|
Chris@1363
|
1729 << "delta = " << delta << ", m_centreFrame = " << m_centreFrame
|
Chris@1363
|
1730 << endl;
|
Chris@1363
|
1731 #endif
|
Chris@1363
|
1732
|
Chris@908
|
1733 if (m_centreFrame < delta) {
|
Chris@1266
|
1734 setCentreFrame(0, e);
|
Chris@908
|
1735 } else if (m_centreFrame - delta >= getModelsEndFrame()) {
|
Chris@1266
|
1736 setCentreFrame(getModelsEndFrame(), e);
|
Chris@127
|
1737 } else {
|
Chris@1266
|
1738 setCentreFrame(m_centreFrame - delta, e);
|
Chris@127
|
1739 }
|
Chris@127
|
1740 }
|
Chris@127
|
1741
|
Chris@127
|
1742 void
|
Chris@797
|
1743 View::cancelClicked()
|
Chris@797
|
1744 {
|
Chris@797
|
1745 QPushButton *cancel = qobject_cast<QPushButton *>(sender());
|
Chris@797
|
1746 if (!cancel) return;
|
Chris@797
|
1747
|
Chris@797
|
1748 for (ProgressMap::iterator i = m_progressBars.begin();
|
Chris@1266
|
1749 i != m_progressBars.end(); ++i) {
|
Chris@797
|
1750
|
Chris@797
|
1751 if (i->second.cancel == cancel) {
|
Chris@797
|
1752
|
Chris@1476
|
1753 /*!!!
|
Chris@797
|
1754 Layer *layer = i->first;
|
Chris@1476
|
1755 Model *model = layer->getModel();
|
Chris@1475
|
1756
|
Chris@1475
|
1757 //!!! todo: restore this behaviour
|
Chris@797
|
1758 if (model) model->abandon();
|
Chris@1475
|
1759 */
|
Chris@797
|
1760 }
|
Chris@797
|
1761 }
|
Chris@797
|
1762 }
|
Chris@797
|
1763
|
Chris@797
|
1764 void
|
Chris@127
|
1765 View::checkProgress(void *object)
|
Chris@127
|
1766 {
|
Chris@1448
|
1767 if (!m_showProgress) {
|
Chris@1448
|
1768 #ifdef DEBUG_PROGRESS_STUFF
|
Chris@1448
|
1769 SVCERR << "View[" << this << "]::checkProgress(" << object << "): "
|
Chris@1448
|
1770 << "m_showProgress is off" << endl;
|
Chris@1448
|
1771 #endif
|
Chris@1448
|
1772 return;
|
Chris@1448
|
1773 }
|
Chris@127
|
1774
|
Chris@1458
|
1775 QSettings settings;
|
Chris@1458
|
1776 settings.beginGroup("View");
|
Chris@1458
|
1777 bool showCancelButton = settings.value("showcancelbuttons", true).toBool();
|
Chris@1458
|
1778 settings.endGroup();
|
Chris@1458
|
1779
|
Chris@127
|
1780 int ph = height();
|
Chris@1448
|
1781 bool found = false;
|
Chris@127
|
1782
|
Chris@555
|
1783 for (ProgressMap::iterator i = m_progressBars.begin();
|
Chris@1266
|
1784 i != m_progressBars.end(); ++i) {
|
Chris@127
|
1785
|
Chris@555
|
1786 QProgressBar *pb = i->second.bar;
|
Chris@797
|
1787 QPushButton *cancel = i->second.cancel;
|
Chris@555
|
1788
|
Chris@1266
|
1789 if (i->first == object) {
|
Chris@127
|
1790
|
Chris@1448
|
1791 found = true;
|
Chris@1457
|
1792
|
Chris@1457
|
1793 if (i->first->isLayerDormant(this)) {
|
Chris@1457
|
1794 // A dormant (invisible) layer can still be busy
|
Chris@1457
|
1795 // generating, but we don't usually want to indicate
|
Chris@1457
|
1796 // it because it probably means it's a duplicate of a
|
Chris@1457
|
1797 // visible layer
|
Chris@1457
|
1798 cancel->hide();
|
Chris@1457
|
1799 pb->hide();
|
Chris@1457
|
1800 continue;
|
Chris@1457
|
1801 }
|
Chris@1448
|
1802
|
Chris@555
|
1803 // The timer is used to test for stalls. If the progress
|
Chris@555
|
1804 // bar does not get updated for some length of time, the
|
Chris@555
|
1805 // timer prompts it to go back into "indeterminate" mode
|
Chris@555
|
1806 QTimer *timer = i->second.checkTimer;
|
Chris@555
|
1807
|
Chris@1266
|
1808 int completion = i->first->getCompletion(this);
|
Chris@301
|
1809 QString text = i->first->getPropertyContainerName();
|
Chris@583
|
1810 QString error = i->first->getError(this);
|
Chris@583
|
1811
|
Chris@1448
|
1812 #ifdef DEBUG_PROGRESS_STUFF
|
Chris@1448
|
1813 SVCERR << "View[" << this << "]::checkProgress(" << object << "): "
|
Chris@1448
|
1814 << "found progress bar " << pb << " for layer at height " << ph
|
Chris@1448
|
1815 << ": completion = " << completion << endl;
|
Chris@1448
|
1816 #endif
|
Chris@1448
|
1817
|
Chris@583
|
1818 if (error != "" && error != m_lastError) {
|
Chris@583
|
1819 QMessageBox::critical(this, tr("Layer rendering error"), error);
|
Chris@583
|
1820 m_lastError = error;
|
Chris@583
|
1821 }
|
Chris@301
|
1822
|
Chris@1476
|
1823 ModelId modelId = i->first->getModel();
|
Chris@1476
|
1824
|
Chris@1476
|
1825 auto model = ModelById::get(modelId);
|
Chris@1476
|
1826 auto wfm = std::dynamic_pointer_cast
|
Chris@1476
|
1827 <RangeSummarisableTimeValueModel>(model);
|
Chris@387
|
1828
|
Chris@388
|
1829 if (completion > 0) {
|
Chris@555
|
1830 pb->setMaximum(100); // was 0, for indeterminate start
|
Chris@388
|
1831 }
|
Chris@388
|
1832
|
Chris@301
|
1833 if (completion >= 100) {
|
Chris@1476
|
1834
|
Chris@326
|
1835 if (wfm ||
|
Chris@776
|
1836 (model &&
|
Chris@1476
|
1837 (wfm = ModelById::getAs<RangeSummarisableTimeValueModel>
|
Chris@776
|
1838 (model->getSourceModel())))) {
|
Chris@301
|
1839 completion = wfm->getAlignmentCompletion();
|
Chris@1448
|
1840
|
Chris@1448
|
1841 #ifdef DEBUG_PROGRESS_STUFF
|
Chris@1448
|
1842 SVCERR << "View[" << this << "]::checkProgress(" << object << "): "
|
Chris@1448
|
1843 << "alignment completion = " << completion << endl;
|
Chris@1448
|
1844 #endif
|
Chris@1448
|
1845
|
Chris@301
|
1846 if (completion < 100) {
|
Chris@301
|
1847 text = tr("Alignment");
|
Chris@301
|
1848 }
|
Chris@301
|
1849 }
|
Chris@387
|
1850
|
Chris@387
|
1851 } else if (wfm) {
|
Chris@387
|
1852 update(); // ensure duration &c gets updated
|
Chris@301
|
1853 }
|
Chris@127
|
1854
|
Chris@1266
|
1855 if (completion >= 100) {
|
Chris@1266
|
1856
|
Chris@1266
|
1857 pb->hide();
|
Chris@797
|
1858 cancel->hide();
|
Chris@555
|
1859 timer->stop();
|
Chris@127
|
1860
|
Chris@1266
|
1861 } else {
|
Chris@127
|
1862
|
Chris@555
|
1863 if (!pb->isVisible()) {
|
Chris@555
|
1864 i->second.lastCheck = 0;
|
Chris@555
|
1865 timer->setInterval(2000);
|
Chris@555
|
1866 timer->start();
|
Chris@555
|
1867 }
|
Chris@555
|
1868
|
Chris@1458
|
1869 if (showCancelButton) {
|
Chris@1458
|
1870
|
Chris@1458
|
1871 int scaled20 = scalePixelSize(20);
|
Chris@1458
|
1872
|
Chris@1458
|
1873 cancel->move(0, ph - pb->height()/2 - scaled20/2);
|
Chris@1458
|
1874 cancel->show();
|
Chris@1458
|
1875
|
Chris@1458
|
1876 pb->setValue(completion);
|
Chris@1458
|
1877 pb->move(scaled20, ph - pb->height());
|
Chris@1458
|
1878
|
Chris@1458
|
1879 } else {
|
Chris@1458
|
1880
|
Chris@1458
|
1881 cancel->hide();
|
Chris@1458
|
1882
|
Chris@1458
|
1883 pb->setValue(completion);
|
Chris@1458
|
1884 pb->move(0, ph - pb->height());
|
Chris@1458
|
1885 }
|
Chris@1266
|
1886
|
Chris@1266
|
1887 pb->show();
|
Chris@1266
|
1888 pb->update();
|
Chris@1266
|
1889
|
Chris@1266
|
1890 ph -= pb->height();
|
Chris@1266
|
1891 }
|
Chris@1266
|
1892 } else {
|
Chris@1266
|
1893 if (pb->isVisible()) {
|
Chris@1266
|
1894 ph -= pb->height();
|
Chris@1266
|
1895 }
|
Chris@1266
|
1896 }
|
Chris@127
|
1897 }
|
Chris@1448
|
1898
|
Chris@1448
|
1899 if (!found) {
|
Chris@1448
|
1900 #ifdef DEBUG_PROGRESS_STUFF
|
Chris@1448
|
1901 SVCERR << "View[" << this << "]::checkProgress(" << object << "): "
|
Chris@1448
|
1902 << "failed to find layer " << object << " in progress map"
|
Chris@1448
|
1903 << endl;
|
Chris@1448
|
1904 #endif
|
Chris@1448
|
1905 }
|
Chris@127
|
1906 }
|
Chris@127
|
1907
|
Chris@555
|
1908 void
|
Chris@555
|
1909 View::progressCheckStalledTimerElapsed()
|
Chris@555
|
1910 {
|
Chris@555
|
1911 QObject *s = sender();
|
Chris@555
|
1912 QTimer *t = qobject_cast<QTimer *>(s);
|
Chris@555
|
1913 if (!t) return;
|
Chris@1448
|
1914
|
Chris@555
|
1915 for (ProgressMap::iterator i = m_progressBars.begin();
|
Chris@555
|
1916 i != m_progressBars.end(); ++i) {
|
Chris@1448
|
1917
|
Chris@555
|
1918 if (i->second.checkTimer == t) {
|
Chris@1448
|
1919
|
Chris@1448
|
1920 #ifdef DEBUG_PROGRESS_STUFF
|
Chris@1448
|
1921 SVCERR << "View[" << this << "]::progressCheckStalledTimerElapsed for layer " << i->first << endl;
|
Chris@1448
|
1922 #endif
|
Chris@1448
|
1923
|
Chris@555
|
1924 int value = i->second.bar->value();
|
Chris@555
|
1925 if (value > 0 && value == i->second.lastCheck) {
|
Chris@555
|
1926 i->second.bar->setMaximum(0); // indeterminate
|
Chris@555
|
1927 }
|
Chris@555
|
1928 i->second.lastCheck = value;
|
Chris@555
|
1929 return;
|
Chris@555
|
1930 }
|
Chris@555
|
1931 }
|
Chris@555
|
1932 }
|
Chris@555
|
1933
|
Chris@384
|
1934 int
|
Chris@384
|
1935 View::getProgressBarWidth() const
|
Chris@384
|
1936 {
|
Chris@384
|
1937 for (ProgressMap::const_iterator i = m_progressBars.begin();
|
Chris@1266
|
1938 i != m_progressBars.end(); ++i) {
|
Chris@555
|
1939 if (i->second.bar && i->second.bar->isVisible()) {
|
Chris@555
|
1940 return i->second.bar->width();
|
Chris@555
|
1941 }
|
Chris@384
|
1942 }
|
Chris@384
|
1943
|
Chris@384
|
1944 return 0;
|
Chris@384
|
1945 }
|
Chris@384
|
1946
|
Chris@127
|
1947 void
|
Chris@339
|
1948 View::setPaintFont(QPainter &paint)
|
Chris@339
|
1949 {
|
Chris@955
|
1950 int scaleFactor = 1;
|
Chris@956
|
1951 int dpratio = effectiveDevicePixelRatio();
|
Chris@955
|
1952 if (dpratio > 1) {
|
Chris@955
|
1953 QPaintDevice *dev = paint.device();
|
Chris@955
|
1954 if (dynamic_cast<QPixmap *>(dev) || dynamic_cast<QImage *>(dev)) {
|
Chris@955
|
1955 scaleFactor = dpratio;
|
Chris@955
|
1956 }
|
Chris@955
|
1957 }
|
Chris@955
|
1958
|
Chris@339
|
1959 QFont font(paint.font());
|
Chris@955
|
1960 font.setPointSize(Preferences::getInstance()->getViewFontSize()
|
Chris@955
|
1961 * scaleFactor);
|
Chris@339
|
1962 paint.setFont(font);
|
Chris@339
|
1963 }
|
Chris@339
|
1964
|
Chris@915
|
1965 QRect
|
Chris@915
|
1966 View::getPaintRect() const
|
Chris@915
|
1967 {
|
Chris@919
|
1968 return rect();
|
Chris@915
|
1969 }
|
Chris@915
|
1970
|
Chris@339
|
1971 void
|
Chris@127
|
1972 View::paintEvent(QPaintEvent *e)
|
Chris@127
|
1973 {
|
Chris@127
|
1974 // Profiler prof("View::paintEvent", false);
|
Chris@800
|
1975 // cerr << "View::paintEvent: centre frame is " << m_centreFrame << endl;
|
matthiasm@785
|
1976
|
Chris@835
|
1977 if (m_layerStack.empty()) {
|
Chris@1266
|
1978 QFrame::paintEvent(e);
|
Chris@1266
|
1979 return;
|
Chris@127
|
1980 }
|
Chris@127
|
1981
|
Chris@127
|
1982 // ensure our constraints are met
|
Chris@1354
|
1983 m_zoomLevel = getZoomConstraintLevel
|
Chris@1354
|
1984 (m_zoomLevel, ZoomConstraint::RoundNearest);
|
Chris@127
|
1985
|
Chris@1357
|
1986 // We have a cache, which retains the state of scrollable (back)
|
Chris@1357
|
1987 // layers from one paint to the next, and a buffer, which we paint
|
Chris@1357
|
1988 // onto before copying directly to the widget. Both are at scaled
|
Chris@1357
|
1989 // resolution (e.g. 2x on a pixel-doubled display), whereas the
|
Chris@1357
|
1990 // paint event always comes in at formal (1x) resolution.
|
Chris@1357
|
1991
|
Chris@1357
|
1992 // If we touch the cache, we always leave it in a valid state
|
Chris@1357
|
1993 // across its whole extent. When another method invalidates the
|
Chris@1357
|
1994 // cache, it does so by setting m_cacheValid false, so if that
|
Chris@1357
|
1995 // flag is true on entry, then the cache is valid across its whole
|
Chris@1357
|
1996 // extent - although it may be valid for a different centre frame,
|
Chris@1357
|
1997 // zoom level, or view size from those now in effect.
|
Chris@1357
|
1998
|
Chris@1357
|
1999 // Our process goes:
|
Chris@1357
|
2000 //
|
Chris@1357
|
2001 // 1. Check whether we have any scrollable (cacheable) layers. If
|
Chris@1357
|
2002 // we don't, then invalidate and ignore the cache and go to
|
Chris@1357
|
2003 // step 5. Otherwise:
|
Chris@1357
|
2004 //
|
Chris@1357
|
2005 // 2. Check the cache, scroll as necessary, identify any area that
|
Chris@1357
|
2006 // needs to be refreshed (this might be the whole cache).
|
Chris@1357
|
2007 //
|
Chris@1357
|
2008 // 3. Paint to cache the area that needs to be refreshed, from the
|
Chris@1357
|
2009 // stack of scrollable layers.
|
Chris@1357
|
2010 //
|
Chris@1357
|
2011 // 4. Paint to buffer from cache: if there are no non-cached areas
|
Chris@1357
|
2012 // or selections and the cache has not scrolled, then paint the
|
Chris@1357
|
2013 // union of the area of cache that has changed and the area
|
Chris@1357
|
2014 // that the paint event reported as exposed; otherwise paint
|
Chris@1357
|
2015 // the whole.
|
Chris@1357
|
2016 //
|
Chris@1357
|
2017 // 5. Paint the exposed area to the buffer from the cache plus all
|
Chris@1357
|
2018 // the layers that haven't been cached, plus selections etc.
|
Chris@1357
|
2019 //
|
Chris@1357
|
2020 // 6. Paint the exposed rect from the buffer.
|
Chris@1357
|
2021 //
|
Chris@1357
|
2022 // Note that all rects except the target for the final step are at
|
Chris@1357
|
2023 // cache (scaled, 2x as applicable) resolution.
|
Chris@1357
|
2024
|
Chris@1357
|
2025 int dpratio = effectiveDevicePixelRatio();
|
Chris@1357
|
2026
|
Chris@1357
|
2027 QRect requestedPaintArea(scaledRect(rect(), dpratio));
|
Chris@127
|
2028 if (e) {
|
Chris@1357
|
2029 // cut down to only the area actually exposed
|
Chris@1357
|
2030 requestedPaintArea &= scaledRect(e->rect(), dpratio);
|
Chris@127
|
2031 }
|
Chris@127
|
2032
|
Chris@127
|
2033 // If not all layers are scrollable, but some of the back layers
|
Chris@127
|
2034 // are, we should store only those in the cache.
|
Chris@127
|
2035
|
Chris@127
|
2036 bool layersChanged = false;
|
Chris@127
|
2037 LayerList scrollables = getScrollableBackLayers(true, layersChanged);
|
Chris@127
|
2038 LayerList nonScrollables = getNonScrollableFrontLayers(true, layersChanged);
|
Chris@127
|
2039
|
Chris@127
|
2040 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@682
|
2041 cerr << "View(" << this << ")::paintEvent: have " << scrollables.size()
|
Chris@1266
|
2042 << " scrollable back layers and " << nonScrollables.size()
|
Chris@1266
|
2043 << " non-scrollable front layers" << endl;
|
Chris@127
|
2044 #endif
|
Chris@127
|
2045
|
Chris@1357
|
2046 if (layersChanged || scrollables.empty()) {
|
Chris@1357
|
2047 m_cacheValid = false;
|
Chris@127
|
2048 }
|
Chris@127
|
2049
|
Chris@1357
|
2050 QRect wholeArea(scaledRect(rect(), dpratio));
|
Chris@1357
|
2051 QSize wholeSize(scaledSize(size(), dpratio));
|
Chris@1357
|
2052
|
Chris@1357
|
2053 if (!m_buffer || wholeSize != m_buffer->size()) {
|
Chris@952
|
2054 delete m_buffer;
|
Chris@1357
|
2055 m_buffer = new QPixmap(wholeSize);
|
Chris@952
|
2056 }
|
Chris@1357
|
2057
|
Chris@1357
|
2058 bool shouldUseCache = false;
|
Chris@1357
|
2059 bool shouldRepaintCache = false;
|
Chris@1357
|
2060 QRect cacheAreaToRepaint;
|
Chris@952
|
2061
|
Chris@1357
|
2062 static HitCount count("View cache");
|
Chris@1357
|
2063
|
Chris@127
|
2064 if (!scrollables.empty()) {
|
Chris@244
|
2065
|
Chris@1357
|
2066 shouldUseCache = true;
|
Chris@1357
|
2067 shouldRepaintCache = true;
|
Chris@1357
|
2068 cacheAreaToRepaint = wholeArea;
|
Chris@1357
|
2069
|
Chris@244
|
2070 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@682
|
2071 cerr << "View(" << this << "): cache " << m_cache << ", cache zoom "
|
Chris@682
|
2072 << m_cacheZoomLevel << ", zoom " << m_zoomLevel << endl;
|
Chris@244
|
2073 #endif
|
Chris@244
|
2074
|
Chris@1327
|
2075 using namespace std::rel_ops;
|
Chris@1327
|
2076
|
Chris@1357
|
2077 if (!m_cacheValid ||
|
Chris@1357
|
2078 !m_cache ||
|
Chris@1266
|
2079 m_cacheZoomLevel != m_zoomLevel ||
|
Chris@1357
|
2080 m_cache->size() != wholeSize) {
|
Chris@1357
|
2081
|
Chris@1357
|
2082 // cache is not valid at all
|
Chris@1357
|
2083
|
Chris@1357
|
2084 if (requestedPaintArea.width() < wholeSize.width() / 10) {
|
Chris@1357
|
2085
|
Chris@1357
|
2086 m_cacheValid = false;
|
Chris@1357
|
2087 shouldUseCache = false;
|
Chris@1357
|
2088 shouldRepaintCache = false;
|
Chris@1357
|
2089
|
Chris@127
|
2090 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1357
|
2091 cerr << "View(" << this << ")::paintEvent: cache is invalid but only small area requested, will repaint directly instead" << endl;
|
Chris@127
|
2092 #endif
|
Chris@1266
|
2093 } else {
|
Chris@1357
|
2094
|
Chris@1357
|
2095 if (!m_cache ||
|
Chris@1357
|
2096 m_cache->size() != wholeSize) {
|
Chris@1357
|
2097 delete m_cache;
|
Chris@1357
|
2098 m_cache = new QPixmap(wholeSize);
|
Chris@1357
|
2099 }
|
Chris@1357
|
2100
|
Chris@127
|
2101 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1357
|
2102 cerr << "View(" << this << ")::paintEvent: cache is invalid, will repaint whole" << endl;
|
Chris@127
|
2103 #endif
|
Chris@1266
|
2104 }
|
Chris@1266
|
2105
|
Chris@1357
|
2106 count.miss();
|
Chris@1357
|
2107
|
Chris@1266
|
2108 } else if (m_cacheCentreFrame != m_centreFrame) {
|
Chris@1266
|
2109
|
Chris@1357
|
2110 int dx = dpratio * (getXForFrame(m_cacheCentreFrame) -
|
Chris@1357
|
2111 getXForFrame(m_centreFrame));
|
Chris@1357
|
2112
|
Chris@1357
|
2113 if (dx > -m_cache->width() && dx < m_cache->width()) {
|
Chris@1357
|
2114
|
Chris@1408
|
2115 m_cache->scroll(dx, 0, m_cache->rect(), nullptr);
|
Chris@1357
|
2116
|
Chris@1357
|
2117 if (dx < 0) {
|
Chris@1357
|
2118 cacheAreaToRepaint =
|
Chris@1357
|
2119 QRect(m_cache->width() + dx, 0, -dx, m_cache->height());
|
Chris@1357
|
2120 } else {
|
Chris@1357
|
2121 cacheAreaToRepaint =
|
Chris@1357
|
2122 QRect(0, 0, dx, m_cache->height());
|
Chris@1266
|
2123 }
|
Chris@1357
|
2124
|
Chris@1357
|
2125 count.partial();
|
Chris@1357
|
2126
|
Chris@127
|
2127 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1266
|
2128 cerr << "View(" << this << ")::paintEvent: scrolled cache by " << dx << endl;
|
Chris@127
|
2129 #endif
|
Chris@1266
|
2130 } else {
|
Chris@1357
|
2131 count.miss();
|
Chris@127
|
2132 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1266
|
2133 cerr << "View(" << this << ")::paintEvent: scrolling too far" << endl;
|
Chris@127
|
2134 #endif
|
Chris@1266
|
2135 }
|
Chris@1266
|
2136
|
Chris@1266
|
2137 } else {
|
Chris@127
|
2138 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1266
|
2139 cerr << "View(" << this << ")::paintEvent: cache is good" << endl;
|
Chris@127
|
2140 #endif
|
Chris@1357
|
2141 count.hit();
|
Chris@1357
|
2142 shouldRepaintCache = false;
|
Chris@1266
|
2143 }
|
Chris@1357
|
2144 }
|
Chris@1357
|
2145
|
Chris@1357
|
2146 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1357
|
2147 cerr << "View(" << this << ")::paintEvent: m_cacheValid = " << m_cacheValid << ", shouldUseCache = " << shouldUseCache << ", shouldRepaintCache = " << shouldRepaintCache << ", cacheAreaToRepaint = " << cacheAreaToRepaint.x() << "," << cacheAreaToRepaint.y() << " " << cacheAreaToRepaint.width() << "x" << cacheAreaToRepaint.height() << endl;
|
Chris@1357
|
2148 #endif
|
Chris@1357
|
2149
|
Chris@1357
|
2150 if (shouldRepaintCache && !shouldUseCache) {
|
Chris@1357
|
2151 // If we are repainting the cache, then we paint the
|
Chris@1357
|
2152 // scrollables only to the cache, not to the buffer. So if
|
Chris@1357
|
2153 // shouldUseCache is also false, then the scrollables can't
|
Chris@1357
|
2154 // appear because they will only be on the cache
|
Chris@1357
|
2155 throw std::logic_error("ERROR: shouldRepaintCache is true, but shouldUseCache is false: this can't lead to the correct result");
|
Chris@1357
|
2156 }
|
Chris@1357
|
2157
|
Chris@1357
|
2158 // Scrollable (cacheable) items first. If we are repainting the
|
Chris@1357
|
2159 // cache, then we paint these to the cache; otherwise straight to
|
Chris@1357
|
2160 // the buffer.
|
Chris@1357
|
2161
|
Chris@1357
|
2162 ViewProxy proxy(this, dpratio);
|
Chris@1357
|
2163 QRect areaToPaint;
|
Chris@1357
|
2164 QPainter paint;
|
Chris@1357
|
2165
|
Chris@1357
|
2166 if (shouldRepaintCache) {
|
Chris@1357
|
2167 paint.begin(m_cache);
|
Chris@1357
|
2168 areaToPaint = cacheAreaToRepaint;
|
Chris@1357
|
2169 } else {
|
Chris@1357
|
2170 paint.begin(m_buffer);
|
Chris@1357
|
2171 areaToPaint = requestedPaintArea;
|
Chris@1357
|
2172 }
|
Chris@1357
|
2173
|
Chris@1357
|
2174 setPaintFont(paint);
|
Chris@1357
|
2175 paint.setClipRect(areaToPaint);
|
Chris@1357
|
2176
|
Chris@1357
|
2177 paint.setPen(getBackground());
|
Chris@1357
|
2178 paint.setBrush(getBackground());
|
Chris@1357
|
2179 paint.drawRect(areaToPaint);
|
Chris@1357
|
2180
|
Chris@1357
|
2181 paint.setPen(getForeground());
|
Chris@1357
|
2182 paint.setBrush(Qt::NoBrush);
|
Chris@1357
|
2183
|
Chris@1357
|
2184 for (LayerList::iterator i = scrollables.begin();
|
Chris@1357
|
2185 i != scrollables.end(); ++i) {
|
Chris@1357
|
2186
|
Chris@1357
|
2187 paint.setRenderHint(QPainter::Antialiasing, false);
|
Chris@1357
|
2188 paint.save();
|
Chris@1357
|
2189
|
Chris@1357
|
2190 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1357
|
2191 cerr << "Painting scrollable layer " << *i << " using proxy with shouldRepaintCache = " << shouldRepaintCache << ", dpratio = " << dpratio << ", areaToPaint = " << areaToPaint.x() << "," << areaToPaint.y() << " " << areaToPaint.width() << "x" << areaToPaint.height() << endl;
|
Chris@1357
|
2192 #endif
|
Chris@1357
|
2193
|
Chris@1357
|
2194 (*i)->paint(&proxy, paint, areaToPaint);
|
Chris@1357
|
2195
|
Chris@1357
|
2196 paint.restore();
|
Chris@1357
|
2197 }
|
Chris@1357
|
2198
|
Chris@1357
|
2199 paint.end();
|
Chris@1357
|
2200
|
Chris@1357
|
2201 if (shouldRepaintCache) {
|
Chris@1357
|
2202 // and now we have
|
Chris@1357
|
2203 m_cacheValid = true;
|
Chris@1266
|
2204 m_cacheCentreFrame = m_centreFrame;
|
Chris@1266
|
2205 m_cacheZoomLevel = m_zoomLevel;
|
Chris@127
|
2206 }
|
Chris@127
|
2207
|
Chris@1357
|
2208 if (shouldUseCache) {
|
Chris@1357
|
2209 paint.begin(m_buffer);
|
Chris@1357
|
2210 paint.drawPixmap(requestedPaintArea, *m_cache, requestedPaintArea);
|
Chris@1266
|
2211 paint.end();
|
Chris@127
|
2212 }
|
Chris@127
|
2213
|
Chris@1357
|
2214 // Now non-cacheable items.
|
Chris@1357
|
2215
|
Chris@952
|
2216 paint.begin(m_buffer);
|
Chris@1357
|
2217 paint.setClipRect(requestedPaintArea);
|
Chris@339
|
2218 setPaintFont(paint);
|
Chris@127
|
2219 if (scrollables.empty()) {
|
Chris@287
|
2220 paint.setPen(getBackground());
|
Chris@287
|
2221 paint.setBrush(getBackground());
|
Chris@1357
|
2222 paint.drawRect(requestedPaintArea);
|
Chris@127
|
2223 }
|
Chris@1266
|
2224
|
Chris@287
|
2225 paint.setPen(getForeground());
|
Chris@127
|
2226 paint.setBrush(Qt::NoBrush);
|
Chris@1266
|
2227
|
Chris@1357
|
2228 for (LayerList::iterator i = nonScrollables.begin();
|
Chris@1357
|
2229 i != nonScrollables.end(); ++i) {
|
Chris@1357
|
2230
|
Chris@127
|
2231 // Profiler profiler2("View::paintEvent non-cacheable");
|
Chris@951
|
2232 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1357
|
2233 cerr << "Painting non-scrollable layer " << *i << " without proxy with shouldRepaintCache = " << shouldRepaintCache << ", dpratio = " << dpratio << ", requestedPaintArea = " << requestedPaintArea.x() << "," << requestedPaintArea.y() << " " << requestedPaintArea.width() << "x" << requestedPaintArea.height() << endl;
|
Chris@951
|
2234 #endif
|
Chris@1357
|
2235 (*i)->paint(&proxy, paint, requestedPaintArea);
|
Chris@127
|
2236 }
|
Chris@1266
|
2237
|
Chris@127
|
2238 paint.end();
|
Chris@1357
|
2239
|
Chris@1357
|
2240 // Now paint to widget from buffer: target rects from here on,
|
Chris@1357
|
2241 // unlike all the preceding, are at formal (1x) resolution
|
Chris@953
|
2242
|
Chris@953
|
2243 paint.begin(this);
|
Chris@339
|
2244 setPaintFont(paint);
|
Chris@953
|
2245 if (e) paint.setClipRect(e->rect());
|
Chris@1357
|
2246
|
Chris@1357
|
2247 QRect finalPaintRect = e ? e->rect() : rect();
|
Chris@1357
|
2248 paint.drawPixmap(finalPaintRect, *m_buffer,
|
Chris@1357
|
2249 scaledRect(finalPaintRect, dpratio));
|
Chris@1357
|
2250
|
Chris@1357
|
2251 drawSelections(paint);
|
Chris@1357
|
2252 drawPlayPointer(paint);
|
Chris@1357
|
2253
|
Chris@127
|
2254 paint.end();
|
Chris@127
|
2255
|
Chris@127
|
2256 QFrame::paintEvent(e);
|
Chris@127
|
2257 }
|
Chris@127
|
2258
|
Chris@127
|
2259 void
|
Chris@127
|
2260 View::drawSelections(QPainter &paint)
|
Chris@127
|
2261 {
|
Chris@217
|
2262 if (!hasTopLayerTimeXAxis()) return;
|
Chris@217
|
2263
|
Chris@127
|
2264 MultiSelection::SelectionList selections;
|
Chris@127
|
2265
|
Chris@127
|
2266 if (m_manager) {
|
Chris@1266
|
2267 selections = m_manager->getSelections();
|
Chris@1266
|
2268 if (m_manager->haveInProgressSelection()) {
|
Chris@1266
|
2269 bool exclusive;
|
Chris@1266
|
2270 Selection inProgressSelection =
|
Chris@1266
|
2271 m_manager->getInProgressSelection(exclusive);
|
Chris@1266
|
2272 if (exclusive) selections.clear();
|
Chris@1266
|
2273 selections.insert(inProgressSelection);
|
Chris@1266
|
2274 }
|
Chris@127
|
2275 }
|
Chris@127
|
2276
|
Chris@127
|
2277 paint.save();
|
Chris@183
|
2278
|
Chris@183
|
2279 bool translucent = !areLayerColoursSignificant();
|
Chris@183
|
2280
|
Chris@183
|
2281 if (translucent) {
|
Chris@183
|
2282 paint.setBrush(QColor(150, 150, 255, 80));
|
Chris@183
|
2283 } else {
|
Chris@183
|
2284 paint.setBrush(Qt::NoBrush);
|
Chris@183
|
2285 }
|
Chris@127
|
2286
|
Chris@908
|
2287 sv_samplerate_t sampleRate = getModelsSampleRate();
|
Chris@127
|
2288
|
Chris@127
|
2289 QPoint localPos;
|
Chris@908
|
2290 sv_frame_t illuminateFrame = -1;
|
Chris@127
|
2291 bool closeToLeft, closeToRight;
|
Chris@127
|
2292
|
Chris@127
|
2293 if (shouldIlluminateLocalSelection(localPos, closeToLeft, closeToRight)) {
|
Chris@1266
|
2294 illuminateFrame = getFrameForX(localPos.x());
|
Chris@127
|
2295 }
|
Chris@127
|
2296
|
Chris@127
|
2297 const QFontMetrics &metrics = paint.fontMetrics();
|
Chris@127
|
2298
|
Chris@127
|
2299 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@1266
|
2300 i != selections.end(); ++i) {
|
Chris@1266
|
2301
|
Chris@1266
|
2302 int p0 = getXForFrame(alignFromReference(i->getStartFrame()));
|
Chris@1266
|
2303 int p1 = getXForFrame(alignFromReference(i->getEndFrame()));
|
Chris@1266
|
2304
|
Chris@1266
|
2305 if (p1 < 0 || p0 > width()) continue;
|
Chris@127
|
2306
|
Chris@127
|
2307 #ifdef DEBUG_VIEW_WIDGET_PAINT
|
Chris@1266
|
2308 SVDEBUG << "View::drawSelections: " << p0 << ",-1 [" << (p1-p0) << "x" << (height()+1) << "]" << endl;
|
Chris@127
|
2309 #endif
|
Chris@127
|
2310
|
Chris@1266
|
2311 bool illuminateThis =
|
Chris@1266
|
2312 (illuminateFrame >= 0 && i->contains(illuminateFrame));
|
Chris@1266
|
2313
|
Chris@1270
|
2314 double h = height();
|
Chris@1401
|
2315 double penWidth = scalePenWidth(1.0);
|
Chris@1270
|
2316 double half = penWidth/2.0;
|
Chris@1270
|
2317
|
Chris@1270
|
2318 paint.setPen(QPen(QColor(150, 150, 255), penWidth));
|
Chris@183
|
2319
|
Chris@183
|
2320 if (translucent && shouldLabelSelections()) {
|
Chris@1270
|
2321 paint.drawRect(QRectF(p0, -penWidth, p1 - p0, h + 2*penWidth));
|
Chris@183
|
2322 } else {
|
Chris@183
|
2323 // Make the top & bottom lines of the box visible if we
|
Chris@183
|
2324 // are lacking some of the other visual cues. There's no
|
Chris@183
|
2325 // particular logic to this, it's just a question of what
|
Chris@183
|
2326 // I happen to think looks nice.
|
Chris@1270
|
2327 paint.drawRect(QRectF(p0, half, p1 - p0, h - penWidth));
|
Chris@183
|
2328 }
|
Chris@127
|
2329
|
Chris@1266
|
2330 if (illuminateThis) {
|
Chris@1266
|
2331 paint.save();
|
Chris@1401
|
2332 penWidth = scalePenWidth(2.0);
|
Chris@1270
|
2333 half = penWidth/2.0;
|
Chris@1270
|
2334 paint.setPen(QPen(getForeground(), penWidth));
|
Chris@1266
|
2335 if (closeToLeft) {
|
Chris@1270
|
2336 paint.drawLine(QLineF(p0, half, p1, half));
|
Chris@1270
|
2337 paint.drawLine(QLineF(p0, half, p0, h - half));
|
Chris@1270
|
2338 paint.drawLine(QLineF(p0, h - half, p1, h - half));
|
Chris@1266
|
2339 } else if (closeToRight) {
|
Chris@1270
|
2340 paint.drawLine(QLineF(p0, half, p1, half));
|
Chris@1270
|
2341 paint.drawLine(QLineF(p1, half, p1, h - half));
|
Chris@1270
|
2342 paint.drawLine(QLineF(p0, h - half, p1, h - half));
|
Chris@1266
|
2343 } else {
|
Chris@1266
|
2344 paint.setBrush(Qt::NoBrush);
|
Chris@1270
|
2345 paint.drawRect(QRectF(p0, half, p1 - p0, h - penWidth));
|
Chris@1266
|
2346 }
|
Chris@1266
|
2347 paint.restore();
|
Chris@1266
|
2348 }
|
Chris@1266
|
2349
|
Chris@1266
|
2350 if (sampleRate && shouldLabelSelections() && m_manager &&
|
Chris@189
|
2351 m_manager->shouldShowSelectionExtents()) {
|
Chris@1266
|
2352
|
Chris@1266
|
2353 QString startText = QString("%1 / %2")
|
Chris@1266
|
2354 .arg(QString::fromStdString
|
Chris@1266
|
2355 (RealTime::frame2RealTime
|
Chris@1266
|
2356 (i->getStartFrame(), sampleRate).toText(true)))
|
Chris@1266
|
2357 .arg(i->getStartFrame());
|
Chris@1266
|
2358
|
Chris@1266
|
2359 QString endText = QString(" %1 / %2")
|
Chris@1266
|
2360 .arg(QString::fromStdString
|
Chris@1266
|
2361 (RealTime::frame2RealTime
|
Chris@1266
|
2362 (i->getEndFrame(), sampleRate).toText(true)))
|
Chris@1266
|
2363 .arg(i->getEndFrame());
|
Chris@1266
|
2364
|
Chris@1266
|
2365 QString durationText = QString("(%1 / %2) ")
|
Chris@1266
|
2366 .arg(QString::fromStdString
|
Chris@1266
|
2367 (RealTime::frame2RealTime
|
Chris@1266
|
2368 (i->getEndFrame() - i->getStartFrame(), sampleRate)
|
Chris@1266
|
2369 .toText(true)))
|
Chris@1266
|
2370 .arg(i->getEndFrame() - i->getStartFrame());
|
Chris@1476
|
2371
|
Chris@1476
|
2372 // Qt 5.13 deprecates QFontMetrics::width(), but its suggested
|
Chris@1476
|
2373 // replacement (horizontalAdvance) was only added in Qt 5.11
|
Chris@1476
|
2374 // which is too new for us
|
Chris@1476
|
2375 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
Chris@1266
|
2376
|
Chris@1266
|
2377 int sw = metrics.width(startText),
|
Chris@1266
|
2378 ew = metrics.width(endText),
|
Chris@1266
|
2379 dw = metrics.width(durationText);
|
Chris@1266
|
2380
|
Chris@1266
|
2381 int sy = metrics.ascent() + metrics.height() + 4;
|
Chris@1266
|
2382 int ey = sy;
|
Chris@1266
|
2383 int dy = sy + metrics.height();
|
Chris@1266
|
2384
|
Chris@1266
|
2385 int sx = p0 + 2;
|
Chris@1266
|
2386 int ex = sx;
|
Chris@1266
|
2387 int dx = sx;
|
Chris@127
|
2388
|
Chris@501
|
2389 bool durationBothEnds = true;
|
Chris@501
|
2390
|
Chris@1266
|
2391 if (sw + ew > (p1 - p0)) {
|
Chris@1266
|
2392 ey += metrics.height();
|
Chris@1266
|
2393 dy += metrics.height();
|
Chris@501
|
2394 durationBothEnds = false;
|
Chris@1266
|
2395 }
|
Chris@1266
|
2396
|
Chris@1266
|
2397 if (ew < (p1 - p0)) {
|
Chris@1266
|
2398 ex = p1 - 2 - ew;
|
Chris@1266
|
2399 }
|
Chris@1266
|
2400
|
Chris@1266
|
2401 if (dw < (p1 - p0)) {
|
Chris@1266
|
2402 dx = p1 - 2 - dw;
|
Chris@1266
|
2403 }
|
Chris@127
|
2404
|
Chris@1193
|
2405 PaintAssistant::drawVisibleText(this, paint, sx, sy, startText,
|
Chris@1193
|
2406 PaintAssistant::OutlinedText);
|
Chris@1193
|
2407 PaintAssistant::drawVisibleText(this, paint, ex, ey, endText,
|
Chris@1193
|
2408 PaintAssistant::OutlinedText);
|
Chris@1193
|
2409 PaintAssistant::drawVisibleText(this, paint, dx, dy, durationText,
|
Chris@1193
|
2410 PaintAssistant::OutlinedText);
|
Chris@501
|
2411 if (durationBothEnds) {
|
Chris@1193
|
2412 PaintAssistant::drawVisibleText(this, paint, sx, dy, durationText,
|
Chris@1193
|
2413 PaintAssistant::OutlinedText);
|
Chris@501
|
2414 }
|
Chris@1266
|
2415 }
|
Chris@127
|
2416 }
|
Chris@127
|
2417
|
Chris@127
|
2418 paint.restore();
|
Chris@127
|
2419 }
|
Chris@127
|
2420
|
Chris@267
|
2421 void
|
Chris@1357
|
2422 View::drawPlayPointer(QPainter &paint)
|
Chris@1357
|
2423 {
|
Chris@1357
|
2424 bool showPlayPointer = true;
|
Chris@1357
|
2425
|
Chris@1357
|
2426 if (m_followPlay == PlaybackScrollContinuous) {
|
Chris@1357
|
2427 showPlayPointer = false;
|
Chris@1357
|
2428 } else if (m_playPointerFrame <= getStartFrame() ||
|
Chris@1357
|
2429 m_playPointerFrame >= getEndFrame()) {
|
Chris@1357
|
2430 showPlayPointer = false;
|
Chris@1357
|
2431 } else if (m_manager && !m_manager->isPlaying()) {
|
Chris@1357
|
2432 if (m_playPointerFrame == getCentreFrame() &&
|
Chris@1357
|
2433 m_manager->shouldShowCentreLine() &&
|
Chris@1357
|
2434 m_followPlay != PlaybackIgnore) {
|
Chris@1357
|
2435 // Don't show the play pointer when it is redundant with
|
Chris@1357
|
2436 // the centre line
|
Chris@1357
|
2437 showPlayPointer = false;
|
Chris@1357
|
2438 }
|
Chris@1357
|
2439 }
|
Chris@1357
|
2440
|
Chris@1357
|
2441 if (showPlayPointer) {
|
Chris@1357
|
2442
|
Chris@1357
|
2443 int playx = getXForFrame(m_playPointerFrame);
|
Chris@1357
|
2444
|
Chris@1357
|
2445 paint.setPen(getForeground());
|
Chris@1357
|
2446 paint.drawLine(playx - 1, 0, playx - 1, height() - 1);
|
Chris@1357
|
2447 paint.drawLine(playx + 1, 0, playx + 1, height() - 1);
|
Chris@1357
|
2448 paint.drawPoint(playx, 0);
|
Chris@1357
|
2449 paint.drawPoint(playx, height() - 1);
|
Chris@1357
|
2450 paint.setPen(getBackground());
|
Chris@1357
|
2451 paint.drawLine(playx, 1, playx, height() - 2);
|
Chris@1357
|
2452 }
|
Chris@1357
|
2453 }
|
Chris@1357
|
2454
|
Chris@1357
|
2455 void
|
Chris@270
|
2456 View::drawMeasurementRect(QPainter &paint, const Layer *topLayer, QRect r,
|
Chris@270
|
2457 bool focus) const
|
Chris@267
|
2458 {
|
Chris@587
|
2459 // SVDEBUG << "View::drawMeasurementRect(" << r.x() << "," << r.y() << " "
|
Chris@585
|
2460 // << r.width() << "x" << r.height() << ")" << endl;
|
Chris@268
|
2461
|
Chris@267
|
2462 if (r.x() + r.width() < 0 || r.x() >= width()) return;
|
Chris@267
|
2463
|
Chris@270
|
2464 if (r.width() != 0 || r.height() != 0) {
|
Chris@270
|
2465 paint.save();
|
Chris@270
|
2466 if (focus) {
|
Chris@270
|
2467 paint.setPen(Qt::NoPen);
|
Chris@272
|
2468 QColor brushColour(Qt::black);
|
Chris@272
|
2469 brushColour.setAlpha(hasLightBackground() ? 15 : 40);
|
Chris@270
|
2470 paint.setBrush(brushColour);
|
Chris@270
|
2471 if (r.x() > 0) {
|
Chris@270
|
2472 paint.drawRect(0, 0, r.x(), height());
|
Chris@270
|
2473 }
|
Chris@270
|
2474 if (r.x() + r.width() < width()) {
|
Chris@270
|
2475 paint.drawRect(r.x() + r.width(), 0, width()-r.x()-r.width(), height());
|
Chris@270
|
2476 }
|
Chris@270
|
2477 if (r.y() > 0) {
|
Chris@270
|
2478 paint.drawRect(r.x(), 0, r.width(), r.y());
|
Chris@270
|
2479 }
|
Chris@270
|
2480 if (r.y() + r.height() < height()) {
|
Chris@270
|
2481 paint.drawRect(r.x(), r.y() + r.height(), r.width(), height()-r.y()-r.height());
|
Chris@270
|
2482 }
|
Chris@270
|
2483 paint.setBrush(Qt::NoBrush);
|
Chris@270
|
2484 }
|
Chris@270
|
2485 paint.setPen(Qt::green);
|
Chris@270
|
2486 paint.drawRect(r);
|
Chris@270
|
2487 paint.restore();
|
Chris@270
|
2488 } else {
|
Chris@270
|
2489 paint.save();
|
Chris@270
|
2490 paint.setPen(Qt::green);
|
Chris@270
|
2491 paint.drawPoint(r.x(), r.y());
|
Chris@270
|
2492 paint.restore();
|
Chris@270
|
2493 }
|
Chris@270
|
2494
|
Chris@270
|
2495 if (!focus) return;
|
Chris@270
|
2496
|
Chris@278
|
2497 paint.save();
|
Chris@278
|
2498 QFont fn = paint.font();
|
Chris@278
|
2499 if (fn.pointSize() > 8) {
|
Chris@278
|
2500 fn.setPointSize(fn.pointSize() - 1);
|
Chris@278
|
2501 paint.setFont(fn);
|
Chris@278
|
2502 }
|
Chris@278
|
2503
|
Chris@267
|
2504 int fontHeight = paint.fontMetrics().height();
|
Chris@267
|
2505 int fontAscent = paint.fontMetrics().ascent();
|
Chris@267
|
2506
|
Chris@904
|
2507 double v0, v1;
|
Chris@267
|
2508 QString u0, u1;
|
Chris@267
|
2509 bool b0 = false, b1 = false;
|
Chris@267
|
2510
|
Chris@267
|
2511 QString axs, ays, bxs, bys, dxs, dys;
|
Chris@267
|
2512
|
Chris@267
|
2513 int axx, axy, bxx, bxy, dxx, dxy;
|
Chris@267
|
2514 int aw = 0, bw = 0, dw = 0;
|
Chris@267
|
2515
|
Chris@267
|
2516 int labelCount = 0;
|
Chris@267
|
2517
|
Chris@362
|
2518 // top-left point, x-coord
|
Chris@362
|
2519
|
Chris@267
|
2520 if ((b0 = topLayer->getXScaleValue(this, r.x(), v0, u0))) {
|
Chris@267
|
2521 axs = QString("%1 %2").arg(v0).arg(u0);
|
Chris@278
|
2522 if (u0 == "Hz" && Pitch::isFrequencyInMidiRange(v0)) {
|
Chris@278
|
2523 axs = QString("%1 (%2)").arg(axs)
|
Chris@278
|
2524 .arg(Pitch::getPitchLabelForFrequency(v0));
|
Chris@278
|
2525 }
|
Chris@267
|
2526 aw = paint.fontMetrics().width(axs);
|
Chris@267
|
2527 ++labelCount;
|
Chris@267
|
2528 }
|
Chris@362
|
2529
|
Chris@362
|
2530 // bottom-right point, x-coord
|
Chris@267
|
2531
|
Chris@267
|
2532 if (r.width() > 0) {
|
Chris@267
|
2533 if ((b1 = topLayer->getXScaleValue(this, r.x() + r.width(), v1, u1))) {
|
Chris@267
|
2534 bxs = QString("%1 %2").arg(v1).arg(u1);
|
Chris@278
|
2535 if (u1 == "Hz" && Pitch::isFrequencyInMidiRange(v1)) {
|
Chris@278
|
2536 bxs = QString("%1 (%2)").arg(bxs)
|
Chris@278
|
2537 .arg(Pitch::getPitchLabelForFrequency(v1));
|
Chris@278
|
2538 }
|
Chris@267
|
2539 bw = paint.fontMetrics().width(bxs);
|
Chris@267
|
2540 }
|
Chris@267
|
2541 }
|
Chris@362
|
2542
|
Chris@362
|
2543 // dimension, width
|
Chris@267
|
2544
|
Chris@283
|
2545 if (b0 && b1 && v1 != v0 && u0 == u1) {
|
Chris@362
|
2546 dxs = QString("[%1 %2]").arg(fabs(v1 - v0)).arg(u1);
|
Chris@267
|
2547 dw = paint.fontMetrics().width(dxs);
|
Chris@267
|
2548 }
|
Chris@267
|
2549
|
Chris@267
|
2550 b0 = false;
|
Chris@267
|
2551 b1 = false;
|
Chris@267
|
2552
|
Chris@362
|
2553 // top-left point, y-coord
|
Chris@362
|
2554
|
Chris@267
|
2555 if ((b0 = topLayer->getYScaleValue(this, r.y(), v0, u0))) {
|
Chris@267
|
2556 ays = QString("%1 %2").arg(v0).arg(u0);
|
Chris@278
|
2557 if (u0 == "Hz" && Pitch::isFrequencyInMidiRange(v0)) {
|
Chris@278
|
2558 ays = QString("%1 (%2)").arg(ays)
|
Chris@278
|
2559 .arg(Pitch::getPitchLabelForFrequency(v0));
|
Chris@278
|
2560 }
|
Chris@267
|
2561 aw = std::max(aw, paint.fontMetrics().width(ays));
|
Chris@267
|
2562 ++labelCount;
|
Chris@267
|
2563 }
|
Chris@267
|
2564
|
Chris@362
|
2565 // bottom-right point, y-coord
|
Chris@362
|
2566
|
Chris@267
|
2567 if (r.height() > 0) {
|
Chris@267
|
2568 if ((b1 = topLayer->getYScaleValue(this, r.y() + r.height(), v1, u1))) {
|
Chris@267
|
2569 bys = QString("%1 %2").arg(v1).arg(u1);
|
Chris@278
|
2570 if (u1 == "Hz" && Pitch::isFrequencyInMidiRange(v1)) {
|
Chris@278
|
2571 bys = QString("%1 (%2)").arg(bys)
|
Chris@278
|
2572 .arg(Pitch::getPitchLabelForFrequency(v1));
|
Chris@278
|
2573 }
|
Chris@267
|
2574 bw = std::max(bw, paint.fontMetrics().width(bys));
|
Chris@267
|
2575 }
|
Chris@267
|
2576 }
|
Chris@274
|
2577
|
Chris@274
|
2578 bool bd = false;
|
Chris@904
|
2579 double dy = 0.f;
|
Chris@274
|
2580 QString du;
|
Chris@274
|
2581
|
Chris@362
|
2582 // dimension, height
|
Chris@362
|
2583
|
Chris@274
|
2584 if ((bd = topLayer->getYScaleDifference(this, r.y(), r.y() + r.height(),
|
Chris@283
|
2585 dy, du)) &&
|
Chris@283
|
2586 dy != 0) {
|
Chris@274
|
2587 if (du != "") {
|
Chris@362
|
2588 if (du == "Hz") {
|
Chris@362
|
2589 int semis;
|
Chris@904
|
2590 double cents;
|
Chris@362
|
2591 semis = Pitch::getPitchForFrequencyDifference(v0, v1, ¢s);
|
Chris@362
|
2592 dys = QString("[%1 %2 (%3)]")
|
Chris@362
|
2593 .arg(dy).arg(du)
|
Chris@362
|
2594 .arg(Pitch::getLabelForPitchRange(semis, cents));
|
Chris@362
|
2595 } else {
|
Chris@362
|
2596 dys = QString("[%1 %2]").arg(dy).arg(du);
|
Chris@362
|
2597 }
|
Chris@274
|
2598 } else {
|
Chris@362
|
2599 dys = QString("[%1]").arg(dy);
|
Chris@274
|
2600 }
|
Chris@267
|
2601 dw = std::max(dw, paint.fontMetrics().width(dys));
|
Chris@267
|
2602 }
|
Chris@267
|
2603
|
Chris@267
|
2604 int mw = r.width();
|
Chris@267
|
2605 int mh = r.height();
|
Chris@267
|
2606
|
Chris@267
|
2607 bool edgeLabelsInside = false;
|
Chris@267
|
2608 bool sizeLabelsInside = false;
|
Chris@267
|
2609
|
Chris@267
|
2610 if (mw < std::max(aw, std::max(bw, dw)) + 4) {
|
Chris@267
|
2611 // defaults stand
|
Chris@267
|
2612 } else if (mw < aw + bw + 4) {
|
Chris@267
|
2613 if (mh > fontHeight * labelCount * 3 + 4) {
|
Chris@267
|
2614 edgeLabelsInside = true;
|
Chris@267
|
2615 sizeLabelsInside = true;
|
Chris@267
|
2616 } else if (mh > fontHeight * labelCount * 2 + 4) {
|
Chris@267
|
2617 edgeLabelsInside = true;
|
Chris@267
|
2618 }
|
Chris@267
|
2619 } else if (mw < aw + bw + dw + 4) {
|
Chris@267
|
2620 if (mh > fontHeight * labelCount * 3 + 4) {
|
Chris@267
|
2621 edgeLabelsInside = true;
|
Chris@267
|
2622 sizeLabelsInside = true;
|
Chris@267
|
2623 } else if (mh > fontHeight * labelCount + 4) {
|
Chris@267
|
2624 edgeLabelsInside = true;
|
Chris@267
|
2625 }
|
Chris@267
|
2626 } else {
|
Chris@267
|
2627 if (mh > fontHeight * labelCount + 4) {
|
Chris@267
|
2628 edgeLabelsInside = true;
|
Chris@267
|
2629 sizeLabelsInside = true;
|
Chris@267
|
2630 }
|
Chris@267
|
2631 }
|
Chris@267
|
2632
|
Chris@267
|
2633 if (edgeLabelsInside) {
|
Chris@267
|
2634
|
Chris@267
|
2635 axx = r.x() + 2;
|
Chris@267
|
2636 axy = r.y() + fontAscent + 2;
|
Chris@267
|
2637
|
Chris@267
|
2638 bxx = r.x() + r.width() - bw - 2;
|
Chris@267
|
2639 bxy = r.y() + r.height() - (labelCount-1) * fontHeight - 2;
|
Chris@267
|
2640
|
Chris@267
|
2641 } else {
|
Chris@267
|
2642
|
Chris@267
|
2643 axx = r.x() - aw - 2;
|
Chris@267
|
2644 axy = r.y() + fontAscent;
|
Chris@267
|
2645
|
Chris@267
|
2646 bxx = r.x() + r.width() + 2;
|
Chris@267
|
2647 bxy = r.y() + r.height() - (labelCount-1) * fontHeight;
|
Chris@267
|
2648 }
|
Chris@267
|
2649
|
Chris@267
|
2650 dxx = r.width()/2 + r.x() - dw/2;
|
Chris@267
|
2651
|
Chris@267
|
2652 if (sizeLabelsInside) {
|
Chris@267
|
2653
|
Chris@267
|
2654 dxy = r.height()/2 + r.y() - (labelCount * fontHeight)/2 + fontAscent;
|
Chris@267
|
2655
|
Chris@267
|
2656 } else {
|
Chris@267
|
2657
|
Chris@267
|
2658 dxy = r.y() + r.height() + fontAscent + 2;
|
Chris@267
|
2659 }
|
Chris@267
|
2660
|
Chris@267
|
2661 if (axs != "") {
|
Chris@1078
|
2662 PaintAssistant::drawVisibleText(this, paint, axx, axy, axs, PaintAssistant::OutlinedText);
|
Chris@267
|
2663 axy += fontHeight;
|
Chris@267
|
2664 }
|
Chris@267
|
2665
|
Chris@267
|
2666 if (ays != "") {
|
Chris@1078
|
2667 PaintAssistant::drawVisibleText(this, paint, axx, axy, ays, PaintAssistant::OutlinedText);
|
Chris@267
|
2668 axy += fontHeight;
|
Chris@267
|
2669 }
|
Chris@267
|
2670
|
Chris@267
|
2671 if (bxs != "") {
|
Chris@1078
|
2672 PaintAssistant::drawVisibleText(this, paint, bxx, bxy, bxs, PaintAssistant::OutlinedText);
|
Chris@267
|
2673 bxy += fontHeight;
|
Chris@267
|
2674 }
|
Chris@267
|
2675
|
Chris@267
|
2676 if (bys != "") {
|
Chris@1078
|
2677 PaintAssistant::drawVisibleText(this, paint, bxx, bxy, bys, PaintAssistant::OutlinedText);
|
Chris@267
|
2678 bxy += fontHeight;
|
Chris@267
|
2679 }
|
Chris@267
|
2680
|
Chris@267
|
2681 if (dxs != "") {
|
Chris@1078
|
2682 PaintAssistant::drawVisibleText(this, paint, dxx, dxy, dxs, PaintAssistant::OutlinedText);
|
Chris@267
|
2683 dxy += fontHeight;
|
Chris@267
|
2684 }
|
Chris@267
|
2685
|
Chris@267
|
2686 if (dys != "") {
|
Chris@1078
|
2687 PaintAssistant::drawVisibleText(this, paint, dxx, dxy, dys, PaintAssistant::OutlinedText);
|
Chris@267
|
2688 dxy += fontHeight;
|
Chris@267
|
2689 }
|
Chris@278
|
2690
|
Chris@278
|
2691 paint.restore();
|
Chris@267
|
2692 }
|
Chris@267
|
2693
|
Chris@227
|
2694 bool
|
Chris@908
|
2695 View::render(QPainter &paint, int xorigin, sv_frame_t f0, sv_frame_t f1)
|
Chris@227
|
2696 {
|
Chris@1327
|
2697 int x0 = int(round(m_zoomLevel.framesToPixels(double(f0))));
|
Chris@1327
|
2698 int x1 = int(round(m_zoomLevel.framesToPixels(double(f1))));
|
Chris@806
|
2699
|
Chris@806
|
2700 int w = x1 - x0;
|
Chris@806
|
2701
|
Chris@908
|
2702 sv_frame_t origCentreFrame = m_centreFrame;
|
Chris@227
|
2703
|
Chris@227
|
2704 bool someLayersIncomplete = false;
|
Chris@227
|
2705
|
Chris@835
|
2706 for (LayerList::iterator i = m_layerStack.begin();
|
Chris@835
|
2707 i != m_layerStack.end(); ++i) {
|
Chris@227
|
2708
|
Chris@227
|
2709 int c = (*i)->getCompletion(this);
|
Chris@227
|
2710 if (c < 100) {
|
Chris@227
|
2711 someLayersIncomplete = true;
|
Chris@227
|
2712 break;
|
Chris@227
|
2713 }
|
Chris@227
|
2714 }
|
Chris@227
|
2715
|
Chris@227
|
2716 if (someLayersIncomplete) {
|
Chris@227
|
2717
|
Chris@227
|
2718 QProgressDialog progress(tr("Waiting for layers to be ready..."),
|
Chris@227
|
2719 tr("Cancel"), 0, 100, this);
|
Chris@227
|
2720
|
Chris@227
|
2721 int layerCompletion = 0;
|
Chris@227
|
2722
|
Chris@227
|
2723 while (layerCompletion < 100) {
|
Chris@227
|
2724
|
Chris@835
|
2725 for (LayerList::iterator i = m_layerStack.begin();
|
Chris@835
|
2726 i != m_layerStack.end(); ++i) {
|
Chris@227
|
2727
|
Chris@227
|
2728 int c = (*i)->getCompletion(this);
|
Chris@835
|
2729 if (i == m_layerStack.begin() || c < layerCompletion) {
|
Chris@227
|
2730 layerCompletion = c;
|
Chris@227
|
2731 }
|
Chris@227
|
2732 }
|
Chris@227
|
2733
|
Chris@227
|
2734 if (layerCompletion >= 100) break;
|
Chris@227
|
2735
|
Chris@227
|
2736 progress.setValue(layerCompletion);
|
Chris@227
|
2737 qApp->processEvents();
|
Chris@227
|
2738 if (progress.wasCanceled()) {
|
Chris@227
|
2739 update();
|
Chris@227
|
2740 return false;
|
Chris@227
|
2741 }
|
Chris@227
|
2742
|
Chris@227
|
2743 usleep(50000);
|
Chris@227
|
2744 }
|
Chris@227
|
2745 }
|
Chris@227
|
2746
|
Chris@227
|
2747 QProgressDialog progress(tr("Rendering image..."),
|
Chris@227
|
2748 tr("Cancel"), 0, w / width(), this);
|
Chris@227
|
2749
|
Chris@806
|
2750 for (int x = 0; x < w; x += width()) {
|
Chris@227
|
2751
|
Chris@227
|
2752 progress.setValue(x / width());
|
Chris@227
|
2753 qApp->processEvents();
|
Chris@227
|
2754 if (progress.wasCanceled()) {
|
Chris@227
|
2755 m_centreFrame = origCentreFrame;
|
Chris@227
|
2756 update();
|
Chris@227
|
2757 return false;
|
Chris@227
|
2758 }
|
Chris@227
|
2759
|
Chris@1327
|
2760 m_centreFrame = f0 + sv_frame_t(round(m_zoomLevel.pixelsToFrames
|
Chris@1327
|
2761 (x + width()/2)));
|
Chris@227
|
2762
|
Chris@227
|
2763 QRect chunk(0, 0, width(), height());
|
Chris@227
|
2764
|
Chris@287
|
2765 paint.setPen(getBackground());
|
Chris@287
|
2766 paint.setBrush(getBackground());
|
Chris@227
|
2767
|
Chris@1266
|
2768 paint.drawRect(QRect(xorigin + x, 0, width(), height()));
|
Chris@1266
|
2769
|
Chris@1266
|
2770 paint.setPen(getForeground());
|
Chris@1266
|
2771 paint.setBrush(Qt::NoBrush);
|
Chris@1266
|
2772
|
Chris@1266
|
2773 for (LayerList::iterator i = m_layerStack.begin();
|
Chris@835
|
2774 i != m_layerStack.end(); ++i) {
|
Chris@919
|
2775 if (!((*i)->isLayerDormant(this))){
|
Chris@919
|
2776
|
Chris@919
|
2777 paint.setRenderHint(QPainter::Antialiasing, false);
|
Chris@919
|
2778
|
Chris@919
|
2779 paint.save();
|
Chris@919
|
2780 paint.translate(xorigin + x, 0);
|
Chris@919
|
2781
|
Chris@919
|
2782 cerr << "Centre frame now: " << m_centreFrame << " drawing to " << chunk.x() + x + xorigin << ", " << chunk.width() << endl;
|
Chris@919
|
2783
|
Chris@919
|
2784 (*i)->setSynchronousPainting(true);
|
Chris@919
|
2785
|
Chris@919
|
2786 (*i)->paint(this, paint, chunk);
|
Chris@919
|
2787
|
Chris@919
|
2788 (*i)->setSynchronousPainting(false);
|
Chris@919
|
2789
|
Chris@919
|
2790 paint.restore();
|
Chris@919
|
2791 }
|
Chris@1266
|
2792 }
|
Chris@227
|
2793 }
|
Chris@227
|
2794
|
Chris@227
|
2795 m_centreFrame = origCentreFrame;
|
Chris@227
|
2796 update();
|
Chris@227
|
2797 return true;
|
Chris@227
|
2798 }
|
Chris@227
|
2799
|
Chris@227
|
2800 QImage *
|
Chris@1202
|
2801 View::renderToNewImage()
|
Chris@227
|
2802 {
|
Chris@908
|
2803 sv_frame_t f0 = getModelsStartFrame();
|
Chris@908
|
2804 sv_frame_t f1 = getModelsEndFrame();
|
Chris@227
|
2805
|
Chris@1202
|
2806 return renderPartToNewImage(f0, f1);
|
Chris@229
|
2807 }
|
Chris@229
|
2808
|
Chris@229
|
2809 QImage *
|
Chris@1202
|
2810 View::renderPartToNewImage(sv_frame_t f0, sv_frame_t f1)
|
Chris@229
|
2811 {
|
Chris@1327
|
2812 int x0 = int(round(getZoomLevel().framesToPixels(double(f0))));
|
Chris@1327
|
2813 int x1 = int(round(getZoomLevel().framesToPixels(double(f1))));
|
Chris@227
|
2814
|
Chris@227
|
2815 QImage *image = new QImage(x1 - x0, height(), QImage::Format_RGB32);
|
Chris@227
|
2816
|
Chris@227
|
2817 QPainter *paint = new QPainter(image);
|
Chris@229
|
2818 if (!render(*paint, 0, f0, f1)) {
|
Chris@227
|
2819 delete paint;
|
Chris@227
|
2820 delete image;
|
Chris@1408
|
2821 return nullptr;
|
Chris@227
|
2822 } else {
|
Chris@227
|
2823 delete paint;
|
Chris@227
|
2824 return image;
|
Chris@227
|
2825 }
|
Chris@227
|
2826 }
|
Chris@227
|
2827
|
Chris@229
|
2828 QSize
|
Chris@1202
|
2829 View::getRenderedImageSize()
|
Chris@229
|
2830 {
|
Chris@908
|
2831 sv_frame_t f0 = getModelsStartFrame();
|
Chris@908
|
2832 sv_frame_t f1 = getModelsEndFrame();
|
Chris@229
|
2833
|
Chris@1202
|
2834 return getRenderedPartImageSize(f0, f1);
|
Chris@229
|
2835 }
|
Chris@229
|
2836
|
Chris@229
|
2837 QSize
|
Chris@1202
|
2838 View::getRenderedPartImageSize(sv_frame_t f0, sv_frame_t f1)
|
Chris@229
|
2839 {
|
Chris@1327
|
2840 int x0 = int(round(getZoomLevel().framesToPixels(double(f0))));
|
Chris@1327
|
2841 int x1 = int(round(getZoomLevel().framesToPixels(double(f1))));
|
Chris@229
|
2842
|
Chris@229
|
2843 return QSize(x1 - x0, height());
|
Chris@229
|
2844 }
|
Chris@229
|
2845
|
Chris@1202
|
2846 bool
|
Chris@1202
|
2847 View::renderToSvgFile(QString filename)
|
Chris@1202
|
2848 {
|
Chris@1202
|
2849 sv_frame_t f0 = getModelsStartFrame();
|
Chris@1202
|
2850 sv_frame_t f1 = getModelsEndFrame();
|
Chris@1202
|
2851
|
Chris@1202
|
2852 return renderPartToSvgFile(filename, f0, f1);
|
Chris@1202
|
2853 }
|
Chris@1202
|
2854
|
Chris@1202
|
2855 bool
|
Chris@1202
|
2856 View::renderPartToSvgFile(QString filename, sv_frame_t f0, sv_frame_t f1)
|
Chris@1202
|
2857 {
|
Chris@1327
|
2858 int x0 = int(round(getZoomLevel().framesToPixels(double(f0))));
|
Chris@1327
|
2859 int x1 = int(round(getZoomLevel().framesToPixels(double(f1))));
|
Chris@1202
|
2860
|
Chris@1202
|
2861 QSvgGenerator generator;
|
Chris@1202
|
2862 generator.setFileName(filename);
|
Chris@1202
|
2863 generator.setSize(QSize(x1 - x0, height()));
|
Chris@1202
|
2864 generator.setViewBox(QRect(0, 0, x1 - x0, height()));
|
Chris@1202
|
2865 generator.setTitle(tr("Exported image from %1")
|
Chris@1202
|
2866 .arg(QApplication::applicationName()));
|
Chris@1202
|
2867
|
Chris@1202
|
2868 QPainter paint;
|
Chris@1202
|
2869 paint.begin(&generator);
|
Chris@1202
|
2870 bool result = render(paint, 0, f0, f1);
|
Chris@1202
|
2871 paint.end();
|
Chris@1202
|
2872 return result;
|
Chris@1202
|
2873 }
|
Chris@1202
|
2874
|
Chris@316
|
2875 void
|
Chris@316
|
2876 View::toXml(QTextStream &stream,
|
Chris@316
|
2877 QString indent, QString extraAttributes) const
|
Chris@127
|
2878 {
|
Chris@316
|
2879 stream << indent;
|
Chris@127
|
2880
|
Chris@1327
|
2881 int classicZoomValue, deepZoomValue;
|
Chris@1327
|
2882
|
Chris@1327
|
2883 if (m_zoomLevel.zone == ZoomLevel::FramesPerPixel) {
|
Chris@1327
|
2884 classicZoomValue = m_zoomLevel.level;
|
Chris@1327
|
2885 deepZoomValue = 1;
|
Chris@1327
|
2886 } else {
|
Chris@1327
|
2887 classicZoomValue = 1;
|
Chris@1327
|
2888 deepZoomValue = m_zoomLevel.level;
|
Chris@1327
|
2889 }
|
Chris@1327
|
2890
|
Chris@316
|
2891 stream << QString("<view "
|
Chris@316
|
2892 "centre=\"%1\" "
|
Chris@316
|
2893 "zoom=\"%2\" "
|
Chris@1327
|
2894 "deepZoom=\"%3\" "
|
Chris@1327
|
2895 "followPan=\"%4\" "
|
Chris@1327
|
2896 "followZoom=\"%5\" "
|
Chris@1327
|
2897 "tracking=\"%6\" "
|
Chris@1331
|
2898 " %7>\n")
|
Chris@1266
|
2899 .arg(m_centreFrame)
|
Chris@1327
|
2900 .arg(classicZoomValue)
|
Chris@1327
|
2901 .arg(deepZoomValue)
|
Chris@1266
|
2902 .arg(m_followPan)
|
Chris@1266
|
2903 .arg(m_followZoom)
|
Chris@1266
|
2904 .arg(m_followPlay == PlaybackScrollContinuous ? "scroll" :
|
Chris@1266
|
2905 m_followPlay == PlaybackScrollPageWithCentre ? "page" :
|
Chris@1266
|
2906 m_followPlay == PlaybackScrollPage ? "daw" :
|
Chris@815
|
2907 "ignore")
|
Chris@1266
|
2908 .arg(extraAttributes);
|
Chris@127
|
2909
|
Chris@838
|
2910 for (int i = 0; i < (int)m_fixedOrderLayers.size(); ++i) {
|
Chris@838
|
2911 bool visible = !m_fixedOrderLayers[i]->isLayerDormant(this);
|
Chris@838
|
2912 m_fixedOrderLayers[i]->toBriefXml(stream, indent + " ",
|
Chris@838
|
2913 QString("visible=\"%1\"")
|
Chris@838
|
2914 .arg(visible ? "true" : "false"));
|
Chris@127
|
2915 }
|
Chris@127
|
2916
|
Chris@316
|
2917 stream << indent + "</view>\n";
|
Chris@127
|
2918 }
|
Chris@127
|
2919
|
Chris@127
|
2920 ViewPropertyContainer::ViewPropertyContainer(View *v) :
|
Chris@127
|
2921 m_v(v)
|
Chris@127
|
2922 {
|
Chris@728
|
2923 // cerr << "ViewPropertyContainer: " << this << " is owned by View " << v << endl;
|
Chris@127
|
2924 connect(m_v, SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
|
Chris@1266
|
2925 this, SIGNAL(propertyChanged(PropertyContainer::PropertyName)));
|
Chris@127
|
2926 }
|
Chris@127
|
2927
|
Chris@728
|
2928 ViewPropertyContainer::~ViewPropertyContainer()
|
Chris@728
|
2929 {
|
Chris@728
|
2930 }
|