annotate view/View.cpp @ 801:8be221f18313 tonioni

Merge
author Chris Cannam
date Mon, 16 Jun 2014 11:49:05 +0100
parents 102ffad481e6
children 40c6c9344ff6
rev   line source
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@127 23
Chris@301 24 #include "layer/TimeRulerLayer.h"
Chris@287 25 #include "layer/SingleColourLayer.h"
Chris@301 26 #include "data/model/PowerOfSqrtTwoZoomConstraint.h"
Chris@301 27 #include "data/model/RangeSummarisableTimeValueModel.h"
Chris@127 28
Chris@797 29 #include "widgets/IconLoader.h"
Chris@797 30
Chris@127 31 #include <QPainter>
Chris@127 32 #include <QPaintEvent>
Chris@127 33 #include <QRect>
Chris@127 34 #include <QApplication>
Chris@226 35 #include <QProgressDialog>
Chris@316 36 #include <QTextStream>
Chris@338 37 #include <QFont>
Chris@583 38 #include <QMessageBox>
Chris@797 39 #include <QPushButton>
Chris@127 40
Chris@127 41 #include <iostream>
Chris@127 42 #include <cassert>
Chris@520 43 #include <cmath>
Chris@127 44
Chris@545 45 #include <unistd.h>
Chris@545 46
Chris@127 47 //#define DEBUG_VIEW_WIDGET_PAINT 1
Chris@127 48
Chris@682 49
Chris@682 50
Chris@127 51
Chris@127 52 View::View(QWidget *w, bool showProgress) :
Chris@127 53 QFrame(w),
Chris@127 54 m_centreFrame(0),
Chris@127 55 m_zoomLevel(1024),
Chris@127 56 m_followPan(true),
Chris@127 57 m_followZoom(true),
Chris@127 58 m_followPlay(PlaybackScrollPage),
Chris@789 59 m_followPlayIsDetached(false),
Chris@153 60 m_playPointerFrame(0),
Chris@127 61 m_showProgress(showProgress),
Chris@127 62 m_cache(0),
Chris@127 63 m_cacheCentreFrame(0),
Chris@127 64 m_cacheZoomLevel(1024),
Chris@127 65 m_selectionCached(false),
Chris@127 66 m_deleting(false),
Chris@127 67 m_haveSelectedLayer(false),
Chris@127 68 m_manager(0),
Chris@127 69 m_propertyContainer(new ViewPropertyContainer(this))
Chris@127 70 {
Chris@728 71 // cerr << "View::View(" << this << ")" << endl;
Chris@127 72 }
Chris@127 73
Chris@127 74 View::~View()
Chris@127 75 {
Chris@728 76 // cerr << "View::~View(" << this << ")" << endl;
Chris@127 77
Chris@127 78 m_deleting = true;
Chris@127 79 delete m_propertyContainer;
Chris@127 80 }
Chris@127 81
Chris@127 82 PropertyContainer::PropertyList
Chris@127 83 View::getProperties() const
Chris@127 84 {
Chris@127 85 PropertyContainer::PropertyList list;
Chris@127 86 list.push_back("Global Scroll");
Chris@127 87 list.push_back("Global Zoom");
Chris@127 88 list.push_back("Follow Playback");
Chris@127 89 return list;
Chris@127 90 }
Chris@127 91
Chris@127 92 QString
Chris@127 93 View::getPropertyLabel(const PropertyName &pn) const
Chris@127 94 {
Chris@127 95 if (pn == "Global Scroll") return tr("Global Scroll");
Chris@127 96 if (pn == "Global Zoom") return tr("Global Zoom");
Chris@127 97 if (pn == "Follow Playback") return tr("Follow Playback");
Chris@127 98 return "";
Chris@127 99 }
Chris@127 100
Chris@127 101 PropertyContainer::PropertyType
Chris@127 102 View::getPropertyType(const PropertyContainer::PropertyName &name) const
Chris@127 103 {
Chris@127 104 if (name == "Global Scroll") return PropertyContainer::ToggleProperty;
Chris@127 105 if (name == "Global Zoom") return PropertyContainer::ToggleProperty;
Chris@127 106 if (name == "Follow Playback") return PropertyContainer::ValueProperty;
Chris@127 107 return PropertyContainer::InvalidProperty;
Chris@127 108 }
Chris@127 109
Chris@127 110 int
Chris@127 111 View::getPropertyRangeAndValue(const PropertyContainer::PropertyName &name,
Chris@216 112 int *min, int *max, int *deflt) const
Chris@127 113 {
Chris@216 114 if (deflt) *deflt = 1;
Chris@127 115 if (name == "Global Scroll") return m_followPan;
Chris@127 116 if (name == "Global Zoom") return m_followZoom;
Chris@127 117 if (name == "Follow Playback") {
Chris@127 118 if (min) *min = 0;
Chris@127 119 if (max) *max = 2;
Chris@216 120 if (deflt) *deflt = int(PlaybackScrollPage);
Chris@127 121 return int(m_followPlay);
Chris@127 122 }
Chris@127 123 if (min) *min = 0;
Chris@127 124 if (max) *max = 0;
Chris@216 125 if (deflt) *deflt = 0;
Chris@127 126 return 0;
Chris@127 127 }
Chris@127 128
Chris@127 129 QString
Chris@127 130 View::getPropertyValueLabel(const PropertyContainer::PropertyName &name,
Chris@127 131 int value) const
Chris@127 132 {
Chris@127 133 if (name == "Follow Playback") {
Chris@127 134 switch (value) {
Chris@127 135 default:
Chris@127 136 case 0: return tr("Scroll");
Chris@127 137 case 1: return tr("Page");
Chris@127 138 case 2: return tr("Off");
Chris@127 139 }
Chris@127 140 }
Chris@127 141 return tr("<unknown>");
Chris@127 142 }
Chris@127 143
Chris@127 144 void
Chris@127 145 View::setProperty(const PropertyContainer::PropertyName &name, int value)
Chris@127 146 {
Chris@127 147 if (name == "Global Scroll") {
Chris@127 148 setFollowGlobalPan(value != 0);
Chris@127 149 } else if (name == "Global Zoom") {
Chris@127 150 setFollowGlobalZoom(value != 0);
Chris@127 151 } else if (name == "Follow Playback") {
Chris@127 152 switch (value) {
Chris@127 153 default:
Chris@127 154 case 0: setPlaybackFollow(PlaybackScrollContinuous); break;
Chris@127 155 case 1: setPlaybackFollow(PlaybackScrollPage); break;
Chris@127 156 case 2: setPlaybackFollow(PlaybackIgnore); break;
Chris@127 157 }
Chris@127 158 }
Chris@127 159 }
Chris@127 160
Chris@127 161 size_t
Chris@127 162 View::getPropertyContainerCount() const
Chris@127 163 {
Chris@127 164 return m_layers.size() + 1; // the 1 is for me
Chris@127 165 }
Chris@127 166
Chris@127 167 const PropertyContainer *
Chris@127 168 View::getPropertyContainer(size_t i) const
Chris@127 169 {
Chris@127 170 return (const PropertyContainer *)(((View *)this)->
Chris@127 171 getPropertyContainer(i));
Chris@127 172 }
Chris@127 173
Chris@127 174 PropertyContainer *
Chris@127 175 View::getPropertyContainer(size_t i)
Chris@127 176 {
Chris@127 177 if (i == 0) return m_propertyContainer;
Chris@127 178 return m_layers[i-1];
Chris@127 179 }
Chris@127 180
Chris@127 181 bool
Chris@127 182 View::getValueExtents(QString unit, float &min, float &max, bool &log) const
Chris@127 183 {
Chris@127 184 bool have = false;
Chris@127 185
Chris@127 186 for (LayerList::const_iterator i = m_layers.begin();
Chris@127 187 i != m_layers.end(); ++i) {
Chris@127 188
Chris@127 189 QString layerUnit;
Chris@127 190 float layerMin = 0.0, layerMax = 0.0;
Chris@127 191 float displayMin = 0.0, displayMax = 0.0;
Chris@127 192 bool layerLog = false;
Chris@127 193
Chris@127 194 if ((*i)->getValueExtents(layerMin, layerMax, layerLog, layerUnit) &&
Chris@127 195 layerUnit.toLower() == unit.toLower()) {
Chris@127 196
Chris@127 197 if ((*i)->getDisplayExtents(displayMin, displayMax)) {
Chris@127 198
Chris@127 199 min = displayMin;
Chris@127 200 max = displayMax;
Chris@127 201 log = layerLog;
Chris@127 202 have = true;
Chris@127 203 break;
Chris@127 204
Chris@127 205 } else {
Chris@127 206
Chris@127 207 if (!have || layerMin < min) min = layerMin;
Chris@127 208 if (!have || layerMax > max) max = layerMax;
Chris@127 209 if (layerLog) log = true;
Chris@127 210 have = true;
Chris@127 211 }
Chris@127 212 }
Chris@127 213 }
Chris@127 214
Chris@127 215 return have;
Chris@127 216 }
Chris@127 217
Chris@127 218 int
Chris@127 219 View::getTextLabelHeight(const Layer *layer, QPainter &paint) const
Chris@127 220 {
Chris@127 221 std::map<int, Layer *> sortedLayers;
Chris@127 222
Chris@127 223 for (LayerList::const_iterator i = m_layers.begin();
Chris@127 224 i != m_layers.end(); ++i) {
Chris@127 225 if ((*i)->needsTextLabelHeight()) {
Chris@127 226 sortedLayers[getObjectExportId(*i)] = *i;
Chris@127 227 }
Chris@127 228 }
Chris@127 229
Chris@127 230 int y = 15 + paint.fontMetrics().ascent();
Chris@127 231
Chris@127 232 for (std::map<int, Layer *>::const_iterator i = sortedLayers.begin();
Chris@127 233 i != sortedLayers.end(); ++i) {
Chris@127 234 if (i->second == layer) return y;
Chris@127 235 y += paint.fontMetrics().height();
Chris@127 236 }
Chris@127 237
Chris@127 238 return y;
Chris@127 239 }
Chris@127 240
Chris@127 241 void
Chris@127 242 View::propertyContainerSelected(View *client, PropertyContainer *pc)
Chris@127 243 {
Chris@127 244 if (client != this) return;
Chris@127 245
Chris@127 246 if (pc == m_propertyContainer) {
Chris@127 247 if (m_haveSelectedLayer) {
Chris@127 248 m_haveSelectedLayer = false;
Chris@127 249 update();
Chris@127 250 }
Chris@127 251 return;
Chris@127 252 }
Chris@127 253
Chris@127 254 delete m_cache;
Chris@127 255 m_cache = 0;
Chris@127 256
Chris@127 257 Layer *selectedLayer = 0;
Chris@127 258
Chris@127 259 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 260 if (*i == pc) {
Chris@127 261 selectedLayer = *i;
Chris@127 262 m_layers.erase(i);
Chris@127 263 break;
Chris@127 264 }
Chris@127 265 }
Chris@127 266
Chris@127 267 if (selectedLayer) {
Chris@127 268 m_haveSelectedLayer = true;
Chris@127 269 m_layers.push_back(selectedLayer);
Chris@127 270 update();
Chris@127 271 } else {
Chris@127 272 m_haveSelectedLayer = false;
Chris@127 273 }
Chris@298 274
Chris@298 275 emit propertyContainerSelected(pc);
Chris@127 276 }
Chris@127 277
Chris@127 278 void
Chris@127 279 View::toolModeChanged()
Chris@127 280 {
Chris@587 281 // SVDEBUG << "View::toolModeChanged(" << m_manager->getToolMode() << ")" << endl;
Chris@127 282 }
Chris@127 283
Chris@133 284 void
Chris@133 285 View::overlayModeChanged()
Chris@133 286 {
Chris@206 287 delete m_cache;
Chris@206 288 m_cache = 0;
Chris@133 289 update();
Chris@133 290 }
Chris@133 291
Chris@133 292 void
Chris@133 293 View::zoomWheelsEnabledChanged()
Chris@133 294 {
Chris@133 295 // subclass might override this
Chris@133 296 }
Chris@133 297
Chris@127 298 long
Chris@127 299 View::getStartFrame() const
Chris@127 300 {
Chris@313 301 return getFrameForX(0);
Chris@127 302 }
Chris@127 303
Chris@127 304 size_t
Chris@127 305 View::getEndFrame() const
Chris@127 306 {
Chris@127 307 return getFrameForX(width()) - 1;
Chris@127 308 }
Chris@127 309
Chris@127 310 void
Chris@127 311 View::setStartFrame(long f)
Chris@127 312 {
Chris@127 313 setCentreFrame(f + m_zoomLevel * (width() / 2));
Chris@127 314 }
Chris@127 315
Chris@127 316 bool
Chris@127 317 View::setCentreFrame(size_t f, bool e)
Chris@127 318 {
Chris@127 319 bool changeVisible = false;
Chris@127 320
Chris@127 321 if (m_centreFrame != f) {
Chris@127 322
Chris@127 323 int formerPixel = m_centreFrame / m_zoomLevel;
Chris@127 324
Chris@127 325 m_centreFrame = f;
Chris@127 326
Chris@127 327 int newPixel = m_centreFrame / m_zoomLevel;
Chris@127 328
Chris@127 329 if (newPixel != formerPixel) {
Chris@127 330
Chris@127 331 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 332 cout << "View(" << this << ")::setCentreFrame: newPixel " << newPixel << ", formerPixel " << formerPixel << endl;
Chris@127 333 #endif
Chris@127 334 update();
Chris@127 335
Chris@127 336 changeVisible = true;
Chris@127 337 }
Chris@127 338
Chris@333 339 if (e) {
Chris@333 340 size_t rf = alignToReference(f);
Chris@355 341 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 342 cerr << "View[" << this << "]::setCentreFrame(" << f
Chris@333 343 << "): emitting centreFrameChanged("
Chris@682 344 << rf << ")" << endl;
Chris@355 345 #endif
Chris@333 346 emit centreFrameChanged(rf, m_followPan, m_followPlay);
Chris@333 347 }
Chris@127 348 }
Chris@127 349
Chris@127 350 return changeVisible;
Chris@127 351 }
Chris@127 352
Chris@127 353 int
Chris@127 354 View::getXForFrame(long frame) const
Chris@127 355 {
Chris@127 356 return (frame - getStartFrame()) / m_zoomLevel;
Chris@127 357 }
Chris@127 358
Chris@127 359 long
Chris@127 360 View::getFrameForX(int x) const
Chris@127 361 {
Chris@313 362 long z = (long)m_zoomLevel;
Chris@313 363 long frame = m_centreFrame - (width()/2) * z;
Chris@354 364
Chris@355 365 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@587 366 SVDEBUG << "View::getFrameForX(" << x << "): z = " << z << ", m_centreFrame = " << m_centreFrame << ", width() = " << width() << ", frame = " << frame << endl;
Chris@355 367 #endif
Chris@354 368
Chris@313 369 frame = (frame / z) * z; // this is start frame
Chris@313 370 return frame + x * z;
Chris@127 371 }
Chris@127 372
Chris@127 373 float
Chris@127 374 View::getYForFrequency(float frequency,
Chris@127 375 float minf,
Chris@127 376 float maxf,
Chris@127 377 bool logarithmic) const
Chris@127 378 {
Chris@382 379 Profiler profiler("View::getYForFrequency");
Chris@382 380
Chris@127 381 int h = height();
Chris@127 382
Chris@127 383 if (logarithmic) {
Chris@127 384
Chris@127 385 static float lastminf = 0.0, lastmaxf = 0.0;
Chris@127 386 static float logminf = 0.0, logmaxf = 0.0;
Chris@127 387
Chris@127 388 if (lastminf != minf) {
Chris@127 389 lastminf = (minf == 0.0 ? 1.0 : minf);
Chris@127 390 logminf = log10f(minf);
Chris@127 391 }
Chris@127 392 if (lastmaxf != maxf) {
Chris@127 393 lastmaxf = (maxf < lastminf ? lastminf : maxf);
Chris@127 394 logmaxf = log10f(maxf);
Chris@127 395 }
Chris@127 396
Chris@127 397 if (logminf == logmaxf) return 0;
Chris@127 398 return h - (h * (log10f(frequency) - logminf)) / (logmaxf - logminf);
Chris@127 399
Chris@127 400 } else {
Chris@127 401
Chris@127 402 if (minf == maxf) return 0;
Chris@127 403 return h - (h * (frequency - minf)) / (maxf - minf);
Chris@127 404 }
Chris@127 405 }
Chris@127 406
Chris@127 407 float
Chris@127 408 View::getFrequencyForY(int y,
Chris@127 409 float minf,
Chris@127 410 float maxf,
Chris@127 411 bool logarithmic) const
Chris@127 412 {
Chris@127 413 int h = height();
Chris@127 414
Chris@127 415 if (logarithmic) {
Chris@127 416
Chris@127 417 static float lastminf = 0.0, lastmaxf = 0.0;
Chris@127 418 static float logminf = 0.0, logmaxf = 0.0;
Chris@127 419
Chris@127 420 if (lastminf != minf) {
Chris@127 421 lastminf = (minf == 0.0 ? 1.0 : minf);
Chris@127 422 logminf = log10f(minf);
Chris@127 423 }
Chris@127 424 if (lastmaxf != maxf) {
Chris@127 425 lastmaxf = (maxf < lastminf ? lastminf : maxf);
Chris@127 426 logmaxf = log10f(maxf);
Chris@127 427 }
Chris@127 428
Chris@127 429 if (logminf == logmaxf) return 0;
Chris@127 430 return pow(10.f, logminf + ((logmaxf - logminf) * (h - y)) / h);
Chris@127 431
Chris@127 432 } else {
Chris@127 433
Chris@127 434 if (minf == maxf) return 0;
Chris@127 435 return minf + ((h - y) * (maxf - minf)) / h;
Chris@127 436 }
Chris@127 437 }
Chris@127 438
Chris@127 439 int
Chris@127 440 View::getZoomLevel() const
Chris@127 441 {
Chris@127 442 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 443 // cout << "zoom level: " << m_zoomLevel << endl;
Chris@127 444 #endif
Chris@127 445 return m_zoomLevel;
Chris@127 446 }
Chris@127 447
Chris@127 448 void
Chris@127 449 View::setZoomLevel(size_t z)
Chris@127 450 {
Chris@462 451 if (z < 1) z = 1;
Chris@127 452 if (m_zoomLevel != int(z)) {
Chris@127 453 m_zoomLevel = z;
Chris@222 454 emit zoomLevelChanged(z, m_followZoom);
Chris@127 455 update();
Chris@127 456 }
Chris@127 457 }
Chris@127 458
Chris@224 459 bool
Chris@224 460 View::hasLightBackground() const
Chris@224 461 {
Chris@287 462 bool darkPalette = false;
Chris@292 463 if (m_manager) darkPalette = m_manager->getGlobalDarkBackground();
Chris@287 464
Chris@287 465 Layer::ColourSignificance maxSignificance = Layer::ColourAbsent;
Chris@287 466 bool mostSignificantHasDarkBackground = false;
Chris@287 467
Chris@224 468 for (LayerList::const_iterator i = m_layers.begin();
Chris@224 469 i != m_layers.end(); ++i) {
Chris@287 470
Chris@287 471 Layer::ColourSignificance s = (*i)->getLayerColourSignificance();
Chris@287 472 bool light = (*i)->hasLightBackground();
Chris@287 473
Chris@287 474 if (int(s) > int(maxSignificance)) {
Chris@287 475 maxSignificance = s;
Chris@287 476 mostSignificantHasDarkBackground = !light;
Chris@287 477 } else if (s == maxSignificance && !light) {
Chris@287 478 mostSignificantHasDarkBackground = true;
Chris@287 479 }
Chris@224 480 }
Chris@287 481
Chris@287 482 if (int(maxSignificance) >= int(Layer::ColourAndBackgroundSignificant)) {
Chris@287 483 return !mostSignificantHasDarkBackground;
Chris@287 484 } else {
Chris@287 485 return !darkPalette;
Chris@287 486 }
Chris@287 487 }
Chris@287 488
Chris@287 489 QColor
Chris@287 490 View::getBackground() const
Chris@287 491 {
Chris@287 492 bool light = hasLightBackground();
Chris@287 493
Chris@287 494 QColor widgetbg = palette().window().color();
Chris@287 495 bool widgetLight =
Chris@287 496 (widgetbg.red() + widgetbg.green() + widgetbg.blue()) > 384;
Chris@287 497
Chris@296 498 if (widgetLight == light) {
Chris@296 499 if (widgetLight) {
Chris@296 500 return widgetbg.light();
Chris@296 501 } else {
Chris@296 502 return widgetbg.dark();
Chris@296 503 }
Chris@296 504 }
Chris@287 505 else if (light) return Qt::white;
Chris@287 506 else return Qt::black;
Chris@287 507 }
Chris@287 508
Chris@287 509 QColor
Chris@287 510 View::getForeground() const
Chris@287 511 {
Chris@287 512 bool light = hasLightBackground();
Chris@287 513
Chris@287 514 QColor widgetfg = palette().text().color();
Chris@287 515 bool widgetLight =
Chris@287 516 (widgetfg.red() + widgetfg.green() + widgetfg.blue()) > 384;
Chris@287 517
Chris@287 518 if (widgetLight != light) return widgetfg;
Chris@287 519 else if (light) return Qt::black;
Chris@287 520 else return Qt::white;
Chris@224 521 }
Chris@224 522
Chris@127 523 void
Chris@127 524 View::addLayer(Layer *layer)
Chris@127 525 {
Chris@127 526 delete m_cache;
Chris@127 527 m_cache = 0;
Chris@127 528
Chris@287 529 SingleColourLayer *scl = dynamic_cast<SingleColourLayer *>(layer);
Chris@287 530 if (scl) scl->setDefaultColourFor(this);
Chris@287 531
Chris@127 532 m_layers.push_back(layer);
Chris@127 533
Chris@555 534 QProgressBar *pb = new QProgressBar(this);
Chris@555 535 pb->setMinimum(0);
Chris@555 536 pb->setMaximum(0);
Chris@555 537 pb->setFixedWidth(80);
Chris@555 538 pb->setTextVisible(false);
Chris@555 539
Chris@797 540 QPushButton *cancel = new QPushButton(this);
Chris@797 541 cancel->setIcon(IconLoader().load("fileclose"));
Chris@797 542 cancel->setFlat(true);
Chris@797 543 cancel->setFixedSize(QSize(20, 20));
Chris@797 544 connect(cancel, SIGNAL(clicked()), this, SLOT(cancelClicked()));
Chris@797 545
Chris@555 546 ProgressBarRec pbr;
Chris@797 547 pbr.cancel = cancel;
Chris@555 548 pbr.bar = pb;
Chris@555 549 pbr.lastCheck = 0;
Chris@555 550 pbr.checkTimer = new QTimer();
Chris@555 551 connect(pbr.checkTimer, SIGNAL(timeout()), this,
Chris@555 552 SLOT(progressCheckStalledTimerElapsed()));
Chris@555 553
Chris@555 554 m_progressBars[layer] = pbr;
Chris@555 555
Chris@555 556 QFont f(pb->font());
Chris@339 557 int fs = Preferences::getInstance()->getViewFontSize();
Chris@339 558 f.setPointSize(std::min(fs, int(ceil(fs * 0.85))));
Chris@339 559
Chris@797 560 cancel->hide();
Chris@797 561
Chris@555 562 pb->setFont(f);
Chris@555 563 pb->hide();
Chris@127 564
Chris@127 565 connect(layer, SIGNAL(layerParametersChanged()),
Chris@127 566 this, SLOT(layerParametersChanged()));
Chris@197 567 connect(layer, SIGNAL(layerParameterRangesChanged()),
Chris@197 568 this, SLOT(layerParameterRangesChanged()));
Chris@268 569 connect(layer, SIGNAL(layerMeasurementRectsChanged()),
Chris@268 570 this, SLOT(layerMeasurementRectsChanged()));
Chris@127 571 connect(layer, SIGNAL(layerNameChanged()),
Chris@127 572 this, SLOT(layerNameChanged()));
Chris@127 573 connect(layer, SIGNAL(modelChanged()),
Chris@127 574 this, SLOT(modelChanged()));
Chris@127 575 connect(layer, SIGNAL(modelCompletionChanged()),
Chris@127 576 this, SLOT(modelCompletionChanged()));
Chris@320 577 connect(layer, SIGNAL(modelAlignmentCompletionChanged()),
Chris@320 578 this, SLOT(modelAlignmentCompletionChanged()));
Chris@127 579 connect(layer, SIGNAL(modelChanged(size_t, size_t)),
Chris@127 580 this, SLOT(modelChanged(size_t, size_t)));
Chris@127 581 connect(layer, SIGNAL(modelReplaced()),
Chris@127 582 this, SLOT(modelReplaced()));
Chris@127 583
Chris@127 584 update();
Chris@127 585
Chris@127 586 emit propertyContainerAdded(layer);
Chris@127 587 }
Chris@127 588
Chris@127 589 void
Chris@127 590 View::removeLayer(Layer *layer)
Chris@127 591 {
Chris@127 592 if (m_deleting) {
Chris@127 593 return;
Chris@127 594 }
Chris@127 595
Chris@127 596 delete m_cache;
Chris@127 597 m_cache = 0;
Chris@127 598
Chris@127 599 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 600 if (*i == layer) {
Chris@127 601 m_layers.erase(i);
Chris@127 602 if (m_progressBars.find(layer) != m_progressBars.end()) {
Chris@555 603 delete m_progressBars[layer].bar;
Chris@797 604 delete m_progressBars[layer].cancel;
Chris@555 605 delete m_progressBars[layer].checkTimer;
Chris@127 606 m_progressBars.erase(layer);
Chris@127 607 }
Chris@127 608 break;
Chris@127 609 }
Chris@127 610 }
Chris@127 611
Chris@197 612 disconnect(layer, SIGNAL(layerParametersChanged()),
Chris@197 613 this, SLOT(layerParametersChanged()));
Chris@197 614 disconnect(layer, SIGNAL(layerParameterRangesChanged()),
Chris@197 615 this, SLOT(layerParameterRangesChanged()));
Chris@197 616 disconnect(layer, SIGNAL(layerNameChanged()),
Chris@197 617 this, SLOT(layerNameChanged()));
Chris@197 618 disconnect(layer, SIGNAL(modelChanged()),
Chris@197 619 this, SLOT(modelChanged()));
Chris@197 620 disconnect(layer, SIGNAL(modelCompletionChanged()),
Chris@197 621 this, SLOT(modelCompletionChanged()));
Chris@320 622 disconnect(layer, SIGNAL(modelAlignmentCompletionChanged()),
Chris@320 623 this, SLOT(modelAlignmentCompletionChanged()));
Chris@197 624 disconnect(layer, SIGNAL(modelChanged(size_t, size_t)),
Chris@197 625 this, SLOT(modelChanged(size_t, size_t)));
Chris@197 626 disconnect(layer, SIGNAL(modelReplaced()),
Chris@197 627 this, SLOT(modelReplaced()));
Chris@197 628
Chris@127 629 update();
Chris@127 630
Chris@127 631 emit propertyContainerRemoved(layer);
Chris@127 632 }
Chris@127 633
Chris@127 634 Layer *
Chris@127 635 View::getSelectedLayer()
Chris@127 636 {
Chris@127 637 if (m_haveSelectedLayer && !m_layers.empty()) {
Chris@733 638 int n = getLayerCount();
Chris@733 639 while (n > 0) {
Chris@733 640 --n;
Chris@733 641 Layer *layer = getLayer(n);
Chris@733 642 if (!(layer->isLayerDormant(this))) {
Chris@733 643 return layer;
Chris@733 644 }
Chris@733 645 }
Chris@733 646 return 0;
Chris@127 647 } else {
Chris@127 648 return 0;
Chris@127 649 }
Chris@127 650 }
Chris@127 651
Chris@127 652 const Layer *
Chris@127 653 View::getSelectedLayer() const
Chris@127 654 {
Chris@127 655 return const_cast<const Layer *>(const_cast<View *>(this)->getSelectedLayer());
Chris@127 656 }
Chris@127 657
Chris@127 658 void
Chris@127 659 View::setViewManager(ViewManager *manager)
Chris@127 660 {
Chris@127 661 if (m_manager) {
Chris@211 662 m_manager->disconnect(this, SLOT(globalCentreFrameChanged(unsigned long)));
Chris@211 663 m_manager->disconnect(this, SLOT(viewCentreFrameChanged(View *, unsigned long)));
Chris@211 664 m_manager->disconnect(this, SLOT(viewManagerPlaybackFrameChanged(unsigned long)));
Chris@222 665 m_manager->disconnect(this, SLOT(viewZoomLevelChanged(View *, unsigned long, bool)));
Chris@211 666 m_manager->disconnect(this, SLOT(toolModeChanged()));
Chris@211 667 m_manager->disconnect(this, SLOT(selectionChanged()));
Chris@211 668 m_manager->disconnect(this, SLOT(overlayModeChanged()));
Chris@211 669 m_manager->disconnect(this, SLOT(zoomWheelsEnabledChanged()));
Chris@222 670 disconnect(m_manager, SLOT(viewCentreFrameChanged(unsigned long, bool, PlaybackFollowMode)));
Chris@222 671 disconnect(m_manager, SLOT(zoomLevelChanged(unsigned long, bool)));
Chris@127 672 }
Chris@127 673
Chris@127 674 m_manager = manager;
Chris@127 675
Chris@211 676 connect(m_manager, SIGNAL(globalCentreFrameChanged(unsigned long)),
Chris@211 677 this, SLOT(globalCentreFrameChanged(unsigned long)));
Chris@213 678 connect(m_manager, SIGNAL(viewCentreFrameChanged(View *, unsigned long)),
Chris@211 679 this, SLOT(viewCentreFrameChanged(View *, unsigned long)));
Chris@127 680 connect(m_manager, SIGNAL(playbackFrameChanged(unsigned long)),
Chris@127 681 this, SLOT(viewManagerPlaybackFrameChanged(unsigned long)));
Chris@211 682
Chris@222 683 connect(m_manager, SIGNAL(viewZoomLevelChanged(View *, unsigned long, bool)),
Chris@222 684 this, SLOT(viewZoomLevelChanged(View *, unsigned long, bool)));
Chris@211 685
Chris@127 686 connect(m_manager, SIGNAL(toolModeChanged()),
Chris@127 687 this, SLOT(toolModeChanged()));
Chris@127 688 connect(m_manager, SIGNAL(selectionChanged()),
Chris@127 689 this, SLOT(selectionChanged()));
Chris@127 690 connect(m_manager, SIGNAL(inProgressSelectionChanged()),
Chris@127 691 this, SLOT(selectionChanged()));
Chris@127 692 connect(m_manager, SIGNAL(overlayModeChanged()),
Chris@133 693 this, SLOT(overlayModeChanged()));
Chris@607 694 connect(m_manager, SIGNAL(showCentreLineChanged()),
Chris@607 695 this, SLOT(overlayModeChanged()));
Chris@133 696 connect(m_manager, SIGNAL(zoomWheelsEnabledChanged()),
Chris@133 697 this, SLOT(zoomWheelsEnabledChanged()));
Chris@127 698
Chris@211 699 connect(this, SIGNAL(centreFrameChanged(unsigned long, bool,
Chris@211 700 PlaybackFollowMode)),
Chris@211 701 m_manager, SLOT(viewCentreFrameChanged(unsigned long, bool,
Chris@211 702 PlaybackFollowMode)));
Chris@211 703
Chris@222 704 connect(this, SIGNAL(zoomLevelChanged(unsigned long, bool)),
Chris@222 705 m_manager, SLOT(viewZoomLevelChanged(unsigned long, bool)));
Chris@127 706
Chris@516 707 // setCentreFrame(m_manager->getViewInitialCentreFrame());
Chris@516 708
Chris@364 709 if (m_followPlay == PlaybackScrollPage) {
Chris@587 710 // SVDEBUG << "View::setViewManager: setting centre frame to global centre frame: " << m_manager->getGlobalCentreFrame() << endl;
Chris@364 711 setCentreFrame(m_manager->getGlobalCentreFrame(), false);
Chris@364 712 } else if (m_followPlay == PlaybackScrollContinuous) {
Chris@587 713 // SVDEBUG << "View::setViewManager: setting centre frame to playback frame: " << m_manager->getPlaybackFrame() << endl;
Chris@236 714 setCentreFrame(m_manager->getPlaybackFrame(), false);
Chris@236 715 } else if (m_followPan) {
Chris@587 716 // SVDEBUG << "View::setViewManager: (follow pan) setting centre frame to global centre frame: " << m_manager->getGlobalCentreFrame() << endl;
Chris@236 717 setCentreFrame(m_manager->getGlobalCentreFrame(), false);
Chris@236 718 }
Chris@516 719
Chris@236 720 if (m_followZoom) setZoomLevel(m_manager->getGlobalZoom());
Chris@236 721
Chris@511 722 movePlayPointer(getAlignedPlaybackFrame());
Chris@511 723
Chris@127 724 toolModeChanged();
Chris@127 725 }
Chris@127 726
Chris@127 727 void
Chris@516 728 View::setViewManager(ViewManager *vm, long initialCentreFrame)
Chris@516 729 {
Chris@516 730 setViewManager(vm);
Chris@516 731 setCentreFrame(initialCentreFrame, false);
Chris@516 732 }
Chris@516 733
Chris@516 734 void
Chris@127 735 View::setFollowGlobalPan(bool f)
Chris@127 736 {
Chris@127 737 m_followPan = f;
Chris@127 738 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 739 }
Chris@127 740
Chris@127 741 void
Chris@127 742 View::setFollowGlobalZoom(bool f)
Chris@127 743 {
Chris@127 744 m_followZoom = f;
Chris@127 745 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 746 }
Chris@127 747
Chris@127 748 void
Chris@267 749 View::drawVisibleText(QPainter &paint, int x, int y, QString text, TextStyle style) const
Chris@127 750 {
Chris@630 751 if (style == OutlinedText || style == OutlinedItalicText) {
Chris@127 752
Chris@279 753 paint.save();
Chris@279 754
Chris@630 755 if (style == OutlinedItalicText) {
Chris@630 756 QFont f(paint.font());
Chris@630 757 f.setItalic(true);
Chris@630 758 paint.setFont(f);
Chris@630 759 }
Chris@630 760
Chris@575 761 QColor penColour, surroundColour, boxColour;
Chris@279 762
Chris@287 763 penColour = getForeground();
Chris@287 764 surroundColour = getBackground();
Chris@575 765 boxColour = surroundColour;
Chris@575 766 boxColour.setAlpha(127);
Chris@575 767
Chris@575 768 paint.setPen(Qt::NoPen);
Chris@575 769 paint.setBrush(boxColour);
Chris@630 770
Chris@575 771 QRect r = paint.fontMetrics().boundingRect(text);
Chris@575 772 r.translate(QPoint(x, y));
Chris@682 773 // cerr << "drawVisibleText: r = " << r.x() << "," <<r.y() << " " << r.width() << "x" << r.height() << endl;
Chris@575 774 paint.drawRect(r);
Chris@575 775 paint.setBrush(Qt::NoBrush);
Chris@279 776
Chris@127 777 paint.setPen(surroundColour);
Chris@127 778
Chris@127 779 for (int dx = -1; dx <= 1; ++dx) {
Chris@127 780 for (int dy = -1; dy <= 1; ++dy) {
Chris@127 781 if (!(dx || dy)) continue;
Chris@127 782 paint.drawText(x + dx, y + dy, text);
Chris@127 783 }
Chris@127 784 }
Chris@127 785
Chris@127 786 paint.setPen(penColour);
Chris@127 787
Chris@127 788 paint.drawText(x, y, text);
Chris@287 789
Chris@279 790 paint.restore();
Chris@127 791
Chris@127 792 } else {
Chris@127 793
Chris@682 794 cerr << "ERROR: View::drawVisibleText: Boxed style not yet implemented!" << endl;
Chris@127 795 }
Chris@127 796 }
Chris@127 797
Chris@127 798 void
Chris@127 799 View::setPlaybackFollow(PlaybackFollowMode m)
Chris@127 800 {
Chris@127 801 m_followPlay = m;
Chris@127 802 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 803 }
Chris@127 804
Chris@127 805 void
Chris@127 806 View::modelChanged()
Chris@127 807 {
Chris@127 808 QObject *obj = sender();
Chris@127 809
Chris@127 810 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 811 cerr << "View(" << this << ")::modelChanged()" << endl;
Chris@127 812 #endif
Chris@127 813
Chris@127 814 // If the model that has changed is not used by any of the cached
Chris@127 815 // layers, we won't need to recreate the cache
Chris@127 816
Chris@127 817 bool recreate = false;
Chris@127 818
Chris@127 819 bool discard;
Chris@127 820 LayerList scrollables = getScrollableBackLayers(false, discard);
Chris@127 821 for (LayerList::const_iterator i = scrollables.begin();
Chris@127 822 i != scrollables.end(); ++i) {
Chris@127 823 if (*i == obj || (*i)->getModel() == obj) {
Chris@127 824 recreate = true;
Chris@127 825 break;
Chris@127 826 }
Chris@127 827 }
Chris@127 828
Chris@127 829 if (recreate) {
Chris@127 830 delete m_cache;
Chris@127 831 m_cache = 0;
Chris@127 832 }
Chris@127 833
Chris@336 834 emit layerModelChanged();
Chris@336 835
Chris@127 836 checkProgress(obj);
Chris@127 837
Chris@127 838 update();
Chris@127 839 }
Chris@127 840
Chris@127 841 void
Chris@127 842 View::modelChanged(size_t startFrame, size_t endFrame)
Chris@127 843 {
Chris@127 844 QObject *obj = sender();
Chris@127 845
Chris@127 846 long myStartFrame = getStartFrame();
Chris@127 847 size_t myEndFrame = getEndFrame();
Chris@127 848
Chris@127 849 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 850 cerr << "View(" << this << ")::modelChanged(" << startFrame << "," << endFrame << ") [me " << myStartFrame << "," << myEndFrame << "]" << endl;
Chris@127 851 #endif
Chris@127 852
Chris@127 853 if (myStartFrame > 0 && endFrame < size_t(myStartFrame)) {
Chris@127 854 checkProgress(obj);
Chris@127 855 return;
Chris@127 856 }
Chris@127 857 if (startFrame > myEndFrame) {
Chris@127 858 checkProgress(obj);
Chris@127 859 return;
Chris@127 860 }
Chris@127 861
Chris@127 862 // If the model that has changed is not used by any of the cached
Chris@127 863 // layers, we won't need to recreate the cache
Chris@127 864
Chris@127 865 bool recreate = false;
Chris@127 866
Chris@127 867 bool discard;
Chris@127 868 LayerList scrollables = getScrollableBackLayers(false, discard);
Chris@127 869 for (LayerList::const_iterator i = scrollables.begin();
Chris@127 870 i != scrollables.end(); ++i) {
Chris@127 871 if (*i == obj || (*i)->getModel() == obj) {
Chris@127 872 recreate = true;
Chris@127 873 break;
Chris@127 874 }
Chris@127 875 }
Chris@127 876
Chris@127 877 if (recreate) {
Chris@127 878 delete m_cache;
Chris@127 879 m_cache = 0;
Chris@127 880 }
Chris@127 881
Chris@127 882 if (long(startFrame) < myStartFrame) startFrame = myStartFrame;
Chris@127 883 if (endFrame > myEndFrame) endFrame = myEndFrame;
Chris@127 884
Chris@127 885 checkProgress(obj);
Chris@127 886
Chris@127 887 update();
Chris@127 888 }
Chris@127 889
Chris@127 890 void
Chris@127 891 View::modelCompletionChanged()
Chris@127 892 {
Chris@682 893 // cerr << "View(" << this << ")::modelCompletionChanged()" << endl;
Chris@301 894
Chris@127 895 QObject *obj = sender();
Chris@127 896 checkProgress(obj);
Chris@127 897 }
Chris@127 898
Chris@127 899 void
Chris@320 900 View::modelAlignmentCompletionChanged()
Chris@320 901 {
Chris@682 902 // cerr << "View(" << this << ")::modelAlignmentCompletionChanged()" << endl;
Chris@320 903
Chris@320 904 QObject *obj = sender();
Chris@320 905 checkProgress(obj);
Chris@320 906 }
Chris@320 907
Chris@320 908 void
Chris@127 909 View::modelReplaced()
Chris@127 910 {
Chris@127 911 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 912 cerr << "View(" << this << ")::modelReplaced()" << endl;
Chris@127 913 #endif
Chris@127 914 delete m_cache;
Chris@127 915 m_cache = 0;
Chris@127 916
Chris@127 917 update();
Chris@127 918 }
Chris@127 919
Chris@127 920 void
Chris@127 921 View::layerParametersChanged()
Chris@127 922 {
Chris@127 923 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@127 924
Chris@127 925 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@587 926 SVDEBUG << "View::layerParametersChanged()" << endl;
Chris@127 927 #endif
Chris@127 928
Chris@127 929 delete m_cache;
Chris@127 930 m_cache = 0;
Chris@127 931 update();
Chris@127 932
Chris@127 933 if (layer) {
Chris@127 934 emit propertyContainerPropertyChanged(layer);
Chris@127 935 }
Chris@127 936 }
Chris@127 937
Chris@127 938 void
Chris@197 939 View::layerParameterRangesChanged()
Chris@197 940 {
Chris@197 941 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@197 942 if (layer) emit propertyContainerPropertyRangeChanged(layer);
Chris@197 943 }
Chris@197 944
Chris@197 945 void
Chris@268 946 View::layerMeasurementRectsChanged()
Chris@268 947 {
Chris@268 948 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@268 949 if (layer) update();
Chris@268 950 }
Chris@268 951
Chris@268 952 void
Chris@127 953 View::layerNameChanged()
Chris@127 954 {
Chris@127 955 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@127 956 if (layer) emit propertyContainerNameChanged(layer);
Chris@127 957 }
Chris@127 958
Chris@127 959 void
Chris@333 960 View::globalCentreFrameChanged(unsigned long rf)
Chris@127 961 {
Chris@211 962 if (m_followPan) {
Chris@333 963 size_t f = alignFromReference(rf);
Chris@363 964 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 965 cerr << "View[" << this << "]::globalCentreFrameChanged(" << rf
Chris@682 966 << "): setting centre frame to " << f << endl;
Chris@363 967 #endif
Chris@333 968 setCentreFrame(f, false);
Chris@127 969 }
Chris@127 970 }
Chris@127 971
Chris@127 972 void
Chris@248 973 View::viewCentreFrameChanged(View *, unsigned long )
Chris@211 974 {
Chris@211 975 // We do nothing with this, but a subclass might
Chris@211 976 }
Chris@211 977
Chris@211 978 void
Chris@127 979 View::viewManagerPlaybackFrameChanged(unsigned long f)
Chris@127 980 {
Chris@127 981 if (m_manager) {
Chris@127 982 if (sender() != m_manager) return;
Chris@127 983 }
Chris@127 984
Chris@301 985 f = getAlignedPlaybackFrame();
Chris@301 986
Chris@511 987 movePlayPointer(f);
Chris@511 988 }
Chris@511 989
Chris@511 990 void
Chris@511 991 View::movePlayPointer(unsigned long newFrame)
Chris@511 992 {
Chris@511 993 if (m_playPointerFrame == newFrame) return;
Chris@511 994 bool visibleChange =
Chris@511 995 (getXForFrame(m_playPointerFrame) != getXForFrame(newFrame));
Chris@127 996 size_t oldPlayPointerFrame = m_playPointerFrame;
Chris@511 997 m_playPointerFrame = newFrame;
Chris@511 998 if (!visibleChange) return;
Chris@127 999
Chris@513 1000 bool somethingGoingOn =
Chris@513 1001 ((QApplication::mouseButtons() != Qt::NoButton) ||
Chris@513 1002 (QApplication::keyboardModifiers() & Qt::AltModifier));
Chris@513 1003
Chris@789 1004 bool pointerInVisibleArea =
Chris@789 1005 long(m_playPointerFrame) >= getStartFrame() &&
Chris@789 1006 (m_playPointerFrame < getEndFrame() ||
Chris@789 1007 // include old pointer location so we know to refresh when moving out
Chris@789 1008 oldPlayPointerFrame < getEndFrame());
Chris@789 1009
Chris@127 1010 switch (m_followPlay) {
Chris@127 1011
Chris@127 1012 case PlaybackScrollContinuous:
Chris@513 1013 if (!somethingGoingOn) {
Chris@511 1014 setCentreFrame(m_playPointerFrame, false);
Chris@127 1015 }
Chris@127 1016 break;
Chris@127 1017
Chris@127 1018 case PlaybackScrollPage:
Chris@789 1019
Chris@789 1020 if (!pointerInVisibleArea && somethingGoingOn) {
Chris@789 1021
Chris@789 1022 m_followPlayIsDetached = true;
Chris@789 1023
Chris@789 1024 } else if (!pointerInVisibleArea && m_followPlayIsDetached) {
Chris@789 1025
Chris@789 1026 // do nothing; we aren't tracking until the pointer comes back in
Chris@789 1027
Chris@789 1028 } else {
Chris@789 1029
Chris@789 1030 int xold = getXForFrame(oldPlayPointerFrame);
Chris@789 1031 update(xold - 4, 0, 9, height());
Chris@789 1032
Chris@789 1033 long w = getEndFrame() - getStartFrame();
Chris@789 1034 w -= w/5;
Chris@789 1035 long sf = (m_playPointerFrame / w) * w - w/8;
Chris@789 1036
Chris@789 1037 if (m_manager &&
Chris@789 1038 m_manager->isPlaying() &&
Chris@789 1039 m_manager->getPlaySelectionMode()) {
Chris@789 1040 MultiSelection::SelectionList selections = m_manager->getSelections();
Chris@789 1041 if (!selections.empty()) {
Chris@789 1042 size_t selectionStart = selections.begin()->getStartFrame();
Chris@789 1043 if (sf < long(selectionStart) - w / 10) {
Chris@789 1044 sf = long(selectionStart) - w / 10;
Chris@789 1045 }
Chris@789 1046 }
Chris@789 1047 }
Chris@127 1048
Chris@127 1049 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@789 1050 cerr << "PlaybackScrollPage: f = " << m_playPointerFrame << ", sf = " << sf << ", start frame "
Chris@789 1051 << getStartFrame() << endl;
Chris@127 1052 #endif
Chris@127 1053
Chris@789 1054 // We don't consider scrolling unless the pointer is outside
Chris@789 1055 // the central visible range already
Chris@789 1056
Chris@789 1057 int xnew = getXForFrame(m_playPointerFrame);
Chris@127 1058
Chris@127 1059 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@789 1060 cerr << "xnew = " << xnew << ", width = " << width() << endl;
Chris@127 1061 #endif
Chris@127 1062
Chris@789 1063 bool shouldScroll = (xnew > (width() * 7) / 8);
Chris@789 1064
Chris@789 1065 if (!m_followPlayIsDetached && (xnew < width() / 8)) {
Chris@789 1066 shouldScroll = true;
Chris@789 1067 }
Chris@789 1068
Chris@789 1069 if (xnew > width() / 8) {
Chris@789 1070 m_followPlayIsDetached = false;
Chris@791 1071 } else if (somethingGoingOn) {
Chris@791 1072 m_followPlayIsDetached = true;
Chris@789 1073 }
Chris@789 1074
Chris@789 1075 if (!somethingGoingOn && shouldScroll) {
Chris@789 1076 long offset = getFrameForX(width()/2) - getStartFrame();
Chris@789 1077 long newCentre = sf + offset;
Chris@789 1078 bool changed = setCentreFrame(newCentre, false);
Chris@789 1079 if (changed) {
Chris@789 1080 xold = getXForFrame(oldPlayPointerFrame);
Chris@789 1081 update(xold - 4, 0, 9, height());
Chris@789 1082 }
Chris@789 1083 }
Chris@789 1084
Chris@789 1085 update(xnew - 4, 0, 9, height());
Chris@789 1086 }
Chris@789 1087 break;
Chris@127 1088
Chris@127 1089 case PlaybackIgnore:
Chris@511 1090 if (long(m_playPointerFrame) >= getStartFrame() &&
Chris@511 1091 m_playPointerFrame < getEndFrame()) {
Chris@127 1092 update();
Chris@127 1093 }
Chris@127 1094 break;
Chris@127 1095 }
Chris@127 1096 }
Chris@127 1097
Chris@127 1098 void
Chris@222 1099 View::viewZoomLevelChanged(View *p, unsigned long z, bool locked)
Chris@127 1100 {
Chris@244 1101 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1102 cerr << "View[" << this << "]: viewZoomLevelChanged(" << p << ", " << z << ", " << locked << ")" << endl;
Chris@244 1103 #endif
Chris@127 1104 if (m_followZoom && p != this && locked) {
Chris@222 1105 setZoomLevel(z);
Chris@127 1106 }
Chris@127 1107 }
Chris@127 1108
Chris@127 1109 void
Chris@127 1110 View::selectionChanged()
Chris@127 1111 {
Chris@127 1112 if (m_selectionCached) {
Chris@127 1113 delete m_cache;
Chris@127 1114 m_cache = 0;
Chris@127 1115 m_selectionCached = false;
Chris@127 1116 }
Chris@127 1117 update();
Chris@127 1118 }
Chris@127 1119
Chris@127 1120 size_t
Chris@222 1121 View::getFirstVisibleFrame() const
Chris@222 1122 {
Chris@222 1123 long f0 = getStartFrame();
Chris@222 1124 size_t f = getModelsStartFrame();
Chris@222 1125 if (f0 < 0 || f0 < long(f)) return f;
Chris@222 1126 return f0;
Chris@222 1127 }
Chris@222 1128
Chris@222 1129 size_t
Chris@222 1130 View::getLastVisibleFrame() const
Chris@222 1131 {
Chris@222 1132 size_t f0 = getEndFrame();
Chris@222 1133 size_t f = getModelsEndFrame();
Chris@222 1134 if (f0 > f) return f;
Chris@222 1135 return f0;
Chris@222 1136 }
Chris@222 1137
Chris@222 1138 size_t
Chris@127 1139 View::getModelsStartFrame() const
Chris@127 1140 {
Chris@127 1141 bool first = true;
Chris@127 1142 size_t startFrame = 0;
Chris@127 1143
Chris@127 1144 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1145
Chris@127 1146 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 1147
Chris@127 1148 size_t thisStartFrame = (*i)->getModel()->getStartFrame();
Chris@127 1149
Chris@127 1150 if (first || thisStartFrame < startFrame) {
Chris@127 1151 startFrame = thisStartFrame;
Chris@127 1152 }
Chris@127 1153 first = false;
Chris@127 1154 }
Chris@127 1155 }
Chris@127 1156 return startFrame;
Chris@127 1157 }
Chris@127 1158
Chris@127 1159 size_t
Chris@127 1160 View::getModelsEndFrame() const
Chris@127 1161 {
Chris@127 1162 bool first = true;
Chris@127 1163 size_t endFrame = 0;
Chris@127 1164
Chris@127 1165 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1166
Chris@127 1167 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 1168
Chris@127 1169 size_t thisEndFrame = (*i)->getModel()->getEndFrame();
Chris@127 1170
Chris@127 1171 if (first || thisEndFrame > endFrame) {
Chris@127 1172 endFrame = thisEndFrame;
Chris@127 1173 }
Chris@127 1174 first = false;
Chris@127 1175 }
Chris@127 1176 }
Chris@127 1177
Chris@127 1178 if (first) return getModelsStartFrame();
Chris@127 1179 return endFrame;
Chris@127 1180 }
Chris@127 1181
Chris@127 1182 int
Chris@127 1183 View::getModelsSampleRate() const
Chris@127 1184 {
Chris@127 1185 //!!! Just go for the first, for now. If we were supporting
Chris@127 1186 // multiple samplerates, we'd probably want to do frame/time
Chris@127 1187 // conversion in the model
Chris@127 1188
Chris@159 1189 //!!! nah, this wants to always return the sr of the main model!
Chris@159 1190
Chris@127 1191 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1192 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 1193 return (*i)->getModel()->getSampleRate();
Chris@127 1194 }
Chris@127 1195 }
Chris@127 1196 return 0;
Chris@127 1197 }
Chris@127 1198
Chris@315 1199 View::ModelSet
Chris@315 1200 View::getModels()
Chris@315 1201 {
Chris@315 1202 ModelSet models;
Chris@315 1203
Chris@315 1204 for (int i = 0; i < getLayerCount(); ++i) {
Chris@315 1205
Chris@315 1206 Layer *layer = getLayer(i);
Chris@315 1207
Chris@315 1208 if (dynamic_cast<TimeRulerLayer *>(layer)) {
Chris@315 1209 continue;
Chris@315 1210 }
Chris@315 1211
Chris@315 1212 if (layer && layer->getModel()) {
Chris@315 1213 Model *model = layer->getModel();
Chris@315 1214 models.insert(model);
Chris@315 1215 }
Chris@315 1216 }
Chris@315 1217
Chris@315 1218 return models;
Chris@315 1219 }
Chris@315 1220
Chris@320 1221 Model *
Chris@320 1222 View::getAligningModel() const
Chris@301 1223 {
Chris@320 1224 if (!m_manager ||
Chris@320 1225 !m_manager->getAlignMode() ||
Chris@314 1226 !m_manager->getPlaybackModel()) {
Chris@320 1227 return 0;
Chris@314 1228 }
Chris@301 1229
Chris@320 1230 Model *anyModel = 0;
Chris@359 1231 Model *alignedModel = 0;
Chris@320 1232 Model *goodModel = 0;
Chris@301 1233
Chris@320 1234 for (LayerList::const_iterator i = m_layers.begin();
Chris@320 1235 i != m_layers.end(); ++i) {
Chris@320 1236
Chris@320 1237 Layer *layer = *i;
Chris@320 1238
Chris@320 1239 if (!layer) continue;
Chris@320 1240 if (dynamic_cast<TimeRulerLayer *>(layer)) continue;
Chris@301 1241
Chris@301 1242 Model *model = (*i)->getModel();
Chris@301 1243 if (!model) continue;
Chris@301 1244
Chris@359 1245 anyModel = model;
Chris@359 1246
Chris@320 1247 if (model->getAlignmentReference()) {
Chris@359 1248 alignedModel = model;
Chris@320 1249 if (layer->isLayerOpaque() ||
Chris@320 1250 dynamic_cast<RangeSummarisableTimeValueModel *>(model)) {
Chris@320 1251 goodModel = model;
Chris@320 1252 }
Chris@301 1253 }
Chris@320 1254 }
Chris@301 1255
Chris@320 1256 if (goodModel) return goodModel;
Chris@359 1257 else if (alignedModel) return alignedModel;
Chris@320 1258 else return anyModel;
Chris@320 1259 }
Chris@320 1260
Chris@320 1261 size_t
Chris@320 1262 View::alignFromReference(size_t f) const
Chris@320 1263 {
Chris@321 1264 if (!m_manager->getAlignMode()) return f;
Chris@320 1265 Model *aligningModel = getAligningModel();
Chris@320 1266 if (!aligningModel) return f;
Chris@320 1267 return aligningModel->alignFromReference(f);
Chris@320 1268 }
Chris@320 1269
Chris@320 1270 size_t
Chris@320 1271 View::alignToReference(size_t f) const
Chris@320 1272 {
Chris@321 1273 if (!m_manager->getAlignMode()) return f;
Chris@320 1274 Model *aligningModel = getAligningModel();
Chris@320 1275 if (!aligningModel) return f;
Chris@320 1276 return aligningModel->alignToReference(f);
Chris@320 1277 }
Chris@320 1278
Chris@320 1279 int
Chris@320 1280 View::getAlignedPlaybackFrame() const
Chris@320 1281 {
Chris@321 1282 int pf = m_manager->getPlaybackFrame();
Chris@321 1283 if (!m_manager->getAlignMode()) return pf;
Chris@321 1284
Chris@320 1285 Model *aligningModel = getAligningModel();
Chris@320 1286 if (!aligningModel) return pf;
Chris@333 1287 /*
Chris@320 1288 Model *pm = m_manager->getPlaybackModel();
Chris@301 1289
Chris@682 1290 // cerr << "View[" << this << "]::getAlignedPlaybackFrame: pf = " << pf;
Chris@301 1291
Chris@301 1292 if (pm) {
Chris@333 1293 pf = pm->alignToReference(pf);
Chris@682 1294 // cerr << " -> " << pf;
Chris@301 1295 }
Chris@333 1296 */
Chris@333 1297 int af = aligningModel->alignFromReference(pf);
Chris@301 1298
Chris@682 1299 // cerr << ", aligned = " << af << endl;
Chris@301 1300 return af;
Chris@301 1301 }
Chris@301 1302
Chris@127 1303 bool
Chris@127 1304 View::areLayersScrollable() const
Chris@127 1305 {
Chris@127 1306 // True iff all views are scrollable
Chris@127 1307 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1308 if (!(*i)->isLayerScrollable(this)) return false;
Chris@127 1309 }
Chris@127 1310 return true;
Chris@127 1311 }
Chris@127 1312
Chris@127 1313 View::LayerList
Chris@127 1314 View::getScrollableBackLayers(bool testChanged, bool &changed) const
Chris@127 1315 {
Chris@127 1316 changed = false;
Chris@127 1317
Chris@127 1318 // We want a list of all the scrollable layers that are behind the
Chris@127 1319 // backmost non-scrollable layer.
Chris@127 1320
Chris@127 1321 LayerList scrollables;
Chris@127 1322 bool metUnscrollable = false;
Chris@127 1323
Chris@127 1324 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@587 1325 // SVDEBUG << "View::getScrollableBackLayers: calling isLayerDormant on layer " << *i << endl;
Chris@682 1326 // cerr << "(name is " << (*i)->objectName() << ")"
Chris@682 1327 // << endl;
Chris@587 1328 // SVDEBUG << "View::getScrollableBackLayers: I am " << this << endl;
Chris@127 1329 if ((*i)->isLayerDormant(this)) continue;
Chris@127 1330 if ((*i)->isLayerOpaque()) {
Chris@127 1331 // You can't see anything behind an opaque layer!
Chris@127 1332 scrollables.clear();
Chris@127 1333 if (metUnscrollable) break;
Chris@127 1334 }
Chris@127 1335 if (!metUnscrollable && (*i)->isLayerScrollable(this)) {
Chris@127 1336 scrollables.push_back(*i);
Chris@127 1337 } else {
Chris@127 1338 metUnscrollable = true;
Chris@127 1339 }
Chris@127 1340 }
Chris@127 1341
Chris@127 1342 if (testChanged && scrollables != m_lastScrollableBackLayers) {
Chris@127 1343 m_lastScrollableBackLayers = scrollables;
Chris@127 1344 changed = true;
Chris@127 1345 }
Chris@127 1346 return scrollables;
Chris@127 1347 }
Chris@127 1348
Chris@127 1349 View::LayerList
Chris@127 1350 View::getNonScrollableFrontLayers(bool testChanged, bool &changed) const
Chris@127 1351 {
Chris@127 1352 changed = false;
Chris@127 1353 LayerList nonScrollables;
Chris@127 1354
Chris@127 1355 // Everything in front of the first non-scrollable from the back
Chris@127 1356 // should also be considered non-scrollable
Chris@127 1357
Chris@127 1358 bool started = false;
Chris@127 1359
Chris@127 1360 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1361 if ((*i)->isLayerDormant(this)) continue;
Chris@127 1362 if (!started && (*i)->isLayerScrollable(this)) {
Chris@127 1363 continue;
Chris@127 1364 }
Chris@127 1365 started = true;
Chris@127 1366 if ((*i)->isLayerOpaque()) {
Chris@127 1367 // You can't see anything behind an opaque layer!
Chris@127 1368 nonScrollables.clear();
Chris@127 1369 }
Chris@127 1370 nonScrollables.push_back(*i);
Chris@127 1371 }
Chris@127 1372
Chris@127 1373 if (testChanged && nonScrollables != m_lastNonScrollableBackLayers) {
Chris@127 1374 m_lastNonScrollableBackLayers = nonScrollables;
Chris@127 1375 changed = true;
Chris@127 1376 }
Chris@127 1377
Chris@127 1378 return nonScrollables;
Chris@127 1379 }
Chris@127 1380
Chris@127 1381 size_t
Chris@127 1382 View::getZoomConstraintBlockSize(size_t blockSize,
Chris@127 1383 ZoomConstraint::RoundingDirection dir)
Chris@127 1384 const
Chris@127 1385 {
Chris@127 1386 size_t candidate = blockSize;
Chris@127 1387 bool haveCandidate = false;
Chris@127 1388
Chris@127 1389 PowerOfSqrtTwoZoomConstraint defaultZoomConstraint;
Chris@127 1390
Chris@127 1391 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1392
Chris@127 1393 const ZoomConstraint *zoomConstraint = (*i)->getZoomConstraint();
Chris@127 1394 if (!zoomConstraint) zoomConstraint = &defaultZoomConstraint;
Chris@127 1395
Chris@127 1396 size_t thisBlockSize =
Chris@127 1397 zoomConstraint->getNearestBlockSize(blockSize, dir);
Chris@127 1398
Chris@127 1399 // Go for the block size that's furthest from the one
Chris@127 1400 // passed in. Most of the time, that's what we want.
Chris@127 1401 if (!haveCandidate ||
Chris@127 1402 (thisBlockSize > blockSize && thisBlockSize > candidate) ||
Chris@127 1403 (thisBlockSize < blockSize && thisBlockSize < candidate)) {
Chris@127 1404 candidate = thisBlockSize;
Chris@127 1405 haveCandidate = true;
Chris@127 1406 }
Chris@127 1407 }
Chris@127 1408
Chris@127 1409 return candidate;
Chris@127 1410 }
Chris@127 1411
Chris@183 1412 bool
Chris@183 1413 View::areLayerColoursSignificant() const
Chris@183 1414 {
Chris@183 1415 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@287 1416 if ((*i)->getLayerColourSignificance() ==
Chris@287 1417 Layer::ColourHasMeaningfulValue) return true;
Chris@183 1418 if ((*i)->isLayerOpaque()) break;
Chris@183 1419 }
Chris@183 1420 return false;
Chris@183 1421 }
Chris@183 1422
Chris@217 1423 bool
Chris@217 1424 View::hasTopLayerTimeXAxis() const
Chris@217 1425 {
Chris@217 1426 LayerList::const_iterator i = m_layers.end();
Chris@217 1427 if (i == m_layers.begin()) return false;
Chris@217 1428 --i;
Chris@217 1429 return (*i)->hasTimeXAxis();
Chris@217 1430 }
Chris@217 1431
Chris@127 1432 void
Chris@127 1433 View::zoom(bool in)
Chris@127 1434 {
Chris@127 1435 int newZoomLevel = m_zoomLevel;
Chris@127 1436
Chris@127 1437 if (in) {
Chris@127 1438 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel - 1,
Chris@127 1439 ZoomConstraint::RoundDown);
Chris@127 1440 } else {
Chris@127 1441 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel + 1,
Chris@127 1442 ZoomConstraint::RoundUp);
Chris@127 1443 }
Chris@127 1444
Chris@127 1445 if (newZoomLevel != m_zoomLevel) {
Chris@127 1446 setZoomLevel(newZoomLevel);
Chris@127 1447 }
Chris@127 1448 }
Chris@127 1449
Chris@127 1450 void
Chris@510 1451 View::scroll(bool right, bool lots, bool e)
Chris@127 1452 {
Chris@127 1453 long delta;
Chris@127 1454 if (lots) {
Chris@127 1455 delta = (getEndFrame() - getStartFrame()) / 2;
Chris@127 1456 } else {
Chris@127 1457 delta = (getEndFrame() - getStartFrame()) / 20;
Chris@127 1458 }
Chris@127 1459 if (right) delta = -delta;
Chris@127 1460
Chris@127 1461 if (int(m_centreFrame) < delta) {
Chris@510 1462 setCentreFrame(0, e);
Chris@127 1463 } else if (int(m_centreFrame) - delta >= int(getModelsEndFrame())) {
Chris@510 1464 setCentreFrame(getModelsEndFrame(), e);
Chris@127 1465 } else {
Chris@510 1466 setCentreFrame(m_centreFrame - delta, e);
Chris@127 1467 }
Chris@127 1468 }
Chris@127 1469
Chris@127 1470 void
Chris@797 1471 View::cancelClicked()
Chris@797 1472 {
Chris@797 1473 QPushButton *cancel = qobject_cast<QPushButton *>(sender());
Chris@797 1474 if (!cancel) return;
Chris@797 1475
Chris@797 1476 for (ProgressMap::iterator i = m_progressBars.begin();
Chris@797 1477 i != m_progressBars.end(); ++i) {
Chris@797 1478
Chris@797 1479 if (i->second.cancel == cancel) {
Chris@797 1480
Chris@797 1481 Layer *layer = i->first;
Chris@797 1482 Model *model = layer->getModel();
Chris@797 1483
Chris@797 1484 if (model) model->abandon();
Chris@797 1485 }
Chris@797 1486 }
Chris@797 1487 }
Chris@797 1488
Chris@797 1489 void
Chris@127 1490 View::checkProgress(void *object)
Chris@127 1491 {
Chris@127 1492 if (!m_showProgress) return;
Chris@127 1493
Chris@127 1494 int ph = height();
Chris@127 1495
Chris@555 1496 for (ProgressMap::iterator i = m_progressBars.begin();
Chris@127 1497 i != m_progressBars.end(); ++i) {
Chris@127 1498
Chris@555 1499 QProgressBar *pb = i->second.bar;
Chris@797 1500 QPushButton *cancel = i->second.cancel;
Chris@555 1501
Chris@127 1502 if (i->first == object) {
Chris@127 1503
Chris@555 1504 // The timer is used to test for stalls. If the progress
Chris@555 1505 // bar does not get updated for some length of time, the
Chris@555 1506 // timer prompts it to go back into "indeterminate" mode
Chris@555 1507 QTimer *timer = i->second.checkTimer;
Chris@555 1508
Chris@127 1509 int completion = i->first->getCompletion(this);
Chris@301 1510 QString text = i->first->getPropertyContainerName();
Chris@583 1511 QString error = i->first->getError(this);
Chris@583 1512
Chris@583 1513 if (error != "" && error != m_lastError) {
Chris@583 1514 QMessageBox::critical(this, tr("Layer rendering error"), error);
Chris@583 1515 m_lastError = error;
Chris@583 1516 }
Chris@301 1517
Chris@387 1518 Model *model = i->first->getModel();
Chris@387 1519 RangeSummarisableTimeValueModel *wfm =
Chris@387 1520 dynamic_cast<RangeSummarisableTimeValueModel *>(model);
Chris@387 1521
Chris@388 1522 if (completion > 0) {
Chris@555 1523 pb->setMaximum(100); // was 0, for indeterminate start
Chris@388 1524 }
Chris@388 1525
Chris@301 1526 if (completion >= 100) {
Chris@301 1527
Chris@301 1528 //!!!
Chris@326 1529 if (wfm ||
Chris@776 1530 (model &&
Chris@776 1531 (wfm = dynamic_cast<RangeSummarisableTimeValueModel *>
Chris@776 1532 (model->getSourceModel())))) {
Chris@301 1533 completion = wfm->getAlignmentCompletion();
Chris@587 1534 // SVDEBUG << "View::checkProgress: Alignment completion = " << completion << endl;
Chris@301 1535 if (completion < 100) {
Chris@301 1536 text = tr("Alignment");
Chris@301 1537 }
Chris@301 1538 }
Chris@387 1539
Chris@387 1540 } else if (wfm) {
Chris@387 1541 update(); // ensure duration &c gets updated
Chris@301 1542 }
Chris@127 1543
Chris@127 1544 if (completion >= 100) {
Chris@127 1545
Chris@555 1546 pb->hide();
Chris@797 1547 cancel->hide();
Chris@555 1548 timer->stop();
Chris@127 1549
Chris@127 1550 } else {
Chris@127 1551
Chris@682 1552 // cerr << "progress = " << completion << endl;
Chris@555 1553
Chris@555 1554 if (!pb->isVisible()) {
Chris@555 1555 i->second.lastCheck = 0;
Chris@555 1556 timer->setInterval(2000);
Chris@555 1557 timer->start();
Chris@555 1558 }
Chris@555 1559
Chris@797 1560 cancel->move(0, ph - pb->height()/2 - 10);
Chris@797 1561 cancel->show();
Chris@797 1562
Chris@555 1563 pb->setValue(completion);
Chris@797 1564 pb->move(20, ph - pb->height());
Chris@555 1565
Chris@555 1566 pb->show();
Chris@555 1567 pb->update();
Chris@555 1568
Chris@555 1569 ph -= pb->height();
Chris@127 1570 }
Chris@127 1571 } else {
Chris@555 1572 if (pb->isVisible()) {
Chris@555 1573 ph -= pb->height();
Chris@127 1574 }
Chris@127 1575 }
Chris@127 1576 }
Chris@127 1577 }
Chris@127 1578
Chris@555 1579 void
Chris@555 1580 View::progressCheckStalledTimerElapsed()
Chris@555 1581 {
Chris@555 1582 QObject *s = sender();
Chris@555 1583 QTimer *t = qobject_cast<QTimer *>(s);
Chris@555 1584 if (!t) return;
Chris@555 1585 for (ProgressMap::iterator i = m_progressBars.begin();
Chris@555 1586 i != m_progressBars.end(); ++i) {
Chris@555 1587 if (i->second.checkTimer == t) {
Chris@555 1588 int value = i->second.bar->value();
Chris@555 1589 if (value > 0 && value == i->second.lastCheck) {
Chris@555 1590 i->second.bar->setMaximum(0); // indeterminate
Chris@555 1591 }
Chris@555 1592 i->second.lastCheck = value;
Chris@555 1593 return;
Chris@555 1594 }
Chris@555 1595 }
Chris@555 1596 }
Chris@555 1597
Chris@384 1598 int
Chris@384 1599 View::getProgressBarWidth() const
Chris@384 1600 {
Chris@384 1601 for (ProgressMap::const_iterator i = m_progressBars.begin();
Chris@384 1602 i != m_progressBars.end(); ++i) {
Chris@555 1603 if (i->second.bar && i->second.bar->isVisible()) {
Chris@555 1604 return i->second.bar->width();
Chris@555 1605 }
Chris@384 1606 }
Chris@384 1607
Chris@384 1608 return 0;
Chris@384 1609 }
Chris@384 1610
Chris@127 1611 void
Chris@339 1612 View::setPaintFont(QPainter &paint)
Chris@339 1613 {
Chris@339 1614 QFont font(paint.font());
Chris@339 1615 font.setPointSize(Preferences::getInstance()->getViewFontSize());
Chris@339 1616 paint.setFont(font);
Chris@339 1617 }
Chris@339 1618
Chris@339 1619 void
Chris@127 1620 View::paintEvent(QPaintEvent *e)
Chris@127 1621 {
Chris@127 1622 // Profiler prof("View::paintEvent", false);
Chris@800 1623 // cerr << "View::paintEvent: centre frame is " << m_centreFrame << endl;
matthiasm@785 1624
Chris@127 1625 if (m_layers.empty()) {
Chris@127 1626 QFrame::paintEvent(e);
Chris@127 1627 return;
Chris@127 1628 }
Chris@127 1629
Chris@127 1630 // ensure our constraints are met
Chris@137 1631
Chris@137 1632 /*!!! Should we do this only if we have layers that can't support other
Chris@137 1633 zoom levels?
Chris@137 1634
Chris@127 1635 m_zoomLevel = getZoomConstraintBlockSize(m_zoomLevel,
Chris@127 1636 ZoomConstraint::RoundUp);
Chris@137 1637 */
Chris@127 1638
Chris@127 1639 QPainter paint;
Chris@127 1640 bool repaintCache = false;
Chris@127 1641 bool paintedCacheRect = false;
Chris@127 1642
Chris@127 1643 QRect cacheRect(rect());
Chris@127 1644
Chris@127 1645 if (e) {
Chris@127 1646 cacheRect &= e->rect();
Chris@127 1647 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1648 cerr << "paint rect " << cacheRect.width() << "x" << cacheRect.height()
Chris@682 1649 << ", my rect " << width() << "x" << height() << endl;
Chris@127 1650 #endif
Chris@127 1651 }
Chris@127 1652
Chris@127 1653 QRect nonCacheRect(cacheRect);
Chris@127 1654
Chris@127 1655 // If not all layers are scrollable, but some of the back layers
Chris@127 1656 // are, we should store only those in the cache.
Chris@127 1657
Chris@127 1658 bool layersChanged = false;
Chris@127 1659 LayerList scrollables = getScrollableBackLayers(true, layersChanged);
Chris@127 1660 LayerList nonScrollables = getNonScrollableFrontLayers(true, layersChanged);
Chris@127 1661 bool selectionCacheable = nonScrollables.empty();
Chris@127 1662 bool haveSelections = m_manager && !m_manager->getSelections().empty();
Chris@127 1663 bool selectionDrawn = false;
Chris@127 1664
Chris@127 1665 // If all the non-scrollable layers are non-opaque, then we draw
Chris@127 1666 // the selection rectangle behind them and cache it. If any are
Chris@127 1667 // opaque, however, we can't cache.
Chris@127 1668 //
Chris@127 1669 if (!selectionCacheable) {
Chris@127 1670 selectionCacheable = true;
Chris@127 1671 for (LayerList::const_iterator i = nonScrollables.begin();
Chris@127 1672 i != nonScrollables.end(); ++i) {
Chris@127 1673 if ((*i)->isLayerOpaque()) {
Chris@127 1674 selectionCacheable = false;
Chris@127 1675 break;
Chris@127 1676 }
Chris@127 1677 }
Chris@127 1678 }
Chris@127 1679
Chris@127 1680 if (selectionCacheable) {
Chris@127 1681 QPoint localPos;
Chris@127 1682 bool closeToLeft, closeToRight;
Chris@127 1683 if (shouldIlluminateLocalSelection(localPos, closeToLeft, closeToRight)) {
Chris@127 1684 selectionCacheable = false;
Chris@127 1685 }
Chris@127 1686 }
Chris@127 1687
Chris@127 1688 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1689 cerr << "View(" << this << ")::paintEvent: have " << scrollables.size()
Chris@127 1690 << " scrollable back layers and " << nonScrollables.size()
Chris@682 1691 << " non-scrollable front layers" << endl;
Chris@682 1692 cerr << "haveSelections " << haveSelections << ", selectionCacheable "
Chris@682 1693 << selectionCacheable << ", m_selectionCached " << m_selectionCached << endl;
Chris@127 1694 #endif
Chris@127 1695
Chris@127 1696 if (layersChanged || scrollables.empty() ||
Chris@127 1697 (haveSelections && (selectionCacheable != m_selectionCached))) {
Chris@127 1698 delete m_cache;
Chris@127 1699 m_cache = 0;
Chris@127 1700 m_selectionCached = false;
Chris@127 1701 }
Chris@127 1702
Chris@127 1703 if (!scrollables.empty()) {
Chris@244 1704
Chris@244 1705 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1706 cerr << "View(" << this << "): cache " << m_cache << ", cache zoom "
Chris@682 1707 << m_cacheZoomLevel << ", zoom " << m_zoomLevel << endl;
Chris@244 1708 #endif
Chris@244 1709
Chris@127 1710 if (!m_cache ||
Chris@127 1711 m_cacheZoomLevel != m_zoomLevel ||
Chris@127 1712 width() != m_cache->width() ||
Chris@127 1713 height() != m_cache->height()) {
Chris@127 1714
Chris@127 1715 // cache is not valid
Chris@127 1716
Chris@127 1717 if (cacheRect.width() < width()/10) {
Chris@244 1718 delete m_cache;
Chris@244 1719 m_cache = 0;
Chris@127 1720 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1721 cerr << "View(" << this << ")::paintEvent: small repaint, not bothering to recreate cache" << endl;
Chris@127 1722 #endif
Chris@127 1723 } else {
Chris@127 1724 delete m_cache;
Chris@127 1725 m_cache = new QPixmap(width(), height());
Chris@127 1726 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1727 cerr << "View(" << this << ")::paintEvent: recreated cache" << endl;
Chris@127 1728 #endif
Chris@127 1729 cacheRect = rect();
Chris@127 1730 repaintCache = true;
Chris@127 1731 }
Chris@127 1732
Chris@127 1733 } else if (m_cacheCentreFrame != m_centreFrame) {
Chris@127 1734
Chris@127 1735 long dx =
Chris@127 1736 getXForFrame(m_cacheCentreFrame) -
Chris@127 1737 getXForFrame(m_centreFrame);
Chris@127 1738
Chris@127 1739 if (dx > -width() && dx < width()) {
Chris@548 1740 #ifdef PIXMAP_COPY_TO_SELF
Chris@548 1741 // This is not normally defined. Copying a pixmap to
Chris@548 1742 // itself doesn't work properly on Windows, Mac, or
Chris@548 1743 // X11 with the raster backend (it only works when
Chris@548 1744 // moving in one direction and then presumably only by
Chris@548 1745 // accident). It does actually seem to be fine on X11
Chris@548 1746 // with the native backend, but we prefer not to use
Chris@548 1747 // that anyway
Chris@548 1748 paint.begin(m_cache);
Chris@548 1749 paint.drawPixmap(dx, 0, *m_cache);
Chris@548 1750 paint.end();
Chris@548 1751 #else
Chris@127 1752 static QPixmap *tmpPixmap = 0;
Chris@127 1753 if (!tmpPixmap ||
Chris@127 1754 tmpPixmap->width() != width() ||
Chris@127 1755 tmpPixmap->height() != height()) {
Chris@127 1756 delete tmpPixmap;
Chris@127 1757 tmpPixmap = new QPixmap(width(), height());
Chris@127 1758 }
Chris@127 1759 paint.begin(tmpPixmap);
Chris@127 1760 paint.drawPixmap(0, 0, *m_cache);
Chris@127 1761 paint.end();
Chris@127 1762 paint.begin(m_cache);
Chris@127 1763 paint.drawPixmap(dx, 0, *tmpPixmap);
Chris@127 1764 paint.end();
Chris@127 1765 #endif
Chris@127 1766 if (dx < 0) {
Chris@127 1767 cacheRect = QRect(width() + dx, 0, -dx, height());
Chris@127 1768 } else {
Chris@127 1769 cacheRect = QRect(0, 0, dx, height());
Chris@127 1770 }
Chris@127 1771 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1772 cerr << "View(" << this << ")::paintEvent: scrolled cache by " << dx << endl;
Chris@127 1773 #endif
Chris@127 1774 } else {
Chris@127 1775 cacheRect = rect();
Chris@127 1776 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1777 cerr << "View(" << this << ")::paintEvent: scrolling too far" << endl;
Chris@127 1778 #endif
Chris@127 1779 }
Chris@127 1780 repaintCache = true;
Chris@127 1781
Chris@127 1782 } else {
Chris@127 1783 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1784 cerr << "View(" << this << ")::paintEvent: cache is good" << endl;
Chris@127 1785 #endif
Chris@127 1786 paint.begin(this);
Chris@127 1787 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@127 1788 paint.end();
Chris@127 1789 QFrame::paintEvent(e);
Chris@127 1790 paintedCacheRect = true;
Chris@127 1791 }
Chris@127 1792
Chris@127 1793 m_cacheCentreFrame = m_centreFrame;
Chris@127 1794 m_cacheZoomLevel = m_zoomLevel;
Chris@127 1795 }
Chris@127 1796
Chris@127 1797 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@682 1798 // cerr << "View(" << this << ")::paintEvent: cacheRect " << cacheRect << ", nonCacheRect " << (nonCacheRect | cacheRect) << ", repaintCache " << repaintCache << ", paintedCacheRect " << paintedCacheRect << endl;
Chris@127 1799 #endif
Chris@127 1800
Chris@127 1801 // Scrollable (cacheable) items first
Chris@127 1802
Chris@127 1803 if (!paintedCacheRect) {
Chris@127 1804
Chris@127 1805 if (repaintCache) paint.begin(m_cache);
Chris@127 1806 else paint.begin(this);
Chris@339 1807 setPaintFont(paint);
Chris@127 1808 paint.setClipRect(cacheRect);
Chris@287 1809
Chris@287 1810 paint.setPen(getBackground());
Chris@287 1811 paint.setBrush(getBackground());
Chris@127 1812 paint.drawRect(cacheRect);
Chris@127 1813
Chris@287 1814 paint.setPen(getForeground());
Chris@127 1815 paint.setBrush(Qt::NoBrush);
Chris@127 1816
Chris@127 1817 for (LayerList::iterator i = scrollables.begin(); i != scrollables.end(); ++i) {
Chris@127 1818 paint.setRenderHint(QPainter::Antialiasing, false);
Chris@127 1819 paint.save();
Chris@127 1820 (*i)->paint(this, paint, cacheRect);
Chris@127 1821 paint.restore();
Chris@127 1822 }
Chris@127 1823
Chris@127 1824 if (haveSelections && selectionCacheable) {
Chris@127 1825 drawSelections(paint);
Chris@127 1826 m_selectionCached = repaintCache;
Chris@127 1827 selectionDrawn = true;
Chris@127 1828 }
Chris@127 1829
Chris@127 1830 paint.end();
Chris@127 1831
Chris@127 1832 if (repaintCache) {
Chris@127 1833 cacheRect |= (e ? e->rect() : rect());
Chris@127 1834 paint.begin(this);
Chris@127 1835 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@127 1836 paint.end();
Chris@127 1837 }
Chris@127 1838 }
Chris@127 1839
Chris@127 1840 // Now non-cacheable items. We always need to redraw the
Chris@127 1841 // non-cacheable items across at least the area we drew of the
Chris@127 1842 // cacheable items.
Chris@127 1843
Chris@127 1844 nonCacheRect |= cacheRect;
Chris@127 1845
Chris@127 1846 paint.begin(this);
Chris@127 1847 paint.setClipRect(nonCacheRect);
Chris@339 1848 setPaintFont(paint);
Chris@127 1849 if (scrollables.empty()) {
Chris@287 1850 paint.setPen(getBackground());
Chris@287 1851 paint.setBrush(getBackground());
Chris@127 1852 paint.drawRect(nonCacheRect);
Chris@127 1853 }
Chris@127 1854
Chris@287 1855 paint.setPen(getForeground());
Chris@127 1856 paint.setBrush(Qt::NoBrush);
Chris@127 1857
Chris@127 1858 for (LayerList::iterator i = nonScrollables.begin(); i != nonScrollables.end(); ++i) {
Chris@127 1859 // Profiler profiler2("View::paintEvent non-cacheable");
Chris@127 1860 (*i)->paint(this, paint, nonCacheRect);
Chris@127 1861 }
Chris@127 1862
Chris@127 1863 paint.end();
Chris@127 1864
Chris@127 1865 paint.begin(this);
Chris@339 1866 setPaintFont(paint);
Chris@127 1867 if (e) paint.setClipRect(e->rect());
Chris@127 1868 if (!m_selectionCached) {
Chris@127 1869 drawSelections(paint);
Chris@127 1870 }
Chris@127 1871 paint.end();
Chris@127 1872
Chris@211 1873 bool showPlayPointer = true;
Chris@211 1874 if (m_followPlay == PlaybackScrollContinuous) {
Chris@211 1875 showPlayPointer = false;
Chris@211 1876 } else if (long(m_playPointerFrame) <= getStartFrame() ||
Chris@211 1877 m_playPointerFrame >= getEndFrame()) {
Chris@211 1878 showPlayPointer = false;
Chris@211 1879 } else if (m_manager && !m_manager->isPlaying()) {
Chris@211 1880 if (m_playPointerFrame == getCentreFrame() &&
Chris@787 1881 m_manager->shouldShowCentreLine() &&
Chris@211 1882 m_followPlay != PlaybackIgnore) {
Chris@787 1883 // Don't show the play pointer when it is redundant with
Chris@787 1884 // the centre line
Chris@211 1885 showPlayPointer = false;
Chris@211 1886 }
Chris@211 1887 }
Chris@211 1888
Chris@211 1889 if (showPlayPointer) {
Chris@127 1890
Chris@127 1891 paint.begin(this);
Chris@127 1892
Chris@211 1893 int playx = getXForFrame(m_playPointerFrame);
Chris@211 1894
Chris@287 1895 paint.setPen(getForeground());
Chris@211 1896 paint.drawLine(playx - 1, 0, playx - 1, height() - 1);
Chris@211 1897 paint.drawLine(playx + 1, 0, playx + 1, height() - 1);
Chris@211 1898 paint.drawPoint(playx, 0);
Chris@211 1899 paint.drawPoint(playx, height() - 1);
Chris@287 1900 paint.setPen(getBackground());
Chris@211 1901 paint.drawLine(playx, 1, playx, height() - 2);
Chris@127 1902
Chris@127 1903 paint.end();
Chris@127 1904 }
Chris@127 1905
Chris@127 1906 QFrame::paintEvent(e);
Chris@127 1907 }
Chris@127 1908
Chris@127 1909 void
Chris@127 1910 View::drawSelections(QPainter &paint)
Chris@127 1911 {
Chris@217 1912 if (!hasTopLayerTimeXAxis()) return;
Chris@217 1913
Chris@127 1914 MultiSelection::SelectionList selections;
Chris@127 1915
Chris@127 1916 if (m_manager) {
Chris@127 1917 selections = m_manager->getSelections();
Chris@127 1918 if (m_manager->haveInProgressSelection()) {
Chris@127 1919 bool exclusive;
Chris@127 1920 Selection inProgressSelection =
Chris@127 1921 m_manager->getInProgressSelection(exclusive);
Chris@127 1922 if (exclusive) selections.clear();
Chris@127 1923 selections.insert(inProgressSelection);
Chris@127 1924 }
Chris@127 1925 }
Chris@127 1926
Chris@127 1927 paint.save();
Chris@183 1928
Chris@183 1929 bool translucent = !areLayerColoursSignificant();
Chris@183 1930
Chris@183 1931 if (translucent) {
Chris@183 1932 paint.setBrush(QColor(150, 150, 255, 80));
Chris@183 1933 } else {
Chris@183 1934 paint.setBrush(Qt::NoBrush);
Chris@183 1935 }
Chris@127 1936
Chris@127 1937 int sampleRate = getModelsSampleRate();
Chris@127 1938
Chris@127 1939 QPoint localPos;
Chris@127 1940 long illuminateFrame = -1;
Chris@127 1941 bool closeToLeft, closeToRight;
Chris@127 1942
Chris@127 1943 if (shouldIlluminateLocalSelection(localPos, closeToLeft, closeToRight)) {
Chris@127 1944 illuminateFrame = getFrameForX(localPos.x());
Chris@127 1945 }
Chris@127 1946
Chris@127 1947 const QFontMetrics &metrics = paint.fontMetrics();
Chris@127 1948
Chris@127 1949 for (MultiSelection::SelectionList::iterator i = selections.begin();
Chris@127 1950 i != selections.end(); ++i) {
Chris@127 1951
Chris@333 1952 int p0 = getXForFrame(alignFromReference(i->getStartFrame()));
Chris@333 1953 int p1 = getXForFrame(alignFromReference(i->getEndFrame()));
Chris@127 1954
Chris@127 1955 if (p1 < 0 || p0 > width()) continue;
Chris@127 1956
Chris@127 1957 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@587 1958 SVDEBUG << "View::drawSelections: " << p0 << ",-1 [" << (p1-p0) << "x" << (height()+1) << "]" << endl;
Chris@127 1959 #endif
Chris@127 1960
Chris@127 1961 bool illuminateThis =
Chris@127 1962 (illuminateFrame >= 0 && i->contains(illuminateFrame));
Chris@127 1963
Chris@127 1964 paint.setPen(QColor(150, 150, 255));
Chris@183 1965
Chris@183 1966 if (translucent && shouldLabelSelections()) {
Chris@183 1967 paint.drawRect(p0, -1, p1 - p0, height() + 1);
Chris@183 1968 } else {
Chris@183 1969 // Make the top & bottom lines of the box visible if we
Chris@183 1970 // are lacking some of the other visual cues. There's no
Chris@183 1971 // particular logic to this, it's just a question of what
Chris@183 1972 // I happen to think looks nice.
Chris@183 1973 paint.drawRect(p0, 0, p1 - p0, height() - 1);
Chris@183 1974 }
Chris@127 1975
Chris@127 1976 if (illuminateThis) {
Chris@127 1977 paint.save();
Chris@287 1978 paint.setPen(QPen(getForeground(), 2));
Chris@127 1979 if (closeToLeft) {
Chris@127 1980 paint.drawLine(p0, 1, p1, 1);
Chris@127 1981 paint.drawLine(p0, 0, p0, height());
Chris@127 1982 paint.drawLine(p0, height() - 1, p1, height() - 1);
Chris@127 1983 } else if (closeToRight) {
Chris@127 1984 paint.drawLine(p0, 1, p1, 1);
Chris@127 1985 paint.drawLine(p1, 0, p1, height());
Chris@127 1986 paint.drawLine(p0, height() - 1, p1, height() - 1);
Chris@127 1987 } else {
Chris@127 1988 paint.setBrush(Qt::NoBrush);
Chris@127 1989 paint.drawRect(p0, 1, p1 - p0, height() - 2);
Chris@127 1990 }
Chris@127 1991 paint.restore();
Chris@127 1992 }
Chris@127 1993
Chris@127 1994 if (sampleRate && shouldLabelSelections() && m_manager &&
Chris@189 1995 m_manager->shouldShowSelectionExtents()) {
Chris@127 1996
Chris@127 1997 QString startText = QString("%1 / %2")
Chris@127 1998 .arg(QString::fromStdString
Chris@127 1999 (RealTime::frame2RealTime
Chris@127 2000 (i->getStartFrame(), sampleRate).toText(true)))
Chris@127 2001 .arg(i->getStartFrame());
Chris@127 2002
Chris@127 2003 QString endText = QString(" %1 / %2")
Chris@127 2004 .arg(QString::fromStdString
Chris@127 2005 (RealTime::frame2RealTime
Chris@127 2006 (i->getEndFrame(), sampleRate).toText(true)))
Chris@127 2007 .arg(i->getEndFrame());
Chris@127 2008
Chris@127 2009 QString durationText = QString("(%1 / %2) ")
Chris@127 2010 .arg(QString::fromStdString
Chris@127 2011 (RealTime::frame2RealTime
Chris@127 2012 (i->getEndFrame() - i->getStartFrame(), sampleRate)
Chris@127 2013 .toText(true)))
Chris@127 2014 .arg(i->getEndFrame() - i->getStartFrame());
Chris@127 2015
Chris@127 2016 int sw = metrics.width(startText),
Chris@127 2017 ew = metrics.width(endText),
Chris@127 2018 dw = metrics.width(durationText);
Chris@127 2019
Chris@127 2020 int sy = metrics.ascent() + metrics.height() + 4;
Chris@127 2021 int ey = sy;
Chris@127 2022 int dy = sy + metrics.height();
Chris@127 2023
Chris@127 2024 int sx = p0 + 2;
Chris@127 2025 int ex = sx;
Chris@127 2026 int dx = sx;
Chris@127 2027
Chris@501 2028 bool durationBothEnds = true;
Chris@501 2029
Chris@127 2030 if (sw + ew > (p1 - p0)) {
Chris@127 2031 ey += metrics.height();
Chris@127 2032 dy += metrics.height();
Chris@501 2033 durationBothEnds = false;
Chris@127 2034 }
Chris@127 2035
Chris@127 2036 if (ew < (p1 - p0)) {
Chris@127 2037 ex = p1 - 2 - ew;
Chris@127 2038 }
Chris@127 2039
Chris@127 2040 if (dw < (p1 - p0)) {
Chris@127 2041 dx = p1 - 2 - dw;
Chris@127 2042 }
Chris@127 2043
Chris@127 2044 paint.drawText(sx, sy, startText);
Chris@127 2045 paint.drawText(ex, ey, endText);
Chris@127 2046 paint.drawText(dx, dy, durationText);
Chris@501 2047 if (durationBothEnds) {
Chris@501 2048 paint.drawText(sx, dy, durationText);
Chris@501 2049 }
Chris@127 2050 }
Chris@127 2051 }
Chris@127 2052
Chris@127 2053 paint.restore();
Chris@127 2054 }
Chris@127 2055
Chris@267 2056 void
Chris@270 2057 View::drawMeasurementRect(QPainter &paint, const Layer *topLayer, QRect r,
Chris@270 2058 bool focus) const
Chris@267 2059 {
Chris@587 2060 // SVDEBUG << "View::drawMeasurementRect(" << r.x() << "," << r.y() << " "
Chris@585 2061 // << r.width() << "x" << r.height() << ")" << endl;
Chris@268 2062
Chris@267 2063 if (r.x() + r.width() < 0 || r.x() >= width()) return;
Chris@267 2064
Chris@270 2065 if (r.width() != 0 || r.height() != 0) {
Chris@270 2066 paint.save();
Chris@270 2067 if (focus) {
Chris@270 2068 paint.setPen(Qt::NoPen);
Chris@272 2069 QColor brushColour(Qt::black);
Chris@272 2070 brushColour.setAlpha(hasLightBackground() ? 15 : 40);
Chris@270 2071 paint.setBrush(brushColour);
Chris@270 2072 if (r.x() > 0) {
Chris@270 2073 paint.drawRect(0, 0, r.x(), height());
Chris@270 2074 }
Chris@270 2075 if (r.x() + r.width() < width()) {
Chris@270 2076 paint.drawRect(r.x() + r.width(), 0, width()-r.x()-r.width(), height());
Chris@270 2077 }
Chris@270 2078 if (r.y() > 0) {
Chris@270 2079 paint.drawRect(r.x(), 0, r.width(), r.y());
Chris@270 2080 }
Chris@270 2081 if (r.y() + r.height() < height()) {
Chris@270 2082 paint.drawRect(r.x(), r.y() + r.height(), r.width(), height()-r.y()-r.height());
Chris@270 2083 }
Chris@270 2084 paint.setBrush(Qt::NoBrush);
Chris@270 2085 }
Chris@270 2086 paint.setPen(Qt::green);
Chris@270 2087 paint.drawRect(r);
Chris@270 2088 paint.restore();
Chris@270 2089 } else {
Chris@270 2090 paint.save();
Chris@270 2091 paint.setPen(Qt::green);
Chris@270 2092 paint.drawPoint(r.x(), r.y());
Chris@270 2093 paint.restore();
Chris@270 2094 }
Chris@270 2095
Chris@270 2096 if (!focus) return;
Chris@270 2097
Chris@278 2098 paint.save();
Chris@278 2099 QFont fn = paint.font();
Chris@278 2100 if (fn.pointSize() > 8) {
Chris@278 2101 fn.setPointSize(fn.pointSize() - 1);
Chris@278 2102 paint.setFont(fn);
Chris@278 2103 }
Chris@278 2104
Chris@267 2105 int fontHeight = paint.fontMetrics().height();
Chris@267 2106 int fontAscent = paint.fontMetrics().ascent();
Chris@267 2107
Chris@267 2108 float v0, v1;
Chris@267 2109 QString u0, u1;
Chris@267 2110 bool b0 = false, b1 = false;
Chris@267 2111
Chris@267 2112 QString axs, ays, bxs, bys, dxs, dys;
Chris@267 2113
Chris@267 2114 int axx, axy, bxx, bxy, dxx, dxy;
Chris@267 2115 int aw = 0, bw = 0, dw = 0;
Chris@267 2116
Chris@267 2117 int labelCount = 0;
Chris@267 2118
Chris@362 2119 // top-left point, x-coord
Chris@362 2120
Chris@267 2121 if ((b0 = topLayer->getXScaleValue(this, r.x(), v0, u0))) {
Chris@267 2122 axs = QString("%1 %2").arg(v0).arg(u0);
Chris@278 2123 if (u0 == "Hz" && Pitch::isFrequencyInMidiRange(v0)) {
Chris@278 2124 axs = QString("%1 (%2)").arg(axs)
Chris@278 2125 .arg(Pitch::getPitchLabelForFrequency(v0));
Chris@278 2126 }
Chris@267 2127 aw = paint.fontMetrics().width(axs);
Chris@267 2128 ++labelCount;
Chris@267 2129 }
Chris@362 2130
Chris@362 2131 // bottom-right point, x-coord
Chris@267 2132
Chris@267 2133 if (r.width() > 0) {
Chris@267 2134 if ((b1 = topLayer->getXScaleValue(this, r.x() + r.width(), v1, u1))) {
Chris@267 2135 bxs = QString("%1 %2").arg(v1).arg(u1);
Chris@278 2136 if (u1 == "Hz" && Pitch::isFrequencyInMidiRange(v1)) {
Chris@278 2137 bxs = QString("%1 (%2)").arg(bxs)
Chris@278 2138 .arg(Pitch::getPitchLabelForFrequency(v1));
Chris@278 2139 }
Chris@267 2140 bw = paint.fontMetrics().width(bxs);
Chris@267 2141 }
Chris@267 2142 }
Chris@362 2143
Chris@362 2144 // dimension, width
Chris@267 2145
Chris@283 2146 if (b0 && b1 && v1 != v0 && u0 == u1) {
Chris@362 2147 dxs = QString("[%1 %2]").arg(fabs(v1 - v0)).arg(u1);
Chris@267 2148 dw = paint.fontMetrics().width(dxs);
Chris@267 2149 }
Chris@267 2150
Chris@267 2151 b0 = false;
Chris@267 2152 b1 = false;
Chris@267 2153
Chris@362 2154 // top-left point, y-coord
Chris@362 2155
Chris@267 2156 if ((b0 = topLayer->getYScaleValue(this, r.y(), v0, u0))) {
Chris@267 2157 ays = QString("%1 %2").arg(v0).arg(u0);
Chris@278 2158 if (u0 == "Hz" && Pitch::isFrequencyInMidiRange(v0)) {
Chris@278 2159 ays = QString("%1 (%2)").arg(ays)
Chris@278 2160 .arg(Pitch::getPitchLabelForFrequency(v0));
Chris@278 2161 }
Chris@267 2162 aw = std::max(aw, paint.fontMetrics().width(ays));
Chris@267 2163 ++labelCount;
Chris@267 2164 }
Chris@267 2165
Chris@362 2166 // bottom-right point, y-coord
Chris@362 2167
Chris@267 2168 if (r.height() > 0) {
Chris@267 2169 if ((b1 = topLayer->getYScaleValue(this, r.y() + r.height(), v1, u1))) {
Chris@267 2170 bys = QString("%1 %2").arg(v1).arg(u1);
Chris@278 2171 if (u1 == "Hz" && Pitch::isFrequencyInMidiRange(v1)) {
Chris@278 2172 bys = QString("%1 (%2)").arg(bys)
Chris@278 2173 .arg(Pitch::getPitchLabelForFrequency(v1));
Chris@278 2174 }
Chris@267 2175 bw = std::max(bw, paint.fontMetrics().width(bys));
Chris@267 2176 }
Chris@267 2177 }
Chris@274 2178
Chris@274 2179 bool bd = false;
Chris@274 2180 float dy = 0.f;
Chris@274 2181 QString du;
Chris@274 2182
Chris@362 2183 // dimension, height
Chris@362 2184
Chris@274 2185 if ((bd = topLayer->getYScaleDifference(this, r.y(), r.y() + r.height(),
Chris@283 2186 dy, du)) &&
Chris@283 2187 dy != 0) {
Chris@274 2188 if (du != "") {
Chris@362 2189 if (du == "Hz") {
Chris@362 2190 int semis;
Chris@362 2191 float cents;
Chris@362 2192 semis = Pitch::getPitchForFrequencyDifference(v0, v1, &cents);
Chris@362 2193 dys = QString("[%1 %2 (%3)]")
Chris@362 2194 .arg(dy).arg(du)
Chris@362 2195 .arg(Pitch::getLabelForPitchRange(semis, cents));
Chris@362 2196 } else {
Chris@362 2197 dys = QString("[%1 %2]").arg(dy).arg(du);
Chris@362 2198 }
Chris@274 2199 } else {
Chris@362 2200 dys = QString("[%1]").arg(dy);
Chris@274 2201 }
Chris@267 2202 dw = std::max(dw, paint.fontMetrics().width(dys));
Chris@267 2203 }
Chris@267 2204
Chris@267 2205 int mw = r.width();
Chris@267 2206 int mh = r.height();
Chris@267 2207
Chris@267 2208 bool edgeLabelsInside = false;
Chris@267 2209 bool sizeLabelsInside = false;
Chris@267 2210
Chris@267 2211 if (mw < std::max(aw, std::max(bw, dw)) + 4) {
Chris@267 2212 // defaults stand
Chris@267 2213 } else if (mw < aw + bw + 4) {
Chris@267 2214 if (mh > fontHeight * labelCount * 3 + 4) {
Chris@267 2215 edgeLabelsInside = true;
Chris@267 2216 sizeLabelsInside = true;
Chris@267 2217 } else if (mh > fontHeight * labelCount * 2 + 4) {
Chris@267 2218 edgeLabelsInside = true;
Chris@267 2219 }
Chris@267 2220 } else if (mw < aw + bw + dw + 4) {
Chris@267 2221 if (mh > fontHeight * labelCount * 3 + 4) {
Chris@267 2222 edgeLabelsInside = true;
Chris@267 2223 sizeLabelsInside = true;
Chris@267 2224 } else if (mh > fontHeight * labelCount + 4) {
Chris@267 2225 edgeLabelsInside = true;
Chris@267 2226 }
Chris@267 2227 } else {
Chris@267 2228 if (mh > fontHeight * labelCount + 4) {
Chris@267 2229 edgeLabelsInside = true;
Chris@267 2230 sizeLabelsInside = true;
Chris@267 2231 }
Chris@267 2232 }
Chris@267 2233
Chris@267 2234 if (edgeLabelsInside) {
Chris@267 2235
Chris@267 2236 axx = r.x() + 2;
Chris@267 2237 axy = r.y() + fontAscent + 2;
Chris@267 2238
Chris@267 2239 bxx = r.x() + r.width() - bw - 2;
Chris@267 2240 bxy = r.y() + r.height() - (labelCount-1) * fontHeight - 2;
Chris@267 2241
Chris@267 2242 } else {
Chris@267 2243
Chris@267 2244 axx = r.x() - aw - 2;
Chris@267 2245 axy = r.y() + fontAscent;
Chris@267 2246
Chris@267 2247 bxx = r.x() + r.width() + 2;
Chris@267 2248 bxy = r.y() + r.height() - (labelCount-1) * fontHeight;
Chris@267 2249 }
Chris@267 2250
Chris@267 2251 dxx = r.width()/2 + r.x() - dw/2;
Chris@267 2252
Chris@267 2253 if (sizeLabelsInside) {
Chris@267 2254
Chris@267 2255 dxy = r.height()/2 + r.y() - (labelCount * fontHeight)/2 + fontAscent;
Chris@267 2256
Chris@267 2257 } else {
Chris@267 2258
Chris@267 2259 dxy = r.y() + r.height() + fontAscent + 2;
Chris@267 2260 }
Chris@267 2261
Chris@267 2262 if (axs != "") {
Chris@267 2263 drawVisibleText(paint, axx, axy, axs, OutlinedText);
Chris@267 2264 axy += fontHeight;
Chris@267 2265 }
Chris@267 2266
Chris@267 2267 if (ays != "") {
Chris@267 2268 drawVisibleText(paint, axx, axy, ays, OutlinedText);
Chris@267 2269 axy += fontHeight;
Chris@267 2270 }
Chris@267 2271
Chris@267 2272 if (bxs != "") {
Chris@267 2273 drawVisibleText(paint, bxx, bxy, bxs, OutlinedText);
Chris@267 2274 bxy += fontHeight;
Chris@267 2275 }
Chris@267 2276
Chris@267 2277 if (bys != "") {
Chris@267 2278 drawVisibleText(paint, bxx, bxy, bys, OutlinedText);
Chris@267 2279 bxy += fontHeight;
Chris@267 2280 }
Chris@267 2281
Chris@267 2282 if (dxs != "") {
Chris@267 2283 drawVisibleText(paint, dxx, dxy, dxs, OutlinedText);
Chris@267 2284 dxy += fontHeight;
Chris@267 2285 }
Chris@267 2286
Chris@267 2287 if (dys != "") {
Chris@267 2288 drawVisibleText(paint, dxx, dxy, dys, OutlinedText);
Chris@267 2289 dxy += fontHeight;
Chris@267 2290 }
Chris@278 2291
Chris@278 2292 paint.restore();
Chris@267 2293 }
Chris@267 2294
Chris@227 2295 bool
Chris@229 2296 View::render(QPainter &paint, int xorigin, size_t f0, size_t f1)
Chris@227 2297 {
Chris@227 2298 size_t x0 = f0 / m_zoomLevel;
Chris@227 2299 size_t x1 = f1 / m_zoomLevel;
Chris@227 2300
Chris@227 2301 size_t w = x1 - x0;
Chris@227 2302
Chris@227 2303 size_t origCentreFrame = m_centreFrame;
Chris@227 2304
Chris@227 2305 bool someLayersIncomplete = false;
Chris@227 2306
Chris@227 2307 for (LayerList::iterator i = m_layers.begin();
Chris@227 2308 i != m_layers.end(); ++i) {
Chris@227 2309
Chris@227 2310 int c = (*i)->getCompletion(this);
Chris@227 2311 if (c < 100) {
Chris@227 2312 someLayersIncomplete = true;
Chris@227 2313 break;
Chris@227 2314 }
Chris@227 2315 }
Chris@227 2316
Chris@227 2317 if (someLayersIncomplete) {
Chris@227 2318
Chris@227 2319 QProgressDialog progress(tr("Waiting for layers to be ready..."),
Chris@227 2320 tr("Cancel"), 0, 100, this);
Chris@227 2321
Chris@227 2322 int layerCompletion = 0;
Chris@227 2323
Chris@227 2324 while (layerCompletion < 100) {
Chris@227 2325
Chris@227 2326 for (LayerList::iterator i = m_layers.begin();
Chris@227 2327 i != m_layers.end(); ++i) {
Chris@227 2328
Chris@227 2329 int c = (*i)->getCompletion(this);
Chris@227 2330 if (i == m_layers.begin() || c < layerCompletion) {
Chris@227 2331 layerCompletion = c;
Chris@227 2332 }
Chris@227 2333 }
Chris@227 2334
Chris@227 2335 if (layerCompletion >= 100) break;
Chris@227 2336
Chris@227 2337 progress.setValue(layerCompletion);
Chris@227 2338 qApp->processEvents();
Chris@227 2339 if (progress.wasCanceled()) {
Chris@227 2340 update();
Chris@227 2341 return false;
Chris@227 2342 }
Chris@227 2343
Chris@227 2344 usleep(50000);
Chris@227 2345 }
Chris@227 2346 }
Chris@227 2347
Chris@227 2348 QProgressDialog progress(tr("Rendering image..."),
Chris@227 2349 tr("Cancel"), 0, w / width(), this);
Chris@227 2350
Chris@227 2351 for (size_t x = 0; x < w; x += width()) {
Chris@227 2352
Chris@227 2353 progress.setValue(x / width());
Chris@227 2354 qApp->processEvents();
Chris@227 2355 if (progress.wasCanceled()) {
Chris@227 2356 m_centreFrame = origCentreFrame;
Chris@227 2357 update();
Chris@227 2358 return false;
Chris@227 2359 }
Chris@227 2360
Chris@229 2361 m_centreFrame = f0 + (x + width()/2) * m_zoomLevel;
Chris@227 2362
Chris@227 2363 QRect chunk(0, 0, width(), height());
Chris@227 2364
Chris@287 2365 paint.setPen(getBackground());
Chris@287 2366 paint.setBrush(getBackground());
Chris@227 2367
Chris@229 2368 paint.drawRect(QRect(xorigin + x, 0, width(), height()));
Chris@227 2369
Chris@287 2370 paint.setPen(getForeground());
Chris@227 2371 paint.setBrush(Qt::NoBrush);
Chris@227 2372
Chris@227 2373 for (LayerList::iterator i = m_layers.begin();
Chris@227 2374 i != m_layers.end(); ++i) {
dan@574 2375 if(!((*i)->isLayerDormant(this))){
dan@574 2376
dan@574 2377 paint.setRenderHint(QPainter::Antialiasing, false);
dan@574 2378
dan@574 2379 paint.save();
dan@574 2380 paint.translate(xorigin + x, 0);
dan@574 2381
Chris@682 2382 cerr << "Centre frame now: " << m_centreFrame << " drawing to " << chunk.x() + x + xorigin << ", " << chunk.width() << endl;
dan@574 2383
dan@574 2384 (*i)->setSynchronousPainting(true);
dan@574 2385
dan@574 2386 (*i)->paint(this, paint, chunk);
dan@574 2387
dan@574 2388 (*i)->setSynchronousPainting(false);
dan@574 2389
dan@574 2390 paint.restore();
dan@574 2391 }
Chris@227 2392 }
Chris@227 2393 }
Chris@227 2394
Chris@227 2395 m_centreFrame = origCentreFrame;
Chris@227 2396 update();
Chris@227 2397 return true;
Chris@227 2398 }
Chris@227 2399
Chris@227 2400 QImage *
Chris@227 2401 View::toNewImage()
Chris@227 2402 {
Chris@227 2403 size_t f0 = getModelsStartFrame();
Chris@227 2404 size_t f1 = getModelsEndFrame();
Chris@227 2405
Chris@229 2406 return toNewImage(f0, f1);
Chris@229 2407 }
Chris@229 2408
Chris@229 2409 QImage *
Chris@229 2410 View::toNewImage(size_t f0, size_t f1)
Chris@229 2411 {
Chris@227 2412 size_t x0 = f0 / getZoomLevel();
Chris@227 2413 size_t x1 = f1 / getZoomLevel();
Chris@227 2414
Chris@227 2415 QImage *image = new QImage(x1 - x0, height(), QImage::Format_RGB32);
Chris@227 2416
Chris@227 2417 QPainter *paint = new QPainter(image);
Chris@229 2418 if (!render(*paint, 0, f0, f1)) {
Chris@227 2419 delete paint;
Chris@227 2420 delete image;
Chris@227 2421 return 0;
Chris@227 2422 } else {
Chris@227 2423 delete paint;
Chris@227 2424 return image;
Chris@227 2425 }
Chris@227 2426 }
Chris@227 2427
Chris@229 2428 QSize
Chris@229 2429 View::getImageSize()
Chris@229 2430 {
Chris@229 2431 size_t f0 = getModelsStartFrame();
Chris@229 2432 size_t f1 = getModelsEndFrame();
Chris@229 2433
Chris@229 2434 return getImageSize(f0, f1);
Chris@229 2435 }
Chris@229 2436
Chris@229 2437 QSize
Chris@229 2438 View::getImageSize(size_t f0, size_t f1)
Chris@229 2439 {
Chris@229 2440 size_t x0 = f0 / getZoomLevel();
Chris@229 2441 size_t x1 = f1 / getZoomLevel();
Chris@229 2442
Chris@229 2443 return QSize(x1 - x0, height());
Chris@229 2444 }
Chris@229 2445
Chris@316 2446 void
Chris@316 2447 View::toXml(QTextStream &stream,
Chris@316 2448 QString indent, QString extraAttributes) const
Chris@127 2449 {
Chris@316 2450 stream << indent;
Chris@127 2451
Chris@316 2452 stream << QString("<view "
Chris@316 2453 "centre=\"%1\" "
Chris@316 2454 "zoom=\"%2\" "
Chris@316 2455 "followPan=\"%3\" "
Chris@316 2456 "followZoom=\"%4\" "
Chris@316 2457 "tracking=\"%5\" "
Chris@316 2458 " %6>\n")
Chris@127 2459 .arg(m_centreFrame)
Chris@127 2460 .arg(m_zoomLevel)
Chris@127 2461 .arg(m_followPan)
Chris@127 2462 .arg(m_followZoom)
Chris@127 2463 .arg(m_followPlay == PlaybackScrollContinuous ? "scroll" :
Chris@127 2464 m_followPlay == PlaybackScrollPage ? "page" : "ignore")
Chris@127 2465 .arg(extraAttributes);
Chris@127 2466
Chris@127 2467 for (size_t i = 0; i < m_layers.size(); ++i) {
Chris@186 2468 bool visible = !m_layers[i]->isLayerDormant(this);
Chris@316 2469 m_layers[i]->toBriefXml(stream, indent + " ",
Chris@316 2470 QString("visible=\"%1\"")
Chris@316 2471 .arg(visible ? "true" : "false"));
Chris@127 2472 }
Chris@127 2473
Chris@316 2474 stream << indent + "</view>\n";
Chris@127 2475 }
Chris@127 2476
Chris@127 2477 ViewPropertyContainer::ViewPropertyContainer(View *v) :
Chris@127 2478 m_v(v)
Chris@127 2479 {
Chris@728 2480 // cerr << "ViewPropertyContainer: " << this << " is owned by View " << v << endl;
Chris@127 2481 connect(m_v, SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
Chris@127 2482 this, SIGNAL(propertyChanged(PropertyContainer::PropertyName)));
Chris@127 2483 }
Chris@127 2484
Chris@728 2485 ViewPropertyContainer::~ViewPropertyContainer()
Chris@728 2486 {
Chris@728 2487 }