annotate base/View.cpp @ 8:214054a0d8b8

* Hook up tool selection buttons to switch the cursor mode * Implement simple and multi-selection, snapping to the resolution of the current layer. You can't actually do anything with a selection yet
author Chris Cannam
date Mon, 23 Jan 2006 17:02:57 +0000
parents 149bb02a41ba
children 73d85d19919f
rev   line source
Chris@0 1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@0 4 A waveform viewer and audio annotation editor.
Chris@1 5 Chris Cannam, Queen Mary University of London, 2005-2006
Chris@0 6
Chris@0 7 This is experimental software. Not for distribution.
Chris@0 8 */
Chris@0 9
Chris@0 10 #include "base/View.h"
Chris@0 11 #include "base/Layer.h"
Chris@0 12 #include "base/Model.h"
Chris@0 13 #include "base/ZoomConstraint.h"
Chris@0 14 #include "base/Profiler.h"
Chris@0 15
Chris@0 16 #include "layer/TimeRulerLayer.h" //!!! damn, shouldn't be including that here
Chris@0 17
Chris@0 18 #include <QPainter>
Chris@0 19 #include <QPaintEvent>
Chris@0 20 #include <QRect>
Chris@0 21 #include <QApplication>
Chris@0 22
Chris@0 23 #include <iostream>
Chris@0 24
Chris@0 25 //#define DEBUG_VIEW_WIDGET_PAINT 1
Chris@0 26
Chris@0 27 using std::cerr;
Chris@0 28 using std::endl;
Chris@0 29
Chris@0 30 View::View(QWidget *w, bool showProgress) :
Chris@0 31 QFrame(w),
Chris@0 32 m_centreFrame(0),
Chris@0 33 m_zoomLevel(1024),
Chris@0 34 m_newModel(true),
Chris@0 35 m_followPan(true),
Chris@0 36 m_followZoom(true),
Chris@0 37 m_followPlay(PlaybackScrollPage),
Chris@0 38 m_lightBackground(true),
Chris@0 39 m_showProgress(showProgress),
Chris@0 40 m_cache(0),
Chris@0 41 m_cacheCentreFrame(0),
Chris@0 42 m_cacheZoomLevel(1024),
Chris@0 43 m_deleting(false),
Chris@8 44 m_haveSelectedLayer(false),
Chris@0 45 m_manager(0)
Chris@0 46 {
Chris@0 47 // QWidget::setAttribute(Qt::WA_PaintOnScreen);
Chris@0 48 }
Chris@0 49
Chris@0 50 View::~View()
Chris@0 51 {
Chris@0 52 m_deleting = true;
Chris@0 53
Chris@0 54 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 55 delete *i;
Chris@0 56 }
Chris@0 57 }
Chris@0 58
Chris@0 59 PropertyContainer::PropertyList
Chris@0 60 View::getProperties() const
Chris@0 61 {
Chris@0 62 PropertyList list;
Chris@0 63 list.push_back(tr("Global Scroll"));
Chris@0 64 list.push_back(tr("Global Zoom"));
Chris@0 65 list.push_back(tr("Follow Playback"));
Chris@0 66 return list;
Chris@0 67 }
Chris@0 68
Chris@0 69 PropertyContainer::PropertyType
Chris@0 70 View::getPropertyType(const PropertyName &name) const
Chris@0 71 {
Chris@0 72 if (name == tr("Global Scroll")) return ToggleProperty;
Chris@0 73 if (name == tr("Global Zoom")) return ToggleProperty;
Chris@0 74 if (name == tr("Follow Playback")) return ValueProperty;
Chris@0 75 return InvalidProperty;
Chris@0 76 }
Chris@0 77
Chris@0 78 int
Chris@0 79 View::getPropertyRangeAndValue(const PropertyName &name,
Chris@0 80 int *min, int *max) const
Chris@0 81 {
Chris@0 82 if (name == tr("Global Scroll")) return m_followPan;
Chris@0 83 if (name == tr("Global Zoom")) return m_followZoom;
Chris@0 84 if (name == tr("Follow Playback")) { *min = 0; *max = 2; return int(m_followPlay); }
Chris@0 85 return PropertyContainer::getPropertyRangeAndValue(name, min, max);
Chris@0 86 }
Chris@0 87
Chris@0 88 QString
Chris@0 89 View::getPropertyValueLabel(const PropertyName &name,
Chris@0 90 int value) const
Chris@0 91 {
Chris@0 92 if (name == tr("Follow Playback")) {
Chris@0 93 switch (value) {
Chris@0 94 default:
Chris@0 95 case 0: return tr("Scroll");
Chris@0 96 case 1: return tr("Page");
Chris@0 97 case 2: return tr("Off");
Chris@0 98 }
Chris@0 99 }
Chris@0 100 return tr("<unknown>");
Chris@0 101 }
Chris@0 102
Chris@0 103 void
Chris@0 104 View::setProperty(const PropertyName &name, int value)
Chris@0 105 {
Chris@0 106 if (name == tr("Global Scroll")) {
Chris@0 107 setFollowGlobalPan(value != 0);
Chris@0 108 } else if (name == tr("Global Zoom")) {
Chris@0 109 setFollowGlobalZoom(value != 0);
Chris@0 110 } else if (name == tr("Follow Playback")) {
Chris@0 111 switch (value) {
Chris@0 112 default:
Chris@0 113 case 0: setPlaybackFollow(PlaybackScrollContinuous); break;
Chris@0 114 case 1: setPlaybackFollow(PlaybackScrollPage); break;
Chris@0 115 case 2: setPlaybackFollow(PlaybackIgnore); break;
Chris@0 116 }
Chris@0 117 }
Chris@0 118 }
Chris@0 119
Chris@0 120 size_t
Chris@0 121 View::getPropertyContainerCount() const
Chris@0 122 {
Chris@0 123 return m_layers.size() + 1; // the 1 is for me
Chris@0 124 }
Chris@0 125
Chris@0 126 const PropertyContainer *
Chris@0 127 View::getPropertyContainer(size_t i) const
Chris@0 128 {
Chris@0 129 return (const PropertyContainer *)(((View *)this)->
Chris@0 130 getPropertyContainer(i));
Chris@0 131 }
Chris@0 132
Chris@0 133 PropertyContainer *
Chris@0 134 View::getPropertyContainer(size_t i)
Chris@0 135 {
Chris@0 136 if (i == 0) return this;
Chris@0 137 return m_layers[i-1];
Chris@0 138 }
Chris@0 139
Chris@0 140 void
Chris@0 141 View::propertyContainerSelected(PropertyContainer *pc)
Chris@0 142 {
Chris@8 143 if (pc == this) {
Chris@8 144 if (m_haveSelectedLayer) {
Chris@8 145 m_haveSelectedLayer = false;
Chris@8 146 update();
Chris@8 147 }
Chris@8 148 return;
Chris@8 149 }
Chris@0 150
Chris@0 151 delete m_cache;
Chris@0 152 m_cache = 0;
Chris@0 153
Chris@0 154 Layer *selectedLayer = 0;
Chris@0 155
Chris@0 156 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 157 if (*i == pc) {
Chris@0 158 selectedLayer = *i;
Chris@0 159 m_layers.erase(i);
Chris@0 160 break;
Chris@0 161 }
Chris@0 162 }
Chris@0 163
Chris@0 164 if (selectedLayer) {
Chris@8 165 m_haveSelectedLayer = true;
Chris@0 166 m_layers.push_back(selectedLayer);
Chris@0 167 update();
Chris@8 168 } else {
Chris@8 169 m_haveSelectedLayer = false;
Chris@0 170 }
Chris@0 171 }
Chris@0 172
Chris@8 173 void
Chris@8 174 View::toolModeChanged()
Chris@8 175 {
Chris@8 176 std::cerr << "View::toolModeChanged(" << m_manager->getToolMode() << ")" << std::endl;
Chris@8 177 }
Chris@8 178
Chris@0 179 long
Chris@0 180 View::getStartFrame() const
Chris@0 181 {
Chris@0 182 size_t w2 = (width() / 2) * m_zoomLevel;
Chris@0 183 size_t frame = m_centreFrame;
Chris@0 184 if (frame >= w2) {
Chris@0 185 frame -= w2;
Chris@0 186 return (frame / m_zoomLevel * m_zoomLevel);
Chris@0 187 } else {
Chris@0 188 frame = w2 - frame;
Chris@0 189 frame = frame / m_zoomLevel * m_zoomLevel;
Chris@0 190 return -(long)frame - m_zoomLevel;
Chris@0 191 }
Chris@0 192 }
Chris@0 193
Chris@0 194 size_t
Chris@0 195 View::getEndFrame() const
Chris@0 196 {
Chris@0 197 return getStartFrame() + (width() * m_zoomLevel) - 1;
Chris@0 198 }
Chris@0 199
Chris@0 200 void
Chris@0 201 View::setStartFrame(long f)
Chris@0 202 {
Chris@0 203 setCentreFrame(f + m_zoomLevel * (width() / 2));
Chris@0 204 }
Chris@0 205
Chris@0 206 void
Chris@0 207 View::setCentreFrame(size_t f, bool e)
Chris@0 208 {
Chris@0 209 if (m_centreFrame != f) {
Chris@0 210
Chris@0 211 int formerPixel = m_centreFrame / m_zoomLevel;
Chris@0 212
Chris@0 213 m_centreFrame = f;
Chris@0 214
Chris@0 215 int newPixel = m_centreFrame / m_zoomLevel;
Chris@0 216
Chris@0 217 if (newPixel != formerPixel) {
Chris@0 218
Chris@0 219 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 220 std::cout << "View(" << this << ")::setCentreFrame: newPixel " << newPixel << ", formerPixel " << formerPixel << std::endl;
Chris@0 221 #endif
Chris@0 222 update();
Chris@0 223 }
Chris@0 224
Chris@0 225 if (e) emit centreFrameChanged(this, f, m_followPan);
Chris@0 226 }
Chris@0 227 }
Chris@0 228
Chris@0 229 void
Chris@0 230 View::setZoomLevel(size_t z)
Chris@0 231 {
Chris@0 232 if (m_zoomLevel != int(z)) {
Chris@0 233 m_zoomLevel = z;
Chris@0 234 emit zoomLevelChanged(this, z, m_followZoom);
Chris@0 235 update();
Chris@0 236 }
Chris@0 237 }
Chris@0 238
Chris@0 239 void
Chris@0 240 View::addLayer(Layer *layer)
Chris@0 241 {
Chris@0 242 delete m_cache;
Chris@0 243 m_cache = 0;
Chris@0 244
Chris@0 245 m_layers.push_back(layer);
Chris@0 246
Chris@0 247 m_progressBars[layer] = new LayerProgressBar(this);
Chris@0 248 m_progressBars[layer]->setMinimum(0);
Chris@0 249 m_progressBars[layer]->setMaximum(100);
Chris@0 250 m_progressBars[layer]->setMinimumWidth(80);
Chris@0 251 m_progressBars[layer]->hide();
Chris@0 252
Chris@0 253 connect(layer, SIGNAL(layerParametersChanged()),
Chris@0 254 this, SLOT(layerParametersChanged()));
Chris@0 255 connect(layer, SIGNAL(layerNameChanged()),
Chris@0 256 this, SLOT(layerNameChanged()));
Chris@0 257 connect(layer, SIGNAL(modelChanged()),
Chris@0 258 this, SLOT(modelChanged()));
Chris@0 259 connect(layer, SIGNAL(modelCompletionChanged()),
Chris@0 260 this, SLOT(modelCompletionChanged()));
Chris@0 261 connect(layer, SIGNAL(modelChanged(size_t, size_t)),
Chris@0 262 this, SLOT(modelChanged(size_t, size_t)));
Chris@0 263 connect(layer, SIGNAL(modelReplaced()),
Chris@0 264 this, SLOT(modelReplaced()));
Chris@0 265
Chris@0 266 m_newModel = true;
Chris@0 267 update();
Chris@0 268
Chris@0 269 emit propertyContainerAdded(layer);
Chris@0 270 }
Chris@0 271
Chris@0 272 void
Chris@0 273 View::removeLayer(Layer *layer)
Chris@0 274 {
Chris@0 275 if (m_deleting) {
Chris@0 276 return;
Chris@0 277 }
Chris@0 278
Chris@0 279 delete m_cache;
Chris@0 280 m_cache = 0;
Chris@0 281
Chris@0 282 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 283 if (*i == layer) {
Chris@0 284 m_layers.erase(i);
Chris@0 285 if (m_progressBars.find(layer) != m_progressBars.end()) {
Chris@0 286 delete m_progressBars[layer];
Chris@0 287 m_progressBars.erase(layer);
Chris@0 288 }
Chris@0 289 break;
Chris@0 290 }
Chris@0 291 }
Chris@0 292
Chris@0 293 update();
Chris@0 294
Chris@0 295 emit propertyContainerRemoved(layer);
Chris@0 296 }
Chris@0 297
Chris@8 298 Layer *
Chris@8 299 View::getSelectedLayer()
Chris@8 300 {
Chris@8 301 if (m_haveSelectedLayer && !m_layers.empty()) {
Chris@8 302 return getLayer(getLayerCount() - 1);
Chris@8 303 } else {
Chris@8 304 return 0;
Chris@8 305 }
Chris@8 306 }
Chris@8 307
Chris@0 308 void
Chris@0 309 View::setViewManager(ViewManager *manager)
Chris@0 310 {
Chris@0 311 if (m_manager) {
Chris@0 312 m_manager->disconnect(this, SLOT(viewManagerCentreFrameChanged(void *, unsigned long, bool)));
Chris@0 313 m_manager->disconnect(this, SLOT(viewManagerZoomLevelChanged(void *, unsigned long, bool)));
Chris@0 314 disconnect(m_manager, SIGNAL(centreFrameChanged(void *, unsigned long, bool)));
Chris@0 315 disconnect(m_manager, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)));
Chris@8 316 disconnect(m_manager, SIGNAL(toolModeChanged()));
Chris@8 317 disconnect(m_manager, SIGNAL(selectionChanged()));
Chris@0 318 }
Chris@0 319
Chris@0 320 m_manager = manager;
Chris@0 321 if (m_followPan) setCentreFrame(m_manager->getGlobalCentreFrame(), false);
Chris@0 322 if (m_followZoom) setZoomLevel(m_manager->getGlobalZoom());
Chris@0 323
Chris@0 324 connect(m_manager, SIGNAL(centreFrameChanged(void *, unsigned long, bool)),
Chris@0 325 this, SLOT(viewManagerCentreFrameChanged(void *, unsigned long, bool)));
Chris@0 326 connect(m_manager, SIGNAL(playbackFrameChanged(unsigned long)),
Chris@0 327 this, SLOT(viewManagerPlaybackFrameChanged(unsigned long)));
Chris@0 328 connect(m_manager, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)),
Chris@0 329 this, SLOT(viewManagerZoomLevelChanged(void *, unsigned long, bool)));
Chris@8 330 connect(m_manager, SIGNAL(toolModeChanged()),
Chris@8 331 this, SLOT(toolModeChanged()));
Chris@8 332 connect(m_manager, SIGNAL(selectionChanged()),
Chris@8 333 this, SLOT(update()));
Chris@0 334
Chris@0 335 connect(this, SIGNAL(centreFrameChanged(void *, unsigned long, bool)),
Chris@0 336 m_manager, SIGNAL(centreFrameChanged(void *, unsigned long, bool)));
Chris@0 337 connect(this, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)),
Chris@0 338 m_manager, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)));
Chris@8 339
Chris@8 340 toolModeChanged();
Chris@0 341 }
Chris@0 342
Chris@0 343 void
Chris@0 344 View::setFollowGlobalPan(bool f)
Chris@0 345 {
Chris@0 346 m_followPan = f;
Chris@0 347 emit propertyContainerPropertyChanged(this);
Chris@0 348 }
Chris@0 349
Chris@0 350 void
Chris@0 351 View::setFollowGlobalZoom(bool f)
Chris@0 352 {
Chris@0 353 m_followZoom = f;
Chris@0 354 emit propertyContainerPropertyChanged(this);
Chris@0 355 }
Chris@0 356
Chris@0 357 void
Chris@0 358 View::setPlaybackFollow(PlaybackFollowMode m)
Chris@0 359 {
Chris@0 360 m_followPlay = m;
Chris@0 361 emit propertyContainerPropertyChanged(this);
Chris@0 362 }
Chris@0 363
Chris@0 364 void
Chris@0 365 View::modelChanged()
Chris@0 366 {
Chris@0 367 QObject *obj = sender();
Chris@0 368
Chris@0 369 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@1 370 std::cerr << "View(" << this << ")::modelChanged()" << std::endl;
Chris@0 371 #endif
Chris@0 372 delete m_cache;
Chris@0 373 m_cache = 0;
Chris@0 374
Chris@0 375 checkProgress(obj);
Chris@0 376
Chris@0 377 update();
Chris@0 378 }
Chris@0 379
Chris@0 380 void
Chris@0 381 View::modelChanged(size_t startFrame, size_t endFrame)
Chris@0 382 {
Chris@0 383 QObject *obj = sender();
Chris@0 384
Chris@0 385 long myStartFrame = getStartFrame();
Chris@0 386 size_t myEndFrame = getEndFrame();
Chris@0 387
Chris@1 388 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@1 389 std::cerr << "View(" << this << ")::modelChanged(" << startFrame << "," << endFrame << ") [me " << myStartFrame << "," << myEndFrame << "]" << std::endl;
Chris@1 390 #endif
Chris@1 391
Chris@0 392 if (myStartFrame > 0 && endFrame < size_t(myStartFrame)) {
Chris@0 393 checkProgress(obj);
Chris@0 394 return;
Chris@0 395 }
Chris@0 396 if (startFrame > myEndFrame) {
Chris@0 397 checkProgress(obj);
Chris@0 398 return;
Chris@0 399 }
Chris@0 400
Chris@0 401 delete m_cache;
Chris@0 402 m_cache = 0;
Chris@0 403
Chris@0 404 if (long(startFrame) < myStartFrame) startFrame = myStartFrame;
Chris@0 405 if (endFrame > myEndFrame) endFrame = myEndFrame;
Chris@0 406
Chris@0 407 int x0 = (startFrame - myStartFrame) / m_zoomLevel;
Chris@0 408 int x1 = (endFrame - myStartFrame) / m_zoomLevel;
Chris@0 409 if (x1 < x0) return;
Chris@0 410
Chris@0 411 checkProgress(obj);
Chris@0 412
Chris@0 413 update(x0, 0, x1 - x0 + 1, height());
Chris@0 414 }
Chris@0 415
Chris@0 416 void
Chris@0 417 View::modelCompletionChanged()
Chris@0 418 {
Chris@0 419 QObject *obj = sender();
Chris@0 420 checkProgress(obj);
Chris@0 421 }
Chris@0 422
Chris@0 423 void
Chris@0 424 View::modelReplaced()
Chris@0 425 {
Chris@0 426 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@1 427 std::cerr << "View(" << this << ")::modelReplaced()" << std::endl;
Chris@0 428 #endif
Chris@1 429 delete m_cache;
Chris@1 430 m_cache = 0;
Chris@1 431
Chris@0 432 m_newModel = true;
Chris@0 433 update();
Chris@0 434 }
Chris@0 435
Chris@0 436 void
Chris@0 437 View::layerParametersChanged()
Chris@0 438 {
Chris@0 439 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@0 440
Chris@0 441 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 442 std::cerr << "View::layerParametersChanged()" << std::endl;
Chris@0 443 #endif
Chris@0 444
Chris@0 445 delete m_cache;
Chris@0 446 m_cache = 0;
Chris@0 447 update();
Chris@0 448
Chris@0 449 if (layer) {
Chris@0 450 emit propertyContainerPropertyChanged(layer);
Chris@0 451 }
Chris@0 452 }
Chris@0 453
Chris@0 454 void
Chris@0 455 View::layerNameChanged()
Chris@0 456 {
Chris@0 457 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@0 458 if (layer) emit propertyContainerNameChanged(layer);
Chris@0 459 }
Chris@0 460
Chris@0 461 void
Chris@0 462 View::viewManagerCentreFrameChanged(void *p, unsigned long f, bool locked)
Chris@0 463 {
Chris@0 464 if (m_followPan && p != this && locked) {
Chris@0 465 if (m_manager && (sender() == m_manager)) {
Chris@0 466 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 467 std::cerr << this << ": manager frame changed " << f << " from " << p << std::endl;
Chris@0 468 #endif
Chris@0 469 setCentreFrame(f);
Chris@0 470 if (p == this) repaint();
Chris@0 471 }
Chris@0 472 }
Chris@0 473 }
Chris@0 474
Chris@0 475 void
Chris@0 476 View::viewManagerPlaybackFrameChanged(unsigned long f)
Chris@0 477 {
Chris@0 478 if (m_manager) {
Chris@0 479 if (sender() != m_manager) return;
Chris@0 480 }
Chris@0 481
Chris@0 482 if (m_playPointerFrame == f) return;
Chris@0 483 bool visible = (m_playPointerFrame / m_zoomLevel != f / m_zoomLevel);
Chris@0 484 size_t oldPlayPointerFrame = m_playPointerFrame;
Chris@0 485 m_playPointerFrame = f;
Chris@0 486 if (!visible) return;
Chris@0 487
Chris@0 488 switch (m_followPlay) {
Chris@0 489
Chris@0 490 case PlaybackScrollContinuous:
Chris@0 491 if (QApplication::mouseButtons() == Qt::NoButton) {
Chris@0 492 setCentreFrame(f, false);
Chris@0 493 }
Chris@0 494 break;
Chris@0 495
Chris@0 496 case PlaybackScrollPage:
Chris@0 497 {
Chris@0 498 long w = width() * getZoomLevel();
Chris@0 499 w -= w/5;
Chris@0 500 long sf = (f / w) * w - w/8;
Chris@0 501 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 502 std::cerr << "PlaybackScrollPage: f = " << f << ", sf = " << sf << ", start frame "
Chris@0 503 << getStartFrame() << std::endl;
Chris@0 504 #endif
Chris@0 505 setCentreFrame(sf + width() * getZoomLevel() / 2, false);
Chris@0 506 int xold = (long(oldPlayPointerFrame) - getStartFrame()) / m_zoomLevel;
Chris@0 507 int xnew = (long(m_playPointerFrame) - getStartFrame()) / m_zoomLevel;
Chris@0 508 update(xold - 1, 0, 3, height());
Chris@0 509 update(xnew - 1, 0, 3, height());
Chris@0 510 break;
Chris@0 511 }
Chris@0 512
Chris@0 513 case PlaybackIgnore:
Chris@0 514 if (long(f) >= getStartFrame() && f < getEndFrame()) {
Chris@0 515 update();
Chris@0 516 }
Chris@0 517 break;
Chris@0 518 }
Chris@0 519 }
Chris@0 520
Chris@0 521 void
Chris@0 522 View::viewManagerZoomLevelChanged(void *p, unsigned long z, bool locked)
Chris@0 523 {
Chris@0 524 if (m_followZoom && p != this && locked) {
Chris@0 525 if (m_manager && (sender() == m_manager)) {
Chris@0 526 setZoomLevel(z);
Chris@0 527 if (p == this) repaint();
Chris@0 528 }
Chris@0 529 }
Chris@0 530 }
Chris@0 531
Chris@0 532 size_t
Chris@0 533 View::getModelsStartFrame() const
Chris@0 534 {
Chris@0 535 bool first = true;
Chris@0 536 size_t startFrame = 0;
Chris@0 537
Chris@0 538 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 539
Chris@0 540 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@0 541
Chris@0 542 size_t thisStartFrame = (*i)->getModel()->getStartFrame();
Chris@0 543
Chris@0 544 if (first || thisStartFrame < startFrame) {
Chris@0 545 startFrame = thisStartFrame;
Chris@0 546 }
Chris@0 547 first = false;
Chris@0 548 }
Chris@0 549 }
Chris@0 550 return startFrame;
Chris@0 551 }
Chris@0 552
Chris@0 553 size_t
Chris@0 554 View::getModelsEndFrame() const
Chris@0 555 {
Chris@0 556 bool first = true;
Chris@0 557 size_t endFrame = 0;
Chris@0 558
Chris@0 559 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 560
Chris@0 561 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@0 562
Chris@0 563 size_t thisEndFrame = (*i)->getModel()->getEndFrame();
Chris@0 564
Chris@0 565 if (first || thisEndFrame > endFrame) {
Chris@0 566 endFrame = thisEndFrame;
Chris@0 567 }
Chris@0 568 first = false;
Chris@0 569 }
Chris@0 570 }
Chris@0 571
Chris@0 572 if (first) return getModelsStartFrame();
Chris@0 573 return endFrame;
Chris@0 574 }
Chris@0 575
Chris@0 576 int
Chris@0 577 View::getModelsSampleRate() const
Chris@0 578 {
Chris@0 579 //!!! Just go for the first, for now. If we were supporting
Chris@0 580 // multiple samplerates, we'd probably want to do frame/time
Chris@0 581 // conversion in the model
Chris@0 582
Chris@0 583 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 584 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@0 585 return (*i)->getModel()->getSampleRate();
Chris@0 586 }
Chris@0 587 }
Chris@0 588 return 0;
Chris@0 589 }
Chris@0 590
Chris@0 591 bool
Chris@0 592 View::areLayersScrollable() const
Chris@0 593 {
Chris@0 594 // True iff all views are scrollable
Chris@0 595 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 596 if (!(*i)->isLayerScrollable()) return false;
Chris@0 597 }
Chris@0 598 return true;
Chris@0 599 }
Chris@0 600
Chris@0 601 View::LayerList
Chris@0 602 View::getScrollableBackLayers(bool &changed) const
Chris@0 603 {
Chris@0 604 changed = false;
Chris@0 605
Chris@0 606 LayerList scrollables;
Chris@0 607 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 608 if ((*i)->isLayerScrollable()) scrollables.push_back(*i);
Chris@0 609 else {
Chris@0 610 if (scrollables != m_lastScrollableBackLayers) {
Chris@0 611 m_lastScrollableBackLayers = scrollables;
Chris@0 612 changed = true;
Chris@0 613 }
Chris@0 614 return scrollables;
Chris@0 615 }
Chris@0 616 }
Chris@0 617
Chris@0 618 if (scrollables.size() == 1 &&
Chris@0 619 dynamic_cast<TimeRulerLayer *>(*scrollables.begin())) {
Chris@0 620
Chris@0 621 // If only the ruler is scrollable, it's not worth the bother
Chris@0 622 // -- it probably redraws as quickly as it refreshes from
Chris@0 623 // cache
Chris@0 624 scrollables.clear();
Chris@0 625 }
Chris@0 626
Chris@0 627 if (scrollables != m_lastScrollableBackLayers) {
Chris@0 628 m_lastScrollableBackLayers = scrollables;
Chris@0 629 changed = true;
Chris@0 630 }
Chris@0 631 return scrollables;
Chris@0 632 }
Chris@0 633
Chris@0 634 View::LayerList
Chris@0 635 View::getNonScrollableFrontLayers(bool &changed) const
Chris@0 636 {
Chris@0 637 changed = false;
Chris@0 638 LayerList scrollables = getScrollableBackLayers(changed);
Chris@0 639 LayerList nonScrollables;
Chris@0 640
Chris@0 641 // Everything in front of the first non-scrollable from the back
Chris@0 642 // should also be considered non-scrollable
Chris@0 643
Chris@0 644 size_t count = 0;
Chris@0 645 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 646 if (count < scrollables.size()) {
Chris@0 647 ++count;
Chris@0 648 continue;
Chris@0 649 }
Chris@0 650 nonScrollables.push_back(*i);
Chris@0 651 }
Chris@0 652
Chris@0 653 if (nonScrollables != m_lastNonScrollableBackLayers) {
Chris@0 654 m_lastNonScrollableBackLayers = nonScrollables;
Chris@0 655 changed = true;
Chris@0 656 }
Chris@0 657
Chris@0 658 return nonScrollables;
Chris@0 659 }
Chris@0 660
Chris@0 661 size_t
Chris@0 662 View::getZoomConstraintBlockSize(size_t blockSize,
Chris@0 663 ZoomConstraint::RoundingDirection dir)
Chris@0 664 const
Chris@0 665 {
Chris@0 666 size_t candidate = blockSize;
Chris@0 667 bool haveCandidate = false;
Chris@0 668
Chris@0 669 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@0 670
Chris@0 671 if ((*i)->getZoomConstraint()) {
Chris@0 672
Chris@0 673 size_t thisBlockSize =
Chris@0 674 (*i)->getZoomConstraint()->getNearestBlockSize
Chris@0 675 (blockSize, dir);
Chris@0 676
Chris@0 677 // Go for the block size that's furthest from the one
Chris@0 678 // passed in. Most of the time, that's what we want.
Chris@0 679 if (!haveCandidate ||
Chris@0 680 (thisBlockSize > blockSize && thisBlockSize > candidate) ||
Chris@0 681 (thisBlockSize < blockSize && thisBlockSize < candidate)) {
Chris@0 682 candidate = thisBlockSize;
Chris@0 683 haveCandidate = true;
Chris@0 684 }
Chris@0 685 }
Chris@0 686 }
Chris@0 687
Chris@0 688 return candidate;
Chris@0 689 }
Chris@0 690
Chris@0 691 void
Chris@0 692 View::zoom(bool in)
Chris@0 693 {
Chris@0 694 int newZoomLevel = m_zoomLevel;
Chris@0 695
Chris@0 696 if (in) {
Chris@0 697 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel - 1,
Chris@0 698 ZoomConstraint::RoundDown);
Chris@0 699 } else {
Chris@0 700 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel + 1,
Chris@0 701 ZoomConstraint::RoundUp);
Chris@0 702 }
Chris@0 703
Chris@0 704 if (newZoomLevel != m_zoomLevel) {
Chris@0 705 setZoomLevel(newZoomLevel);
Chris@0 706 }
Chris@0 707 }
Chris@0 708
Chris@0 709 void
Chris@0 710 View::checkProgress(void *object)
Chris@0 711 {
Chris@0 712 // std::cerr << "View::checkProgress(" << object << ")" << std::endl;
Chris@0 713
Chris@0 714 if (!m_showProgress) return;
Chris@0 715
Chris@0 716 int ph = height();
Chris@0 717
Chris@0 718 for (ProgressMap::const_iterator i = m_progressBars.begin();
Chris@0 719 i != m_progressBars.end(); ++i) {
Chris@0 720
Chris@0 721 if (i->first == object) {
Chris@0 722
Chris@0 723 int completion = i->first->getCompletion();
Chris@0 724
Chris@0 725 if (completion >= 100) {
Chris@0 726
Chris@0 727 i->second->hide();
Chris@0 728
Chris@0 729 } else {
Chris@0 730
Chris@0 731 i->second->setText(i->first->getPropertyContainerName());
Chris@0 732 i->second->setValue(completion);
Chris@0 733 i->second->move(0, ph - i->second->height());
Chris@0 734
Chris@0 735 i->second->show();
Chris@0 736 i->second->update();
Chris@0 737
Chris@0 738 ph -= i->second->height();
Chris@0 739 }
Chris@0 740 } else {
Chris@0 741 if (i->second->isVisible()) {
Chris@0 742 ph -= i->second->height();
Chris@0 743 }
Chris@0 744 }
Chris@0 745 }
Chris@0 746 }
Chris@0 747 /*!!!
Chris@0 748 void
Chris@0 749 View::identifyLocalFeatures(bool on, int x, int y)
Chris@0 750 {
Chris@0 751 for (LayerList::const_iterator i = m_layers.end(); i != m_layers.begin(); ) {
Chris@0 752 --i;
Chris@0 753 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 754 std::cerr << "View::identifyLocalFeatures: calling on " << *i << std::endl;
Chris@0 755 #endif
Chris@0 756 if ((*i)->identifyLocalFeatures(on, x, y)) break;
Chris@0 757 }
Chris@0 758 }
Chris@0 759 */
Chris@0 760
Chris@0 761 void
Chris@0 762 View::paintEvent(QPaintEvent *e)
Chris@0 763 {
Chris@0 764 // Profiler prof("View::paintEvent", true);
Chris@0 765 // std::cerr << "View::paintEvent" << std::endl;
Chris@0 766
Chris@0 767 if (m_layers.empty()) {
Chris@0 768 QFrame::paintEvent(e);
Chris@0 769 return;
Chris@0 770 }
Chris@0 771
Chris@0 772 if (m_newModel) {
Chris@0 773 m_newModel = false;
Chris@0 774 }
Chris@0 775
Chris@0 776 // ensure our constraints are met
Chris@0 777 m_zoomLevel = getZoomConstraintBlockSize(m_zoomLevel,
Chris@0 778 ZoomConstraint::RoundUp);
Chris@0 779
Chris@0 780 QPainter paint;
Chris@0 781 bool repaintCache = false;
Chris@0 782 bool paintedCacheRect = false;
Chris@0 783
Chris@0 784 QRect cacheRect(rect());
Chris@0 785
Chris@0 786 if (e) {
Chris@0 787 cacheRect &= e->rect();
Chris@0 788 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 789 std::cerr << "paint rect " << cacheRect.width() << "x" << cacheRect.height()
Chris@0 790 << ", my rect " << width() << "x" << height() << std::endl;
Chris@0 791 #endif
Chris@0 792 }
Chris@0 793
Chris@0 794 QRect nonCacheRect(cacheRect);
Chris@0 795
Chris@0 796 // If not all layers are scrollable, but some of the back layers
Chris@0 797 // are, we should store only those in the cache
Chris@0 798
Chris@0 799 bool layersChanged = false;
Chris@0 800 LayerList scrollables = getScrollableBackLayers(layersChanged);
Chris@0 801 LayerList nonScrollables = getNonScrollableFrontLayers(layersChanged);
Chris@0 802
Chris@0 803 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 804 std::cerr << "View(" << this << ")::paintEvent: have " << scrollables.size()
Chris@0 805 << " scrollable back layers and " << nonScrollables.size()
Chris@0 806 << " non-scrollable front layers" << std::endl;
Chris@0 807 #endif
Chris@0 808
Chris@0 809 if (layersChanged || scrollables.empty()) {
Chris@0 810 delete m_cache;
Chris@0 811 m_cache = 0;
Chris@0 812 }
Chris@0 813
Chris@0 814 if (!scrollables.empty()) {
Chris@0 815 if (!m_cache ||
Chris@0 816 m_cacheZoomLevel != m_zoomLevel ||
Chris@0 817 width() != m_cache->width() ||
Chris@0 818 height() != m_cache->height()) {
Chris@0 819
Chris@0 820 // cache is not valid
Chris@0 821
Chris@0 822 if (cacheRect.width() < width()/10) {
Chris@0 823 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 824 std::cerr << "View(" << this << ")::paintEvent: small repaint, not bothering to recreate cache" << std::endl;
Chris@0 825 #endif
Chris@0 826 } else {
Chris@0 827 delete m_cache;
Chris@0 828 m_cache = new QPixmap(width(), height());
Chris@0 829 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 830 std::cerr << "View(" << this << ")::paintEvent: recreated cache" << std::endl;
Chris@0 831 #endif
Chris@0 832 cacheRect = rect();
Chris@0 833 repaintCache = true;
Chris@0 834 }
Chris@0 835
Chris@0 836 } else if (m_cacheCentreFrame != m_centreFrame) {
Chris@0 837
Chris@0 838 long dx = long(m_cacheCentreFrame / m_zoomLevel) -
Chris@0 839 long(m_centreFrame / m_zoomLevel);
Chris@0 840
Chris@0 841 if (dx > -width() && dx < width()) {
Chris@0 842 #if defined(Q_WS_WIN32) || defined(Q_WS_MAC)
Chris@0 843 // Copying a pixmap to itself doesn't work properly on Windows
Chris@0 844 // or Mac (it only works when moving in one direction)
Chris@0 845 static QPixmap *tmpPixmap = 0;
Chris@0 846 if (!tmpPixmap ||
Chris@0 847 tmpPixmap->width() != width() ||
Chris@0 848 tmpPixmap->height() != height()) {
Chris@0 849 delete tmpPixmap;
Chris@0 850 tmpPixmap = new QPixmap(width(), height());
Chris@0 851 }
Chris@0 852 paint.begin(tmpPixmap);
Chris@0 853 paint.drawPixmap(0, 0, *m_cache);
Chris@0 854 paint.end();
Chris@0 855 paint.begin(m_cache);
Chris@0 856 paint.drawPixmap(dx, 0, *tmpPixmap);
Chris@0 857 paint.end();
Chris@0 858 #else
Chris@0 859 // But it seems to be fine on X11
Chris@0 860 paint.begin(m_cache);
Chris@0 861 paint.drawPixmap(dx, 0, *m_cache);
Chris@0 862 paint.end();
Chris@0 863 #endif
Chris@0 864
Chris@0 865 if (dx < 0) {
Chris@0 866 cacheRect = QRect(width() + dx, 0, -dx, height());
Chris@0 867 } else {
Chris@0 868 cacheRect = QRect(0, 0, dx, height());
Chris@0 869 }
Chris@0 870 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 871 std::cerr << "View(" << this << ")::paintEvent: scrolled cache by " << dx << std::endl;
Chris@0 872 #endif
Chris@0 873 } else {
Chris@0 874 cacheRect = rect();
Chris@0 875 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 876 std::cerr << "View(" << this << ")::paintEvent: scrolling too far" << std::endl;
Chris@0 877 #endif
Chris@0 878 }
Chris@0 879 repaintCache = true;
Chris@0 880
Chris@0 881 } else {
Chris@0 882 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 883 std::cerr << "View(" << this << ")::paintEvent: cache is good" << std::endl;
Chris@0 884 #endif
Chris@0 885 paint.begin(this);
Chris@0 886 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@0 887 paint.end();
Chris@0 888 QFrame::paintEvent(e);
Chris@0 889 paintedCacheRect = true;
Chris@0 890 }
Chris@0 891
Chris@0 892 m_cacheCentreFrame = m_centreFrame;
Chris@0 893 m_cacheZoomLevel = m_zoomLevel;
Chris@0 894 }
Chris@0 895
Chris@0 896 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@0 897 // std::cerr << "View(" << this << ")::paintEvent: cacheRect " << cacheRect << ", nonCacheRect " << (nonCacheRect | cacheRect) << ", repaintCache " << repaintCache << ", paintedCacheRect " << paintedCacheRect << std::endl;
Chris@0 898 #endif
Chris@0 899
Chris@0 900 // Scrollable (cacheable) items first
Chris@0 901
Chris@0 902 if (!paintedCacheRect) {
Chris@0 903
Chris@0 904 if (repaintCache) paint.begin(m_cache);
Chris@0 905 else paint.begin(this);
Chris@0 906
Chris@0 907 paint.setClipRect(cacheRect);
Chris@0 908
Chris@0 909 if (hasLightBackground()) {
Chris@0 910 paint.setPen(Qt::white);
Chris@0 911 paint.setBrush(Qt::white);
Chris@0 912 } else {
Chris@0 913 paint.setPen(Qt::black);
Chris@0 914 paint.setBrush(Qt::black);
Chris@0 915 }
Chris@0 916 paint.drawRect(cacheRect);
Chris@0 917
Chris@0 918 paint.setPen(Qt::black);
Chris@0 919 paint.setBrush(Qt::NoBrush);
Chris@0 920
Chris@0 921 for (LayerList::iterator i = scrollables.begin(); i != scrollables.end(); ++i) {
Chris@8 922 paint.setRenderHint(QPainter::Antialiasing, false);
Chris@8 923 paint.save();
Chris@0 924 (*i)->paint(paint, cacheRect);
Chris@8 925 paint.restore();
Chris@0 926 }
Chris@0 927
Chris@0 928 paint.end();
Chris@0 929
Chris@0 930 if (repaintCache) {
Chris@0 931 cacheRect |= (e ? e->rect() : rect());
Chris@0 932 paint.begin(this);
Chris@0 933 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@0 934 paint.end();
Chris@0 935 }
Chris@0 936 }
Chris@0 937
Chris@0 938 // Now non-cacheable items. We always need to redraw the
Chris@0 939 // non-cacheable items across at least the area we drew of the
Chris@0 940 // cacheable items.
Chris@0 941
Chris@0 942 nonCacheRect |= cacheRect;
Chris@0 943
Chris@0 944 paint.begin(this);
Chris@0 945 paint.setClipRect(nonCacheRect);
Chris@0 946
Chris@0 947 if (scrollables.empty()) {
Chris@0 948 if (hasLightBackground()) {
Chris@0 949 paint.setPen(Qt::white);
Chris@0 950 paint.setBrush(Qt::white);
Chris@0 951 } else {
Chris@0 952 paint.setPen(Qt::black);
Chris@0 953 paint.setBrush(Qt::black);
Chris@0 954 }
Chris@0 955 paint.drawRect(nonCacheRect);
Chris@0 956 }
Chris@0 957
Chris@0 958 paint.setPen(Qt::black);
Chris@0 959 paint.setBrush(Qt::NoBrush);
Chris@0 960
Chris@0 961 for (LayerList::iterator i = nonScrollables.begin(); i != nonScrollables.end(); ++i) {
Chris@0 962 (*i)->paint(paint, nonCacheRect);
Chris@0 963 }
Chris@0 964
Chris@8 965 ViewManager::SelectionList selections;
Chris@8 966
Chris@8 967 if (m_manager) {
Chris@8 968 selections = m_manager->getSelections();
Chris@8 969 if (m_manager->haveInProgressSelection()) {
Chris@8 970 bool exclusive;
Chris@8 971 Selection inProgressSelection =
Chris@8 972 m_manager->getInProgressSelection(exclusive);
Chris@8 973 if (exclusive) selections.clear();
Chris@8 974 selections.insert(inProgressSelection);
Chris@8 975 }
Chris@8 976 }
Chris@8 977
Chris@8 978 paint.setPen(QColor(150, 150, 255));
Chris@8 979 paint.setBrush(QColor(150, 150, 255, 80));
Chris@8 980
Chris@8 981 for (ViewManager::SelectionList::iterator i = selections.begin();
Chris@8 982 i != selections.end(); ++i) {
Chris@8 983
Chris@8 984 int p0 = -1, p1 = -1;
Chris@8 985
Chris@8 986 if (int(i->getStartFrame()) >= getStartFrame()) {
Chris@8 987 p0 = (i->getStartFrame() - getStartFrame()) / m_zoomLevel;
Chris@8 988 }
Chris@8 989
Chris@8 990 if (int(i->getEndFrame()) >= getStartFrame()) {
Chris@8 991 p1 = (i->getEndFrame() - getStartFrame()) / m_zoomLevel;
Chris@8 992 }
Chris@8 993
Chris@8 994 if (p0 == -1 && p1 == -1) continue;
Chris@8 995
Chris@8 996 if (p1 > width()) p1 = width() + 1;
Chris@8 997
Chris@8 998 paint.drawRect(p0, -1, p1 - p0, height() + 1);
Chris@8 999 }
Chris@8 1000
Chris@0 1001 paint.end();
Chris@0 1002
Chris@0 1003 if (m_followPlay != PlaybackScrollContinuous) {
Chris@0 1004
Chris@0 1005 paint.begin(this);
Chris@0 1006
Chris@0 1007 if (long(m_playPointerFrame) > getStartFrame() &&
Chris@0 1008 m_playPointerFrame < getEndFrame()) {
Chris@0 1009
Chris@0 1010 int playx = (long(m_playPointerFrame) - getStartFrame()) /
Chris@0 1011 m_zoomLevel;
Chris@0 1012
Chris@0 1013 paint.setPen(Qt::black);
Chris@0 1014 paint.drawLine(playx - 1, 0, playx - 1, height() - 1);
Chris@0 1015 paint.drawLine(playx + 1, 0, playx + 1, height() - 1);
Chris@0 1016 paint.drawPoint(playx, 0);
Chris@0 1017 paint.drawPoint(playx, height() - 1);
Chris@0 1018 paint.setPen(Qt::white);
Chris@0 1019 paint.drawLine(playx, 1, playx, height() - 2);
Chris@0 1020 }
Chris@0 1021
Chris@0 1022 paint.end();
Chris@0 1023 }
Chris@0 1024
Chris@0 1025 QFrame::paintEvent(e);
Chris@0 1026 }
Chris@0 1027
Chris@3 1028 QString
Chris@3 1029 View::toXmlString(QString indent, QString extraAttributes) const
Chris@3 1030 {
Chris@3 1031 QString s;
Chris@3 1032
Chris@3 1033 s += indent;
Chris@3 1034
Chris@3 1035 s += QString("<view "
Chris@3 1036 "centre=\"%1\" "
Chris@3 1037 "zoom=\"%2\" "
Chris@3 1038 "followPan=\"%3\" "
Chris@3 1039 "followZoom=\"%4\" "
Chris@3 1040 "tracking=\"%5\" "
Chris@3 1041 "light=\"%6\" %7>\n")
Chris@3 1042 .arg(m_centreFrame)
Chris@3 1043 .arg(m_zoomLevel)
Chris@3 1044 .arg(m_followPan)
Chris@3 1045 .arg(m_followZoom)
Chris@3 1046 .arg(m_followPlay == PlaybackScrollContinuous ? "scroll" :
Chris@3 1047 m_followPlay == PlaybackScrollPage ? "page" : "ignore")
Chris@3 1048 .arg(m_lightBackground)
Chris@3 1049 .arg(extraAttributes);
Chris@3 1050
Chris@3 1051 for (size_t i = 0; i < m_layers.size(); ++i) {
Chris@3 1052 s += m_layers[i]->toXmlString(indent + " ");
Chris@3 1053 }
Chris@3 1054
Chris@4 1055 s += indent + "</view>\n";
Chris@3 1056
Chris@3 1057 return s;
Chris@3 1058 }
Chris@3 1059
Chris@3 1060
Chris@0 1061 #ifdef INCLUDE_MOCFILES
Chris@0 1062 #include "View.moc.cpp"
Chris@0 1063 #endif
Chris@0 1064