annotate view/View.cpp @ 222:cd81066ac7ad

* More useful status bar text -- show the current play time and the extents of the visible area * Add update-i18n.sh to update the i18n/ts and qm files -- I can't get qmake to do the right thing now that the project file has been split up into several project files * Fix missing Q_OBJECTs, etc, reported by lupdate * Update Russian translation from AlexandrE
author Chris Cannam
date Wed, 07 Mar 2007 17:07:02 +0000
parents bd2d0346da0e
children 9465b5375235
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@127 21
Chris@127 22 #include "layer/TimeRulerLayer.h" //!!! damn, shouldn't be including that here
Chris@128 23 #include "data/model/PowerOfSqrtTwoZoomConstraint.h" //!!! likewise
Chris@127 24
Chris@127 25 #include <QPainter>
Chris@127 26 #include <QPaintEvent>
Chris@127 27 #include <QRect>
Chris@127 28 #include <QApplication>
Chris@127 29
Chris@127 30 #include <iostream>
Chris@127 31 #include <cassert>
Chris@127 32 #include <math.h>
Chris@127 33
Chris@127 34 //#define DEBUG_VIEW_WIDGET_PAINT 1
Chris@127 35
Chris@127 36 using std::cerr;
Chris@127 37 using std::endl;
Chris@127 38
Chris@127 39 View::View(QWidget *w, bool showProgress) :
Chris@127 40 QFrame(w),
Chris@127 41 m_centreFrame(0),
Chris@127 42 m_zoomLevel(1024),
Chris@127 43 m_followPan(true),
Chris@127 44 m_followZoom(true),
Chris@127 45 m_followPlay(PlaybackScrollPage),
Chris@153 46 m_playPointerFrame(0),
Chris@127 47 m_lightBackground(true),
Chris@127 48 m_showProgress(showProgress),
Chris@127 49 m_cache(0),
Chris@127 50 m_cacheCentreFrame(0),
Chris@127 51 m_cacheZoomLevel(1024),
Chris@127 52 m_selectionCached(false),
Chris@127 53 m_deleting(false),
Chris@127 54 m_haveSelectedLayer(false),
Chris@127 55 m_manager(0),
Chris@127 56 m_propertyContainer(new ViewPropertyContainer(this))
Chris@127 57 {
Chris@127 58 // QWidget::setAttribute(Qt::WA_PaintOnScreen);
Chris@127 59 }
Chris@127 60
Chris@127 61 View::~View()
Chris@127 62 {
Chris@127 63 // std::cerr << "View::~View(" << this << ")" << std::endl;
Chris@127 64
Chris@127 65 m_deleting = true;
Chris@127 66 delete m_propertyContainer;
Chris@127 67 }
Chris@127 68
Chris@127 69 PropertyContainer::PropertyList
Chris@127 70 View::getProperties() const
Chris@127 71 {
Chris@127 72 PropertyContainer::PropertyList list;
Chris@127 73 list.push_back("Global Scroll");
Chris@127 74 list.push_back("Global Zoom");
Chris@127 75 list.push_back("Follow Playback");
Chris@127 76 return list;
Chris@127 77 }
Chris@127 78
Chris@127 79 QString
Chris@127 80 View::getPropertyLabel(const PropertyName &pn) const
Chris@127 81 {
Chris@127 82 if (pn == "Global Scroll") return tr("Global Scroll");
Chris@127 83 if (pn == "Global Zoom") return tr("Global Zoom");
Chris@127 84 if (pn == "Follow Playback") return tr("Follow Playback");
Chris@127 85 return "";
Chris@127 86 }
Chris@127 87
Chris@127 88 PropertyContainer::PropertyType
Chris@127 89 View::getPropertyType(const PropertyContainer::PropertyName &name) const
Chris@127 90 {
Chris@127 91 if (name == "Global Scroll") return PropertyContainer::ToggleProperty;
Chris@127 92 if (name == "Global Zoom") return PropertyContainer::ToggleProperty;
Chris@127 93 if (name == "Follow Playback") return PropertyContainer::ValueProperty;
Chris@127 94 return PropertyContainer::InvalidProperty;
Chris@127 95 }
Chris@127 96
Chris@127 97 int
Chris@127 98 View::getPropertyRangeAndValue(const PropertyContainer::PropertyName &name,
Chris@216 99 int *min, int *max, int *deflt) const
Chris@127 100 {
Chris@216 101 if (deflt) *deflt = 1;
Chris@127 102 if (name == "Global Scroll") return m_followPan;
Chris@127 103 if (name == "Global Zoom") return m_followZoom;
Chris@127 104 if (name == "Follow Playback") {
Chris@127 105 if (min) *min = 0;
Chris@127 106 if (max) *max = 2;
Chris@216 107 if (deflt) *deflt = int(PlaybackScrollPage);
Chris@127 108 return int(m_followPlay);
Chris@127 109 }
Chris@127 110 if (min) *min = 0;
Chris@127 111 if (max) *max = 0;
Chris@216 112 if (deflt) *deflt = 0;
Chris@127 113 return 0;
Chris@127 114 }
Chris@127 115
Chris@127 116 QString
Chris@127 117 View::getPropertyValueLabel(const PropertyContainer::PropertyName &name,
Chris@127 118 int value) const
Chris@127 119 {
Chris@127 120 if (name == "Follow Playback") {
Chris@127 121 switch (value) {
Chris@127 122 default:
Chris@127 123 case 0: return tr("Scroll");
Chris@127 124 case 1: return tr("Page");
Chris@127 125 case 2: return tr("Off");
Chris@127 126 }
Chris@127 127 }
Chris@127 128 return tr("<unknown>");
Chris@127 129 }
Chris@127 130
Chris@127 131 void
Chris@127 132 View::setProperty(const PropertyContainer::PropertyName &name, int value)
Chris@127 133 {
Chris@127 134 if (name == "Global Scroll") {
Chris@127 135 setFollowGlobalPan(value != 0);
Chris@127 136 } else if (name == "Global Zoom") {
Chris@127 137 setFollowGlobalZoom(value != 0);
Chris@127 138 } else if (name == "Follow Playback") {
Chris@127 139 switch (value) {
Chris@127 140 default:
Chris@127 141 case 0: setPlaybackFollow(PlaybackScrollContinuous); break;
Chris@127 142 case 1: setPlaybackFollow(PlaybackScrollPage); break;
Chris@127 143 case 2: setPlaybackFollow(PlaybackIgnore); break;
Chris@127 144 }
Chris@127 145 }
Chris@127 146 }
Chris@127 147
Chris@127 148 size_t
Chris@127 149 View::getPropertyContainerCount() const
Chris@127 150 {
Chris@127 151 return m_layers.size() + 1; // the 1 is for me
Chris@127 152 }
Chris@127 153
Chris@127 154 const PropertyContainer *
Chris@127 155 View::getPropertyContainer(size_t i) const
Chris@127 156 {
Chris@127 157 return (const PropertyContainer *)(((View *)this)->
Chris@127 158 getPropertyContainer(i));
Chris@127 159 }
Chris@127 160
Chris@127 161 PropertyContainer *
Chris@127 162 View::getPropertyContainer(size_t i)
Chris@127 163 {
Chris@127 164 if (i == 0) return m_propertyContainer;
Chris@127 165 return m_layers[i-1];
Chris@127 166 }
Chris@127 167
Chris@127 168 bool
Chris@127 169 View::getValueExtents(QString unit, float &min, float &max, bool &log) const
Chris@127 170 {
Chris@127 171 bool have = false;
Chris@127 172
Chris@127 173 for (LayerList::const_iterator i = m_layers.begin();
Chris@127 174 i != m_layers.end(); ++i) {
Chris@127 175
Chris@127 176 QString layerUnit;
Chris@127 177 float layerMin = 0.0, layerMax = 0.0;
Chris@127 178 float displayMin = 0.0, displayMax = 0.0;
Chris@127 179 bool layerLog = false;
Chris@127 180
Chris@127 181 if ((*i)->getValueExtents(layerMin, layerMax, layerLog, layerUnit) &&
Chris@127 182 layerUnit.toLower() == unit.toLower()) {
Chris@127 183
Chris@127 184 if ((*i)->getDisplayExtents(displayMin, displayMax)) {
Chris@127 185
Chris@127 186 min = displayMin;
Chris@127 187 max = displayMax;
Chris@127 188 log = layerLog;
Chris@127 189 have = true;
Chris@127 190 break;
Chris@127 191
Chris@127 192 } else {
Chris@127 193
Chris@127 194 if (!have || layerMin < min) min = layerMin;
Chris@127 195 if (!have || layerMax > max) max = layerMax;
Chris@127 196 if (layerLog) log = true;
Chris@127 197 have = true;
Chris@127 198 }
Chris@127 199 }
Chris@127 200 }
Chris@127 201
Chris@127 202 return have;
Chris@127 203 }
Chris@127 204
Chris@127 205 int
Chris@127 206 View::getTextLabelHeight(const Layer *layer, QPainter &paint) const
Chris@127 207 {
Chris@127 208 std::map<int, Layer *> sortedLayers;
Chris@127 209
Chris@127 210 for (LayerList::const_iterator i = m_layers.begin();
Chris@127 211 i != m_layers.end(); ++i) {
Chris@127 212 if ((*i)->needsTextLabelHeight()) {
Chris@127 213 sortedLayers[getObjectExportId(*i)] = *i;
Chris@127 214 }
Chris@127 215 }
Chris@127 216
Chris@127 217 int y = 15 + paint.fontMetrics().ascent();
Chris@127 218
Chris@127 219 for (std::map<int, Layer *>::const_iterator i = sortedLayers.begin();
Chris@127 220 i != sortedLayers.end(); ++i) {
Chris@127 221 if (i->second == layer) return y;
Chris@127 222 y += paint.fontMetrics().height();
Chris@127 223 }
Chris@127 224
Chris@127 225 return y;
Chris@127 226 }
Chris@127 227
Chris@127 228 void
Chris@127 229 View::propertyContainerSelected(View *client, PropertyContainer *pc)
Chris@127 230 {
Chris@127 231 if (client != this) return;
Chris@127 232
Chris@127 233 if (pc == m_propertyContainer) {
Chris@127 234 if (m_haveSelectedLayer) {
Chris@127 235 m_haveSelectedLayer = false;
Chris@127 236 update();
Chris@127 237 }
Chris@127 238 return;
Chris@127 239 }
Chris@127 240
Chris@127 241 delete m_cache;
Chris@127 242 m_cache = 0;
Chris@127 243
Chris@127 244 Layer *selectedLayer = 0;
Chris@127 245
Chris@127 246 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 247 if (*i == pc) {
Chris@127 248 selectedLayer = *i;
Chris@127 249 m_layers.erase(i);
Chris@127 250 break;
Chris@127 251 }
Chris@127 252 }
Chris@127 253
Chris@127 254 if (selectedLayer) {
Chris@127 255 m_haveSelectedLayer = true;
Chris@127 256 m_layers.push_back(selectedLayer);
Chris@127 257 update();
Chris@127 258 } else {
Chris@127 259 m_haveSelectedLayer = false;
Chris@127 260 }
Chris@127 261 }
Chris@127 262
Chris@127 263 void
Chris@127 264 View::toolModeChanged()
Chris@127 265 {
Chris@127 266 // std::cerr << "View::toolModeChanged(" << m_manager->getToolMode() << ")" << std::endl;
Chris@127 267 }
Chris@127 268
Chris@133 269 void
Chris@133 270 View::overlayModeChanged()
Chris@133 271 {
Chris@206 272 delete m_cache;
Chris@206 273 m_cache = 0;
Chris@133 274 update();
Chris@133 275 }
Chris@133 276
Chris@133 277 void
Chris@133 278 View::zoomWheelsEnabledChanged()
Chris@133 279 {
Chris@133 280 // subclass might override this
Chris@133 281 }
Chris@133 282
Chris@127 283 long
Chris@127 284 View::getStartFrame() const
Chris@127 285 {
Chris@127 286 size_t w2 = (width() / 2) * m_zoomLevel;
Chris@127 287 size_t frame = m_centreFrame;
Chris@127 288 if (frame >= w2) {
Chris@127 289 frame -= w2;
Chris@127 290 return (frame / m_zoomLevel * m_zoomLevel);
Chris@127 291 } else {
Chris@127 292 frame = w2 - frame;
Chris@127 293 frame = frame / m_zoomLevel * m_zoomLevel;
Chris@127 294 return -(long)frame - m_zoomLevel;
Chris@127 295 }
Chris@127 296 }
Chris@127 297
Chris@127 298 size_t
Chris@127 299 View::getEndFrame() const
Chris@127 300 {
Chris@127 301 return getFrameForX(width()) - 1;
Chris@127 302 }
Chris@127 303
Chris@127 304 void
Chris@127 305 View::setStartFrame(long f)
Chris@127 306 {
Chris@127 307 setCentreFrame(f + m_zoomLevel * (width() / 2));
Chris@127 308 }
Chris@127 309
Chris@127 310 bool
Chris@127 311 View::setCentreFrame(size_t f, bool e)
Chris@127 312 {
Chris@127 313 bool changeVisible = false;
Chris@127 314
Chris@127 315 if (m_centreFrame != f) {
Chris@127 316
Chris@127 317 int formerPixel = m_centreFrame / m_zoomLevel;
Chris@127 318
Chris@127 319 m_centreFrame = f;
Chris@127 320
Chris@127 321 int newPixel = m_centreFrame / m_zoomLevel;
Chris@127 322
Chris@127 323 if (newPixel != formerPixel) {
Chris@127 324
Chris@127 325 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 326 std::cout << "View(" << this << ")::setCentreFrame: newPixel " << newPixel << ", formerPixel " << formerPixel << std::endl;
Chris@127 327 #endif
Chris@127 328 update();
Chris@127 329
Chris@127 330 changeVisible = true;
Chris@127 331 }
Chris@127 332
Chris@211 333 if (e) emit centreFrameChanged(f, m_followPan, m_followPlay);
Chris@127 334 }
Chris@127 335
Chris@127 336 return changeVisible;
Chris@127 337 }
Chris@127 338
Chris@127 339 int
Chris@127 340 View::getXForFrame(long frame) const
Chris@127 341 {
Chris@127 342 return (frame - getStartFrame()) / m_zoomLevel;
Chris@127 343 }
Chris@127 344
Chris@127 345 long
Chris@127 346 View::getFrameForX(int x) const
Chris@127 347 {
Chris@127 348 return (long(x) * long(m_zoomLevel)) + getStartFrame();
Chris@127 349 }
Chris@127 350
Chris@127 351 float
Chris@127 352 View::getYForFrequency(float frequency,
Chris@127 353 float minf,
Chris@127 354 float maxf,
Chris@127 355 bool logarithmic) const
Chris@127 356 {
Chris@127 357 int h = height();
Chris@127 358
Chris@127 359 if (logarithmic) {
Chris@127 360
Chris@127 361 static float lastminf = 0.0, lastmaxf = 0.0;
Chris@127 362 static float logminf = 0.0, logmaxf = 0.0;
Chris@127 363
Chris@127 364 if (lastminf != minf) {
Chris@127 365 lastminf = (minf == 0.0 ? 1.0 : minf);
Chris@127 366 logminf = log10f(minf);
Chris@127 367 }
Chris@127 368 if (lastmaxf != maxf) {
Chris@127 369 lastmaxf = (maxf < lastminf ? lastminf : maxf);
Chris@127 370 logmaxf = log10f(maxf);
Chris@127 371 }
Chris@127 372
Chris@127 373 if (logminf == logmaxf) return 0;
Chris@127 374 return h - (h * (log10f(frequency) - logminf)) / (logmaxf - logminf);
Chris@127 375
Chris@127 376 } else {
Chris@127 377
Chris@127 378 if (minf == maxf) return 0;
Chris@127 379 return h - (h * (frequency - minf)) / (maxf - minf);
Chris@127 380 }
Chris@127 381 }
Chris@127 382
Chris@127 383 float
Chris@127 384 View::getFrequencyForY(int y,
Chris@127 385 float minf,
Chris@127 386 float maxf,
Chris@127 387 bool logarithmic) const
Chris@127 388 {
Chris@127 389 int h = height();
Chris@127 390
Chris@127 391 if (logarithmic) {
Chris@127 392
Chris@127 393 static float lastminf = 0.0, lastmaxf = 0.0;
Chris@127 394 static float logminf = 0.0, logmaxf = 0.0;
Chris@127 395
Chris@127 396 if (lastminf != minf) {
Chris@127 397 lastminf = (minf == 0.0 ? 1.0 : minf);
Chris@127 398 logminf = log10f(minf);
Chris@127 399 }
Chris@127 400 if (lastmaxf != maxf) {
Chris@127 401 lastmaxf = (maxf < lastminf ? lastminf : maxf);
Chris@127 402 logmaxf = log10f(maxf);
Chris@127 403 }
Chris@127 404
Chris@127 405 if (logminf == logmaxf) return 0;
Chris@127 406 return pow(10.f, logminf + ((logmaxf - logminf) * (h - y)) / h);
Chris@127 407
Chris@127 408 } else {
Chris@127 409
Chris@127 410 if (minf == maxf) return 0;
Chris@127 411 return minf + ((h - y) * (maxf - minf)) / h;
Chris@127 412 }
Chris@127 413 }
Chris@127 414
Chris@127 415 int
Chris@127 416 View::getZoomLevel() const
Chris@127 417 {
Chris@127 418 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 419 std::cout << "zoom level: " << m_zoomLevel << std::endl;
Chris@127 420 #endif
Chris@127 421 return m_zoomLevel;
Chris@127 422 }
Chris@127 423
Chris@127 424 void
Chris@127 425 View::setZoomLevel(size_t z)
Chris@127 426 {
Chris@127 427 if (m_zoomLevel != int(z)) {
Chris@127 428 m_zoomLevel = z;
Chris@222 429 emit zoomLevelChanged(z, m_followZoom);
Chris@127 430 update();
Chris@127 431 }
Chris@127 432 }
Chris@127 433
Chris@127 434 View::LayerProgressBar::LayerProgressBar(QWidget *parent) :
Chris@127 435 QProgressBar(parent)
Chris@127 436 {
Chris@127 437 QFont f(font());
Chris@127 438 f.setPointSize(f.pointSize() * 8 / 10);
Chris@127 439 setFont(f);
Chris@127 440 }
Chris@127 441
Chris@127 442 void
Chris@127 443 View::addLayer(Layer *layer)
Chris@127 444 {
Chris@127 445 delete m_cache;
Chris@127 446 m_cache = 0;
Chris@127 447
Chris@127 448 m_layers.push_back(layer);
Chris@127 449
Chris@127 450 m_progressBars[layer] = new LayerProgressBar(this);
Chris@127 451 m_progressBars[layer]->setMinimum(0);
Chris@127 452 m_progressBars[layer]->setMaximum(100);
Chris@127 453 m_progressBars[layer]->setMinimumWidth(80);
Chris@127 454 m_progressBars[layer]->hide();
Chris@127 455
Chris@127 456 connect(layer, SIGNAL(layerParametersChanged()),
Chris@127 457 this, SLOT(layerParametersChanged()));
Chris@197 458 connect(layer, SIGNAL(layerParameterRangesChanged()),
Chris@197 459 this, SLOT(layerParameterRangesChanged()));
Chris@127 460 connect(layer, SIGNAL(layerNameChanged()),
Chris@127 461 this, SLOT(layerNameChanged()));
Chris@127 462 connect(layer, SIGNAL(modelChanged()),
Chris@127 463 this, SLOT(modelChanged()));
Chris@127 464 connect(layer, SIGNAL(modelCompletionChanged()),
Chris@127 465 this, SLOT(modelCompletionChanged()));
Chris@127 466 connect(layer, SIGNAL(modelChanged(size_t, size_t)),
Chris@127 467 this, SLOT(modelChanged(size_t, size_t)));
Chris@127 468 connect(layer, SIGNAL(modelReplaced()),
Chris@127 469 this, SLOT(modelReplaced()));
Chris@127 470
Chris@127 471 update();
Chris@127 472
Chris@127 473 emit propertyContainerAdded(layer);
Chris@127 474 }
Chris@127 475
Chris@127 476 void
Chris@127 477 View::removeLayer(Layer *layer)
Chris@127 478 {
Chris@127 479 if (m_deleting) {
Chris@127 480 return;
Chris@127 481 }
Chris@127 482
Chris@127 483 delete m_cache;
Chris@127 484 m_cache = 0;
Chris@127 485
Chris@127 486 for (LayerList::iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 487 if (*i == layer) {
Chris@127 488 m_layers.erase(i);
Chris@127 489 if (m_progressBars.find(layer) != m_progressBars.end()) {
Chris@127 490 delete m_progressBars[layer];
Chris@127 491 m_progressBars.erase(layer);
Chris@127 492 }
Chris@127 493 break;
Chris@127 494 }
Chris@127 495 }
Chris@127 496
Chris@197 497 disconnect(layer, SIGNAL(layerParametersChanged()),
Chris@197 498 this, SLOT(layerParametersChanged()));
Chris@197 499 disconnect(layer, SIGNAL(layerParameterRangesChanged()),
Chris@197 500 this, SLOT(layerParameterRangesChanged()));
Chris@197 501 disconnect(layer, SIGNAL(layerNameChanged()),
Chris@197 502 this, SLOT(layerNameChanged()));
Chris@197 503 disconnect(layer, SIGNAL(modelChanged()),
Chris@197 504 this, SLOT(modelChanged()));
Chris@197 505 disconnect(layer, SIGNAL(modelCompletionChanged()),
Chris@197 506 this, SLOT(modelCompletionChanged()));
Chris@197 507 disconnect(layer, SIGNAL(modelChanged(size_t, size_t)),
Chris@197 508 this, SLOT(modelChanged(size_t, size_t)));
Chris@197 509 disconnect(layer, SIGNAL(modelReplaced()),
Chris@197 510 this, SLOT(modelReplaced()));
Chris@197 511
Chris@127 512 update();
Chris@127 513
Chris@127 514 emit propertyContainerRemoved(layer);
Chris@127 515 }
Chris@127 516
Chris@127 517 Layer *
Chris@127 518 View::getSelectedLayer()
Chris@127 519 {
Chris@127 520 if (m_haveSelectedLayer && !m_layers.empty()) {
Chris@127 521 return getLayer(getLayerCount() - 1);
Chris@127 522 } else {
Chris@127 523 return 0;
Chris@127 524 }
Chris@127 525 }
Chris@127 526
Chris@127 527 const Layer *
Chris@127 528 View::getSelectedLayer() const
Chris@127 529 {
Chris@127 530 return const_cast<const Layer *>(const_cast<View *>(this)->getSelectedLayer());
Chris@127 531 }
Chris@127 532
Chris@127 533 void
Chris@127 534 View::setViewManager(ViewManager *manager)
Chris@127 535 {
Chris@127 536 if (m_manager) {
Chris@211 537 m_manager->disconnect(this, SLOT(globalCentreFrameChanged(unsigned long)));
Chris@211 538 m_manager->disconnect(this, SLOT(viewCentreFrameChanged(View *, unsigned long)));
Chris@211 539 m_manager->disconnect(this, SLOT(viewManagerPlaybackFrameChanged(unsigned long)));
Chris@222 540 m_manager->disconnect(this, SLOT(viewZoomLevelChanged(View *, unsigned long, bool)));
Chris@211 541 m_manager->disconnect(this, SLOT(toolModeChanged()));
Chris@211 542 m_manager->disconnect(this, SLOT(selectionChanged()));
Chris@211 543 m_manager->disconnect(this, SLOT(overlayModeChanged()));
Chris@211 544 m_manager->disconnect(this, SLOT(zoomWheelsEnabledChanged()));
Chris@222 545 disconnect(m_manager, SLOT(viewCentreFrameChanged(unsigned long, bool, PlaybackFollowMode)));
Chris@222 546 disconnect(m_manager, SLOT(zoomLevelChanged(unsigned long, bool)));
Chris@127 547 }
Chris@127 548
Chris@127 549 m_manager = manager;
Chris@127 550 if (m_followPan) setCentreFrame(m_manager->getGlobalCentreFrame(), false);
Chris@127 551 if (m_followZoom) setZoomLevel(m_manager->getGlobalZoom());
Chris@127 552
Chris@211 553 connect(m_manager, SIGNAL(globalCentreFrameChanged(unsigned long)),
Chris@211 554 this, SLOT(globalCentreFrameChanged(unsigned long)));
Chris@213 555 connect(m_manager, SIGNAL(viewCentreFrameChanged(View *, unsigned long)),
Chris@211 556 this, SLOT(viewCentreFrameChanged(View *, unsigned long)));
Chris@127 557 connect(m_manager, SIGNAL(playbackFrameChanged(unsigned long)),
Chris@127 558 this, SLOT(viewManagerPlaybackFrameChanged(unsigned long)));
Chris@211 559
Chris@222 560 connect(m_manager, SIGNAL(viewZoomLevelChanged(View *, unsigned long, bool)),
Chris@222 561 this, SLOT(viewZoomLevelChanged(View *, unsigned long, bool)));
Chris@211 562
Chris@127 563 connect(m_manager, SIGNAL(toolModeChanged()),
Chris@127 564 this, SLOT(toolModeChanged()));
Chris@127 565 connect(m_manager, SIGNAL(selectionChanged()),
Chris@127 566 this, SLOT(selectionChanged()));
Chris@127 567 connect(m_manager, SIGNAL(inProgressSelectionChanged()),
Chris@127 568 this, SLOT(selectionChanged()));
Chris@127 569 connect(m_manager, SIGNAL(overlayModeChanged()),
Chris@133 570 this, SLOT(overlayModeChanged()));
Chris@133 571 connect(m_manager, SIGNAL(zoomWheelsEnabledChanged()),
Chris@133 572 this, SLOT(zoomWheelsEnabledChanged()));
Chris@127 573
Chris@211 574 connect(this, SIGNAL(centreFrameChanged(unsigned long, bool,
Chris@211 575 PlaybackFollowMode)),
Chris@211 576 m_manager, SLOT(viewCentreFrameChanged(unsigned long, bool,
Chris@211 577 PlaybackFollowMode)));
Chris@211 578
Chris@222 579 connect(this, SIGNAL(zoomLevelChanged(unsigned long, bool)),
Chris@222 580 m_manager, SLOT(viewZoomLevelChanged(unsigned long, bool)));
Chris@127 581
Chris@127 582 toolModeChanged();
Chris@127 583 }
Chris@127 584
Chris@127 585 void
Chris@127 586 View::setFollowGlobalPan(bool f)
Chris@127 587 {
Chris@127 588 m_followPan = f;
Chris@127 589 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 590 }
Chris@127 591
Chris@127 592 void
Chris@127 593 View::setFollowGlobalZoom(bool f)
Chris@127 594 {
Chris@127 595 m_followZoom = f;
Chris@127 596 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 597 }
Chris@127 598
Chris@127 599 void
Chris@127 600 View::drawVisibleText(QPainter &paint, int x, int y, QString text, TextStyle style)
Chris@127 601 {
Chris@127 602 if (style == OutlinedText) {
Chris@127 603
Chris@127 604 QColor origPenColour = paint.pen().color();
Chris@127 605 QColor penColour = origPenColour;
Chris@127 606 QColor surroundColour = Qt::white; //palette().background().color();
Chris@127 607
Chris@127 608 if (!hasLightBackground()) {
Chris@127 609 int h, s, v;
Chris@127 610 penColour.getHsv(&h, &s, &v);
Chris@127 611 penColour = QColor::fromHsv(h, s, 255 - v);
Chris@127 612 surroundColour = Qt::black;
Chris@127 613 }
Chris@127 614
Chris@127 615 paint.setPen(surroundColour);
Chris@127 616
Chris@127 617 for (int dx = -1; dx <= 1; ++dx) {
Chris@127 618 for (int dy = -1; dy <= 1; ++dy) {
Chris@127 619 if (!(dx || dy)) continue;
Chris@127 620 paint.drawText(x + dx, y + dy, text);
Chris@127 621 }
Chris@127 622 }
Chris@127 623
Chris@127 624 paint.setPen(penColour);
Chris@127 625
Chris@127 626 paint.drawText(x, y, text);
Chris@127 627
Chris@127 628 paint.setPen(origPenColour);
Chris@127 629
Chris@127 630 } else {
Chris@127 631
Chris@127 632 std::cerr << "ERROR: View::drawVisibleText: Boxed style not yet implemented!" << std::endl;
Chris@127 633 }
Chris@127 634 }
Chris@127 635
Chris@127 636 void
Chris@127 637 View::setPlaybackFollow(PlaybackFollowMode m)
Chris@127 638 {
Chris@127 639 m_followPlay = m;
Chris@127 640 emit propertyContainerPropertyChanged(m_propertyContainer);
Chris@127 641 }
Chris@127 642
Chris@127 643 void
Chris@127 644 View::modelChanged()
Chris@127 645 {
Chris@127 646 QObject *obj = sender();
Chris@127 647
Chris@127 648 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 649 std::cerr << "View(" << this << ")::modelChanged()" << std::endl;
Chris@127 650 #endif
Chris@127 651
Chris@127 652 // If the model that has changed is not used by any of the cached
Chris@127 653 // layers, we won't need to recreate the cache
Chris@127 654
Chris@127 655 bool recreate = false;
Chris@127 656
Chris@127 657 bool discard;
Chris@127 658 LayerList scrollables = getScrollableBackLayers(false, discard);
Chris@127 659 for (LayerList::const_iterator i = scrollables.begin();
Chris@127 660 i != scrollables.end(); ++i) {
Chris@127 661 if (*i == obj || (*i)->getModel() == obj) {
Chris@127 662 recreate = true;
Chris@127 663 break;
Chris@127 664 }
Chris@127 665 }
Chris@127 666
Chris@127 667 if (recreate) {
Chris@127 668 delete m_cache;
Chris@127 669 m_cache = 0;
Chris@127 670 }
Chris@127 671
Chris@127 672 checkProgress(obj);
Chris@127 673
Chris@127 674 update();
Chris@127 675 }
Chris@127 676
Chris@127 677 void
Chris@127 678 View::modelChanged(size_t startFrame, size_t endFrame)
Chris@127 679 {
Chris@127 680 QObject *obj = sender();
Chris@127 681
Chris@127 682 long myStartFrame = getStartFrame();
Chris@127 683 size_t myEndFrame = getEndFrame();
Chris@127 684
Chris@127 685 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 686 std::cerr << "View(" << this << ")::modelChanged(" << startFrame << "," << endFrame << ") [me " << myStartFrame << "," << myEndFrame << "]" << std::endl;
Chris@127 687 #endif
Chris@127 688
Chris@127 689 if (myStartFrame > 0 && endFrame < size_t(myStartFrame)) {
Chris@127 690 checkProgress(obj);
Chris@127 691 return;
Chris@127 692 }
Chris@127 693 if (startFrame > myEndFrame) {
Chris@127 694 checkProgress(obj);
Chris@127 695 return;
Chris@127 696 }
Chris@127 697
Chris@127 698 // If the model that has changed is not used by any of the cached
Chris@127 699 // layers, we won't need to recreate the cache
Chris@127 700
Chris@127 701 bool recreate = false;
Chris@127 702
Chris@127 703 bool discard;
Chris@127 704 LayerList scrollables = getScrollableBackLayers(false, discard);
Chris@127 705 for (LayerList::const_iterator i = scrollables.begin();
Chris@127 706 i != scrollables.end(); ++i) {
Chris@127 707 if (*i == obj || (*i)->getModel() == obj) {
Chris@127 708 recreate = true;
Chris@127 709 break;
Chris@127 710 }
Chris@127 711 }
Chris@127 712
Chris@127 713 if (recreate) {
Chris@127 714 delete m_cache;
Chris@127 715 m_cache = 0;
Chris@127 716 }
Chris@127 717
Chris@127 718 if (long(startFrame) < myStartFrame) startFrame = myStartFrame;
Chris@127 719 if (endFrame > myEndFrame) endFrame = myEndFrame;
Chris@127 720
Chris@127 721 checkProgress(obj);
Chris@127 722
Chris@127 723 update();
Chris@127 724 }
Chris@127 725
Chris@127 726 void
Chris@127 727 View::modelCompletionChanged()
Chris@127 728 {
Chris@127 729 QObject *obj = sender();
Chris@127 730 checkProgress(obj);
Chris@127 731 }
Chris@127 732
Chris@127 733 void
Chris@127 734 View::modelReplaced()
Chris@127 735 {
Chris@127 736 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 737 std::cerr << "View(" << this << ")::modelReplaced()" << std::endl;
Chris@127 738 #endif
Chris@127 739 delete m_cache;
Chris@127 740 m_cache = 0;
Chris@127 741
Chris@127 742 update();
Chris@127 743 }
Chris@127 744
Chris@127 745 void
Chris@127 746 View::layerParametersChanged()
Chris@127 747 {
Chris@127 748 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@127 749
Chris@127 750 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 751 std::cerr << "View::layerParametersChanged()" << std::endl;
Chris@127 752 #endif
Chris@127 753
Chris@127 754 delete m_cache;
Chris@127 755 m_cache = 0;
Chris@127 756 update();
Chris@127 757
Chris@127 758 if (layer) {
Chris@127 759 emit propertyContainerPropertyChanged(layer);
Chris@127 760 }
Chris@127 761 }
Chris@127 762
Chris@127 763 void
Chris@197 764 View::layerParameterRangesChanged()
Chris@197 765 {
Chris@197 766 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@197 767 if (layer) emit propertyContainerPropertyRangeChanged(layer);
Chris@197 768 }
Chris@197 769
Chris@197 770 void
Chris@127 771 View::layerNameChanged()
Chris@127 772 {
Chris@127 773 Layer *layer = dynamic_cast<Layer *>(sender());
Chris@127 774 if (layer) emit propertyContainerNameChanged(layer);
Chris@127 775 }
Chris@127 776
Chris@127 777 void
Chris@211 778 View::globalCentreFrameChanged(unsigned long f)
Chris@127 779 {
Chris@211 780 if (m_followPan) {
Chris@211 781 setCentreFrame(f, false);
Chris@127 782 }
Chris@127 783 }
Chris@127 784
Chris@127 785 void
Chris@211 786 View::viewCentreFrameChanged(View *v, unsigned long f)
Chris@211 787 {
Chris@211 788 // We do nothing with this, but a subclass might
Chris@211 789 }
Chris@211 790
Chris@211 791 void
Chris@127 792 View::viewManagerPlaybackFrameChanged(unsigned long f)
Chris@127 793 {
Chris@127 794 if (m_manager) {
Chris@127 795 if (sender() != m_manager) return;
Chris@127 796 }
Chris@127 797
Chris@127 798 if (m_playPointerFrame == f) return;
Chris@127 799 bool visible = (getXForFrame(m_playPointerFrame) != getXForFrame(f));
Chris@127 800 size_t oldPlayPointerFrame = m_playPointerFrame;
Chris@127 801 m_playPointerFrame = f;
Chris@127 802 if (!visible) return;
Chris@127 803
Chris@127 804 switch (m_followPlay) {
Chris@127 805
Chris@127 806 case PlaybackScrollContinuous:
Chris@127 807 if (QApplication::mouseButtons() == Qt::NoButton) {
Chris@211 808 setCentreFrame(f, false);
Chris@127 809 }
Chris@127 810 break;
Chris@127 811
Chris@127 812 case PlaybackScrollPage:
Chris@127 813 {
Chris@127 814 int xold = getXForFrame(oldPlayPointerFrame);
Chris@127 815 update(xold - 1, 0, 3, height());
Chris@127 816
Chris@127 817 long w = getEndFrame() - getStartFrame();
Chris@127 818 w -= w/5;
Chris@127 819 long sf = (f / w) * w - w/8;
Chris@127 820
Chris@127 821 if (m_manager &&
Chris@127 822 m_manager->isPlaying() &&
Chris@127 823 m_manager->getPlaySelectionMode()) {
Chris@127 824 MultiSelection::SelectionList selections = m_manager->getSelections();
Chris@127 825 if (!selections.empty()) {
Chris@127 826 size_t selectionStart = selections.begin()->getStartFrame();
Chris@127 827 if (sf < long(selectionStart) - w / 10) {
Chris@127 828 sf = long(selectionStart) - w / 10;
Chris@127 829 }
Chris@127 830 }
Chris@127 831 }
Chris@127 832
Chris@127 833 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 834 std::cerr << "PlaybackScrollPage: f = " << f << ", sf = " << sf << ", start frame "
Chris@127 835 << getStartFrame() << std::endl;
Chris@127 836 #endif
Chris@127 837
Chris@127 838 // We don't consider scrolling unless the pointer is outside
Chris@127 839 // the clearly visible range already
Chris@127 840
Chris@127 841 int xnew = getXForFrame(m_playPointerFrame);
Chris@127 842
Chris@127 843 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 844 std::cerr << "xnew = " << xnew << ", width = " << width() << std::endl;
Chris@127 845 #endif
Chris@127 846
Chris@127 847 if (xnew < width()/8 || xnew > (width()*7)/8) {
Chris@127 848 if (QApplication::mouseButtons() == Qt::NoButton) {
Chris@127 849 long offset = getFrameForX(width()/2) - getStartFrame();
Chris@127 850 long newCentre = sf + offset;
Chris@127 851 bool changed = setCentreFrame(newCentre, false);
Chris@127 852 if (changed) {
Chris@127 853 xold = getXForFrame(oldPlayPointerFrame);
Chris@127 854 update(xold - 1, 0, 3, height());
Chris@127 855 }
Chris@127 856 }
Chris@127 857 }
Chris@127 858
Chris@127 859 update(xnew - 1, 0, 3, height());
Chris@127 860
Chris@127 861 break;
Chris@127 862 }
Chris@127 863
Chris@127 864 case PlaybackIgnore:
Chris@127 865 if (long(f) >= getStartFrame() && f < getEndFrame()) {
Chris@127 866 update();
Chris@127 867 }
Chris@127 868 break;
Chris@127 869 }
Chris@127 870 }
Chris@127 871
Chris@127 872 void
Chris@222 873 View::viewZoomLevelChanged(View *p, unsigned long z, bool locked)
Chris@127 874 {
Chris@127 875 if (m_followZoom && p != this && locked) {
Chris@222 876 setZoomLevel(z);
Chris@127 877 }
Chris@127 878 }
Chris@127 879
Chris@127 880 void
Chris@127 881 View::selectionChanged()
Chris@127 882 {
Chris@127 883 if (m_selectionCached) {
Chris@127 884 delete m_cache;
Chris@127 885 m_cache = 0;
Chris@127 886 m_selectionCached = false;
Chris@127 887 }
Chris@127 888 update();
Chris@127 889 }
Chris@127 890
Chris@127 891 size_t
Chris@222 892 View::getFirstVisibleFrame() const
Chris@222 893 {
Chris@222 894 long f0 = getStartFrame();
Chris@222 895 size_t f = getModelsStartFrame();
Chris@222 896 if (f0 < 0 || f0 < long(f)) return f;
Chris@222 897 return f0;
Chris@222 898 }
Chris@222 899
Chris@222 900 size_t
Chris@222 901 View::getLastVisibleFrame() const
Chris@222 902 {
Chris@222 903 size_t f0 = getEndFrame();
Chris@222 904 size_t f = getModelsEndFrame();
Chris@222 905 if (f0 > f) return f;
Chris@222 906 return f0;
Chris@222 907 }
Chris@222 908
Chris@222 909 size_t
Chris@127 910 View::getModelsStartFrame() const
Chris@127 911 {
Chris@127 912 bool first = true;
Chris@127 913 size_t startFrame = 0;
Chris@127 914
Chris@127 915 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 916
Chris@127 917 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 918
Chris@127 919 size_t thisStartFrame = (*i)->getModel()->getStartFrame();
Chris@127 920
Chris@127 921 if (first || thisStartFrame < startFrame) {
Chris@127 922 startFrame = thisStartFrame;
Chris@127 923 }
Chris@127 924 first = false;
Chris@127 925 }
Chris@127 926 }
Chris@127 927 return startFrame;
Chris@127 928 }
Chris@127 929
Chris@127 930 size_t
Chris@127 931 View::getModelsEndFrame() const
Chris@127 932 {
Chris@127 933 bool first = true;
Chris@127 934 size_t endFrame = 0;
Chris@127 935
Chris@127 936 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 937
Chris@127 938 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 939
Chris@127 940 size_t thisEndFrame = (*i)->getModel()->getEndFrame();
Chris@127 941
Chris@127 942 if (first || thisEndFrame > endFrame) {
Chris@127 943 endFrame = thisEndFrame;
Chris@127 944 }
Chris@127 945 first = false;
Chris@127 946 }
Chris@127 947 }
Chris@127 948
Chris@127 949 if (first) return getModelsStartFrame();
Chris@127 950 return endFrame;
Chris@127 951 }
Chris@127 952
Chris@127 953 int
Chris@127 954 View::getModelsSampleRate() const
Chris@127 955 {
Chris@127 956 //!!! Just go for the first, for now. If we were supporting
Chris@127 957 // multiple samplerates, we'd probably want to do frame/time
Chris@127 958 // conversion in the model
Chris@127 959
Chris@159 960 //!!! nah, this wants to always return the sr of the main model!
Chris@159 961
Chris@127 962 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 963 if ((*i)->getModel() && (*i)->getModel()->isOK()) {
Chris@127 964 return (*i)->getModel()->getSampleRate();
Chris@127 965 }
Chris@127 966 }
Chris@127 967 return 0;
Chris@127 968 }
Chris@127 969
Chris@127 970 bool
Chris@127 971 View::areLayersScrollable() const
Chris@127 972 {
Chris@127 973 // True iff all views are scrollable
Chris@127 974 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 975 if (!(*i)->isLayerScrollable(this)) return false;
Chris@127 976 }
Chris@127 977 return true;
Chris@127 978 }
Chris@127 979
Chris@127 980 View::LayerList
Chris@127 981 View::getScrollableBackLayers(bool testChanged, bool &changed) const
Chris@127 982 {
Chris@127 983 changed = false;
Chris@127 984
Chris@127 985 // We want a list of all the scrollable layers that are behind the
Chris@127 986 // backmost non-scrollable layer.
Chris@127 987
Chris@127 988 LayerList scrollables;
Chris@127 989 bool metUnscrollable = false;
Chris@127 990
Chris@127 991 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@132 992 // std::cerr << "View::getScrollableBackLayers: calling isLayerDormant on layer " << *i << std::endl;
Chris@132 993 // std::cerr << "(name is " << (*i)->objectName().toStdString() << ")"
Chris@132 994 // << std::endl;
Chris@132 995 // std::cerr << "View::getScrollableBackLayers: I am " << this << std::endl;
Chris@127 996 if ((*i)->isLayerDormant(this)) continue;
Chris@127 997 if ((*i)->isLayerOpaque()) {
Chris@127 998 // You can't see anything behind an opaque layer!
Chris@127 999 scrollables.clear();
Chris@127 1000 if (metUnscrollable) break;
Chris@127 1001 }
Chris@127 1002 if (!metUnscrollable && (*i)->isLayerScrollable(this)) {
Chris@127 1003 scrollables.push_back(*i);
Chris@127 1004 } else {
Chris@127 1005 metUnscrollable = true;
Chris@127 1006 }
Chris@127 1007 }
Chris@127 1008
Chris@127 1009 if (testChanged && scrollables != m_lastScrollableBackLayers) {
Chris@127 1010 m_lastScrollableBackLayers = scrollables;
Chris@127 1011 changed = true;
Chris@127 1012 }
Chris@127 1013 return scrollables;
Chris@127 1014 }
Chris@127 1015
Chris@127 1016 View::LayerList
Chris@127 1017 View::getNonScrollableFrontLayers(bool testChanged, bool &changed) const
Chris@127 1018 {
Chris@127 1019 changed = false;
Chris@127 1020 LayerList nonScrollables;
Chris@127 1021
Chris@127 1022 // Everything in front of the first non-scrollable from the back
Chris@127 1023 // should also be considered non-scrollable
Chris@127 1024
Chris@127 1025 bool started = false;
Chris@127 1026
Chris@127 1027 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1028 if ((*i)->isLayerDormant(this)) continue;
Chris@127 1029 if (!started && (*i)->isLayerScrollable(this)) {
Chris@127 1030 continue;
Chris@127 1031 }
Chris@127 1032 started = true;
Chris@127 1033 if ((*i)->isLayerOpaque()) {
Chris@127 1034 // You can't see anything behind an opaque layer!
Chris@127 1035 nonScrollables.clear();
Chris@127 1036 }
Chris@127 1037 nonScrollables.push_back(*i);
Chris@127 1038 }
Chris@127 1039
Chris@127 1040 if (testChanged && nonScrollables != m_lastNonScrollableBackLayers) {
Chris@127 1041 m_lastNonScrollableBackLayers = nonScrollables;
Chris@127 1042 changed = true;
Chris@127 1043 }
Chris@127 1044
Chris@127 1045 return nonScrollables;
Chris@127 1046 }
Chris@127 1047
Chris@127 1048 size_t
Chris@127 1049 View::getZoomConstraintBlockSize(size_t blockSize,
Chris@127 1050 ZoomConstraint::RoundingDirection dir)
Chris@127 1051 const
Chris@127 1052 {
Chris@127 1053 size_t candidate = blockSize;
Chris@127 1054 bool haveCandidate = false;
Chris@127 1055
Chris@127 1056 PowerOfSqrtTwoZoomConstraint defaultZoomConstraint;
Chris@127 1057
Chris@127 1058 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@127 1059
Chris@127 1060 const ZoomConstraint *zoomConstraint = (*i)->getZoomConstraint();
Chris@127 1061 if (!zoomConstraint) zoomConstraint = &defaultZoomConstraint;
Chris@127 1062
Chris@127 1063 size_t thisBlockSize =
Chris@127 1064 zoomConstraint->getNearestBlockSize(blockSize, dir);
Chris@127 1065
Chris@127 1066 // Go for the block size that's furthest from the one
Chris@127 1067 // passed in. Most of the time, that's what we want.
Chris@127 1068 if (!haveCandidate ||
Chris@127 1069 (thisBlockSize > blockSize && thisBlockSize > candidate) ||
Chris@127 1070 (thisBlockSize < blockSize && thisBlockSize < candidate)) {
Chris@127 1071 candidate = thisBlockSize;
Chris@127 1072 haveCandidate = true;
Chris@127 1073 }
Chris@127 1074 }
Chris@127 1075
Chris@127 1076 return candidate;
Chris@127 1077 }
Chris@127 1078
Chris@183 1079 bool
Chris@183 1080 View::areLayerColoursSignificant() const
Chris@183 1081 {
Chris@183 1082 for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
Chris@183 1083 if ((*i)->isLayerColourSignificant()) return true;
Chris@183 1084 if ((*i)->isLayerOpaque()) break;
Chris@183 1085 }
Chris@183 1086 return false;
Chris@183 1087 }
Chris@183 1088
Chris@217 1089 bool
Chris@217 1090 View::hasTopLayerTimeXAxis() const
Chris@217 1091 {
Chris@217 1092 LayerList::const_iterator i = m_layers.end();
Chris@217 1093 if (i == m_layers.begin()) return false;
Chris@217 1094 --i;
Chris@217 1095 return (*i)->hasTimeXAxis();
Chris@217 1096 }
Chris@217 1097
Chris@127 1098 void
Chris@127 1099 View::zoom(bool in)
Chris@127 1100 {
Chris@127 1101 int newZoomLevel = m_zoomLevel;
Chris@127 1102
Chris@127 1103 if (in) {
Chris@127 1104 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel - 1,
Chris@127 1105 ZoomConstraint::RoundDown);
Chris@127 1106 } else {
Chris@127 1107 newZoomLevel = getZoomConstraintBlockSize(newZoomLevel + 1,
Chris@127 1108 ZoomConstraint::RoundUp);
Chris@127 1109 }
Chris@127 1110
Chris@127 1111 if (newZoomLevel != m_zoomLevel) {
Chris@127 1112 setZoomLevel(newZoomLevel);
Chris@127 1113 }
Chris@127 1114 }
Chris@127 1115
Chris@127 1116 void
Chris@127 1117 View::scroll(bool right, bool lots)
Chris@127 1118 {
Chris@127 1119 long delta;
Chris@127 1120 if (lots) {
Chris@127 1121 delta = (getEndFrame() - getStartFrame()) / 2;
Chris@127 1122 } else {
Chris@127 1123 delta = (getEndFrame() - getStartFrame()) / 20;
Chris@127 1124 }
Chris@127 1125 if (right) delta = -delta;
Chris@127 1126
Chris@127 1127 if (int(m_centreFrame) < delta) {
Chris@127 1128 setCentreFrame(0);
Chris@127 1129 } else if (int(m_centreFrame) - delta >= int(getModelsEndFrame())) {
Chris@127 1130 setCentreFrame(getModelsEndFrame());
Chris@127 1131 } else {
Chris@127 1132 setCentreFrame(m_centreFrame - delta);
Chris@127 1133 }
Chris@127 1134 }
Chris@127 1135
Chris@127 1136 void
Chris@127 1137 View::checkProgress(void *object)
Chris@127 1138 {
Chris@127 1139 if (!m_showProgress) return;
Chris@127 1140
Chris@127 1141 int ph = height();
Chris@127 1142
Chris@127 1143 for (ProgressMap::const_iterator i = m_progressBars.begin();
Chris@127 1144 i != m_progressBars.end(); ++i) {
Chris@127 1145
Chris@127 1146 if (i->first == object) {
Chris@127 1147
Chris@127 1148 int completion = i->first->getCompletion(this);
Chris@127 1149
Chris@127 1150 if (completion >= 100) {
Chris@127 1151
Chris@127 1152 i->second->hide();
Chris@127 1153
Chris@127 1154 } else {
Chris@127 1155
Chris@127 1156 i->second->setText(i->first->getPropertyContainerName());
Chris@132 1157
Chris@127 1158 i->second->setValue(completion);
Chris@127 1159 i->second->move(0, ph - i->second->height());
Chris@127 1160
Chris@127 1161 i->second->show();
Chris@127 1162 i->second->update();
Chris@127 1163
Chris@127 1164 ph -= i->second->height();
Chris@127 1165 }
Chris@127 1166 } else {
Chris@127 1167 if (i->second->isVisible()) {
Chris@127 1168 ph -= i->second->height();
Chris@127 1169 }
Chris@127 1170 }
Chris@127 1171 }
Chris@127 1172 }
Chris@127 1173
Chris@127 1174 void
Chris@127 1175 View::paintEvent(QPaintEvent *e)
Chris@127 1176 {
Chris@127 1177 // Profiler prof("View::paintEvent", false);
Chris@127 1178 // std::cerr << "View::paintEvent" << std::endl;
Chris@127 1179
Chris@127 1180 if (m_layers.empty()) {
Chris@127 1181 QFrame::paintEvent(e);
Chris@127 1182 return;
Chris@127 1183 }
Chris@127 1184
Chris@127 1185 // ensure our constraints are met
Chris@137 1186
Chris@137 1187 /*!!! Should we do this only if we have layers that can't support other
Chris@137 1188 zoom levels?
Chris@137 1189
Chris@127 1190 m_zoomLevel = getZoomConstraintBlockSize(m_zoomLevel,
Chris@127 1191 ZoomConstraint::RoundUp);
Chris@137 1192 */
Chris@127 1193
Chris@127 1194 QPainter paint;
Chris@127 1195 bool repaintCache = false;
Chris@127 1196 bool paintedCacheRect = false;
Chris@127 1197
Chris@127 1198 QRect cacheRect(rect());
Chris@127 1199
Chris@127 1200 if (e) {
Chris@127 1201 cacheRect &= e->rect();
Chris@127 1202 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1203 std::cerr << "paint rect " << cacheRect.width() << "x" << cacheRect.height()
Chris@127 1204 << ", my rect " << width() << "x" << height() << std::endl;
Chris@127 1205 #endif
Chris@127 1206 }
Chris@127 1207
Chris@127 1208 QRect nonCacheRect(cacheRect);
Chris@127 1209
Chris@127 1210 // If not all layers are scrollable, but some of the back layers
Chris@127 1211 // are, we should store only those in the cache.
Chris@127 1212
Chris@127 1213 bool layersChanged = false;
Chris@127 1214 LayerList scrollables = getScrollableBackLayers(true, layersChanged);
Chris@127 1215 LayerList nonScrollables = getNonScrollableFrontLayers(true, layersChanged);
Chris@127 1216 bool selectionCacheable = nonScrollables.empty();
Chris@127 1217 bool haveSelections = m_manager && !m_manager->getSelections().empty();
Chris@127 1218 bool selectionDrawn = false;
Chris@127 1219
Chris@127 1220 // If all the non-scrollable layers are non-opaque, then we draw
Chris@127 1221 // the selection rectangle behind them and cache it. If any are
Chris@127 1222 // opaque, however, we can't cache.
Chris@127 1223 //
Chris@127 1224 if (!selectionCacheable) {
Chris@127 1225 selectionCacheable = true;
Chris@127 1226 for (LayerList::const_iterator i = nonScrollables.begin();
Chris@127 1227 i != nonScrollables.end(); ++i) {
Chris@127 1228 if ((*i)->isLayerOpaque()) {
Chris@127 1229 selectionCacheable = false;
Chris@127 1230 break;
Chris@127 1231 }
Chris@127 1232 }
Chris@127 1233 }
Chris@127 1234
Chris@127 1235 if (selectionCacheable) {
Chris@127 1236 QPoint localPos;
Chris@127 1237 bool closeToLeft, closeToRight;
Chris@127 1238 if (shouldIlluminateLocalSelection(localPos, closeToLeft, closeToRight)) {
Chris@127 1239 selectionCacheable = false;
Chris@127 1240 }
Chris@127 1241 }
Chris@127 1242
Chris@127 1243 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1244 std::cerr << "View(" << this << ")::paintEvent: have " << scrollables.size()
Chris@127 1245 << " scrollable back layers and " << nonScrollables.size()
Chris@127 1246 << " non-scrollable front layers" << std::endl;
Chris@127 1247 std::cerr << "haveSelections " << haveSelections << ", selectionCacheable "
Chris@127 1248 << selectionCacheable << ", m_selectionCached " << m_selectionCached << std::endl;
Chris@127 1249 #endif
Chris@127 1250
Chris@127 1251 if (layersChanged || scrollables.empty() ||
Chris@127 1252 (haveSelections && (selectionCacheable != m_selectionCached))) {
Chris@127 1253 delete m_cache;
Chris@127 1254 m_cache = 0;
Chris@127 1255 m_selectionCached = false;
Chris@127 1256 }
Chris@127 1257
Chris@127 1258 if (!scrollables.empty()) {
Chris@127 1259 if (!m_cache ||
Chris@127 1260 m_cacheZoomLevel != m_zoomLevel ||
Chris@127 1261 width() != m_cache->width() ||
Chris@127 1262 height() != m_cache->height()) {
Chris@127 1263
Chris@127 1264 // cache is not valid
Chris@127 1265
Chris@127 1266 if (cacheRect.width() < width()/10) {
Chris@127 1267 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1268 std::cerr << "View(" << this << ")::paintEvent: small repaint, not bothering to recreate cache" << std::endl;
Chris@127 1269 #endif
Chris@127 1270 } else {
Chris@127 1271 delete m_cache;
Chris@127 1272 m_cache = new QPixmap(width(), height());
Chris@127 1273 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1274 std::cerr << "View(" << this << ")::paintEvent: recreated cache" << std::endl;
Chris@127 1275 #endif
Chris@127 1276 cacheRect = rect();
Chris@127 1277 repaintCache = true;
Chris@127 1278 }
Chris@127 1279
Chris@127 1280 } else if (m_cacheCentreFrame != m_centreFrame) {
Chris@127 1281
Chris@127 1282 long dx =
Chris@127 1283 getXForFrame(m_cacheCentreFrame) -
Chris@127 1284 getXForFrame(m_centreFrame);
Chris@127 1285
Chris@127 1286 if (dx > -width() && dx < width()) {
Chris@127 1287 #if defined(Q_WS_WIN32) || defined(Q_WS_MAC)
Chris@127 1288 // Copying a pixmap to itself doesn't work properly on Windows
Chris@127 1289 // or Mac (it only works when moving in one direction)
Chris@127 1290 static QPixmap *tmpPixmap = 0;
Chris@127 1291 if (!tmpPixmap ||
Chris@127 1292 tmpPixmap->width() != width() ||
Chris@127 1293 tmpPixmap->height() != height()) {
Chris@127 1294 delete tmpPixmap;
Chris@127 1295 tmpPixmap = new QPixmap(width(), height());
Chris@127 1296 }
Chris@127 1297 paint.begin(tmpPixmap);
Chris@127 1298 paint.drawPixmap(0, 0, *m_cache);
Chris@127 1299 paint.end();
Chris@127 1300 paint.begin(m_cache);
Chris@127 1301 paint.drawPixmap(dx, 0, *tmpPixmap);
Chris@127 1302 paint.end();
Chris@127 1303 #else
Chris@127 1304 // But it seems to be fine on X11
Chris@127 1305 paint.begin(m_cache);
Chris@127 1306 paint.drawPixmap(dx, 0, *m_cache);
Chris@127 1307 paint.end();
Chris@127 1308 #endif
Chris@127 1309
Chris@127 1310 if (dx < 0) {
Chris@127 1311 cacheRect = QRect(width() + dx, 0, -dx, height());
Chris@127 1312 } else {
Chris@127 1313 cacheRect = QRect(0, 0, dx, height());
Chris@127 1314 }
Chris@127 1315 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1316 std::cerr << "View(" << this << ")::paintEvent: scrolled cache by " << dx << std::endl;
Chris@127 1317 #endif
Chris@127 1318 } else {
Chris@127 1319 cacheRect = rect();
Chris@127 1320 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1321 std::cerr << "View(" << this << ")::paintEvent: scrolling too far" << std::endl;
Chris@127 1322 #endif
Chris@127 1323 }
Chris@127 1324 repaintCache = true;
Chris@127 1325
Chris@127 1326 } else {
Chris@127 1327 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1328 std::cerr << "View(" << this << ")::paintEvent: cache is good" << std::endl;
Chris@127 1329 #endif
Chris@127 1330 paint.begin(this);
Chris@127 1331 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@127 1332 paint.end();
Chris@127 1333 QFrame::paintEvent(e);
Chris@127 1334 paintedCacheRect = true;
Chris@127 1335 }
Chris@127 1336
Chris@127 1337 m_cacheCentreFrame = m_centreFrame;
Chris@127 1338 m_cacheZoomLevel = m_zoomLevel;
Chris@127 1339 }
Chris@127 1340
Chris@127 1341 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1342 // std::cerr << "View(" << this << ")::paintEvent: cacheRect " << cacheRect << ", nonCacheRect " << (nonCacheRect | cacheRect) << ", repaintCache " << repaintCache << ", paintedCacheRect " << paintedCacheRect << std::endl;
Chris@127 1343 #endif
Chris@127 1344
Chris@127 1345 // Scrollable (cacheable) items first
Chris@127 1346
Chris@127 1347 if (!paintedCacheRect) {
Chris@127 1348
Chris@127 1349 if (repaintCache) paint.begin(m_cache);
Chris@127 1350 else paint.begin(this);
Chris@127 1351
Chris@127 1352 paint.setClipRect(cacheRect);
Chris@127 1353
Chris@127 1354 if (hasLightBackground()) {
Chris@127 1355 paint.setPen(Qt::white);
Chris@127 1356 paint.setBrush(Qt::white);
Chris@127 1357 } else {
Chris@127 1358 paint.setPen(Qt::black);
Chris@127 1359 paint.setBrush(Qt::black);
Chris@127 1360 }
Chris@127 1361 paint.drawRect(cacheRect);
Chris@127 1362
Chris@127 1363 paint.setPen(Qt::black);
Chris@127 1364 paint.setBrush(Qt::NoBrush);
Chris@127 1365
Chris@127 1366 for (LayerList::iterator i = scrollables.begin(); i != scrollables.end(); ++i) {
Chris@127 1367 paint.setRenderHint(QPainter::Antialiasing, false);
Chris@127 1368 paint.save();
Chris@127 1369 (*i)->paint(this, paint, cacheRect);
Chris@127 1370 paint.restore();
Chris@127 1371 }
Chris@127 1372
Chris@127 1373 if (haveSelections && selectionCacheable) {
Chris@127 1374 drawSelections(paint);
Chris@127 1375 m_selectionCached = repaintCache;
Chris@127 1376 selectionDrawn = true;
Chris@127 1377 }
Chris@127 1378
Chris@127 1379 paint.end();
Chris@127 1380
Chris@127 1381 if (repaintCache) {
Chris@127 1382 cacheRect |= (e ? e->rect() : rect());
Chris@127 1383 paint.begin(this);
Chris@127 1384 paint.drawPixmap(cacheRect, *m_cache, cacheRect);
Chris@127 1385 paint.end();
Chris@127 1386 }
Chris@127 1387 }
Chris@127 1388
Chris@127 1389 // Now non-cacheable items. We always need to redraw the
Chris@127 1390 // non-cacheable items across at least the area we drew of the
Chris@127 1391 // cacheable items.
Chris@127 1392
Chris@127 1393 nonCacheRect |= cacheRect;
Chris@127 1394
Chris@127 1395 paint.begin(this);
Chris@127 1396 paint.setClipRect(nonCacheRect);
Chris@127 1397
Chris@127 1398 if (scrollables.empty()) {
Chris@127 1399 if (hasLightBackground()) {
Chris@127 1400 paint.setPen(Qt::white);
Chris@127 1401 paint.setBrush(Qt::white);
Chris@127 1402 } else {
Chris@127 1403 paint.setPen(Qt::black);
Chris@127 1404 paint.setBrush(Qt::black);
Chris@127 1405 }
Chris@127 1406 paint.drawRect(nonCacheRect);
Chris@127 1407 }
Chris@127 1408
Chris@127 1409 paint.setPen(Qt::black);
Chris@127 1410 paint.setBrush(Qt::NoBrush);
Chris@127 1411
Chris@127 1412 for (LayerList::iterator i = nonScrollables.begin(); i != nonScrollables.end(); ++i) {
Chris@127 1413 // Profiler profiler2("View::paintEvent non-cacheable");
Chris@127 1414 (*i)->paint(this, paint, nonCacheRect);
Chris@127 1415 }
Chris@127 1416
Chris@127 1417 paint.end();
Chris@127 1418
Chris@127 1419 paint.begin(this);
Chris@127 1420 if (e) paint.setClipRect(e->rect());
Chris@127 1421 if (!m_selectionCached) {
Chris@127 1422 drawSelections(paint);
Chris@127 1423 }
Chris@127 1424 paint.end();
Chris@127 1425
Chris@211 1426 bool showPlayPointer = true;
Chris@211 1427 if (m_followPlay == PlaybackScrollContinuous) {
Chris@211 1428 showPlayPointer = false;
Chris@211 1429 } else if (long(m_playPointerFrame) <= getStartFrame() ||
Chris@211 1430 m_playPointerFrame >= getEndFrame()) {
Chris@211 1431 showPlayPointer = false;
Chris@211 1432 } else if (m_manager && !m_manager->isPlaying()) {
Chris@211 1433 if (m_playPointerFrame == getCentreFrame() &&
Chris@211 1434 m_followPlay != PlaybackIgnore) {
Chris@211 1435 showPlayPointer = false;
Chris@211 1436 }
Chris@211 1437 }
Chris@211 1438
Chris@211 1439 if (showPlayPointer) {
Chris@127 1440
Chris@127 1441 paint.begin(this);
Chris@127 1442
Chris@211 1443 int playx = getXForFrame(m_playPointerFrame);
Chris@211 1444
Chris@211 1445 paint.setPen(Qt::black);
Chris@211 1446 paint.drawLine(playx - 1, 0, playx - 1, height() - 1);
Chris@211 1447 paint.drawLine(playx + 1, 0, playx + 1, height() - 1);
Chris@211 1448 paint.drawPoint(playx, 0);
Chris@211 1449 paint.drawPoint(playx, height() - 1);
Chris@211 1450 paint.setPen(Qt::white);
Chris@211 1451 paint.drawLine(playx, 1, playx, height() - 2);
Chris@127 1452
Chris@127 1453 paint.end();
Chris@127 1454 }
Chris@127 1455
Chris@127 1456 QFrame::paintEvent(e);
Chris@127 1457 }
Chris@127 1458
Chris@127 1459 void
Chris@127 1460 View::drawSelections(QPainter &paint)
Chris@127 1461 {
Chris@217 1462 if (!hasTopLayerTimeXAxis()) return;
Chris@217 1463
Chris@127 1464 MultiSelection::SelectionList selections;
Chris@127 1465
Chris@127 1466 if (m_manager) {
Chris@127 1467 selections = m_manager->getSelections();
Chris@127 1468 if (m_manager->haveInProgressSelection()) {
Chris@127 1469 bool exclusive;
Chris@127 1470 Selection inProgressSelection =
Chris@127 1471 m_manager->getInProgressSelection(exclusive);
Chris@127 1472 if (exclusive) selections.clear();
Chris@127 1473 selections.insert(inProgressSelection);
Chris@127 1474 }
Chris@127 1475 }
Chris@127 1476
Chris@127 1477 paint.save();
Chris@183 1478
Chris@183 1479 bool translucent = !areLayerColoursSignificant();
Chris@183 1480
Chris@183 1481 if (translucent) {
Chris@183 1482 paint.setBrush(QColor(150, 150, 255, 80));
Chris@183 1483 } else {
Chris@183 1484 paint.setBrush(Qt::NoBrush);
Chris@183 1485 }
Chris@127 1486
Chris@127 1487 int sampleRate = getModelsSampleRate();
Chris@127 1488
Chris@127 1489 QPoint localPos;
Chris@127 1490 long illuminateFrame = -1;
Chris@127 1491 bool closeToLeft, closeToRight;
Chris@127 1492
Chris@127 1493 if (shouldIlluminateLocalSelection(localPos, closeToLeft, closeToRight)) {
Chris@127 1494 illuminateFrame = getFrameForX(localPos.x());
Chris@127 1495 }
Chris@127 1496
Chris@127 1497 const QFontMetrics &metrics = paint.fontMetrics();
Chris@127 1498
Chris@127 1499 for (MultiSelection::SelectionList::iterator i = selections.begin();
Chris@127 1500 i != selections.end(); ++i) {
Chris@127 1501
Chris@127 1502 int p0 = getXForFrame(i->getStartFrame());
Chris@127 1503 int p1 = getXForFrame(i->getEndFrame());
Chris@127 1504
Chris@127 1505 if (p1 < 0 || p0 > width()) continue;
Chris@127 1506
Chris@127 1507 #ifdef DEBUG_VIEW_WIDGET_PAINT
Chris@127 1508 std::cerr << "View::drawSelections: " << p0 << ",-1 [" << (p1-p0) << "x" << (height()+1) << "]" << std::endl;
Chris@127 1509 #endif
Chris@127 1510
Chris@127 1511 bool illuminateThis =
Chris@127 1512 (illuminateFrame >= 0 && i->contains(illuminateFrame));
Chris@127 1513
Chris@127 1514 paint.setPen(QColor(150, 150, 255));
Chris@183 1515
Chris@183 1516 if (translucent && shouldLabelSelections()) {
Chris@183 1517 paint.drawRect(p0, -1, p1 - p0, height() + 1);
Chris@183 1518 } else {
Chris@183 1519 // Make the top & bottom lines of the box visible if we
Chris@183 1520 // are lacking some of the other visual cues. There's no
Chris@183 1521 // particular logic to this, it's just a question of what
Chris@183 1522 // I happen to think looks nice.
Chris@183 1523 paint.drawRect(p0, 0, p1 - p0, height() - 1);
Chris@183 1524 }
Chris@127 1525
Chris@127 1526 if (illuminateThis) {
Chris@127 1527 paint.save();
Chris@127 1528 if (hasLightBackground()) {
Chris@127 1529 paint.setPen(QPen(Qt::black, 2));
Chris@127 1530 } else {
Chris@127 1531 paint.setPen(QPen(Qt::white, 2));
Chris@127 1532 }
Chris@127 1533 if (closeToLeft) {
Chris@127 1534 paint.drawLine(p0, 1, p1, 1);
Chris@127 1535 paint.drawLine(p0, 0, p0, height());
Chris@127 1536 paint.drawLine(p0, height() - 1, p1, height() - 1);
Chris@127 1537 } else if (closeToRight) {
Chris@127 1538 paint.drawLine(p0, 1, p1, 1);
Chris@127 1539 paint.drawLine(p1, 0, p1, height());
Chris@127 1540 paint.drawLine(p0, height() - 1, p1, height() - 1);
Chris@127 1541 } else {
Chris@127 1542 paint.setBrush(Qt::NoBrush);
Chris@127 1543 paint.drawRect(p0, 1, p1 - p0, height() - 2);
Chris@127 1544 }
Chris@127 1545 paint.restore();
Chris@127 1546 }
Chris@127 1547
Chris@127 1548 if (sampleRate && shouldLabelSelections() && m_manager &&
Chris@189 1549 m_manager->shouldShowSelectionExtents()) {
Chris@127 1550
Chris@127 1551 QString startText = QString("%1 / %2")
Chris@127 1552 .arg(QString::fromStdString
Chris@127 1553 (RealTime::frame2RealTime
Chris@127 1554 (i->getStartFrame(), sampleRate).toText(true)))
Chris@127 1555 .arg(i->getStartFrame());
Chris@127 1556
Chris@127 1557 QString endText = QString(" %1 / %2")
Chris@127 1558 .arg(QString::fromStdString
Chris@127 1559 (RealTime::frame2RealTime
Chris@127 1560 (i->getEndFrame(), sampleRate).toText(true)))
Chris@127 1561 .arg(i->getEndFrame());
Chris@127 1562
Chris@127 1563 QString durationText = QString("(%1 / %2) ")
Chris@127 1564 .arg(QString::fromStdString
Chris@127 1565 (RealTime::frame2RealTime
Chris@127 1566 (i->getEndFrame() - i->getStartFrame(), sampleRate)
Chris@127 1567 .toText(true)))
Chris@127 1568 .arg(i->getEndFrame() - i->getStartFrame());
Chris@127 1569
Chris@127 1570 int sw = metrics.width(startText),
Chris@127 1571 ew = metrics.width(endText),
Chris@127 1572 dw = metrics.width(durationText);
Chris@127 1573
Chris@127 1574 int sy = metrics.ascent() + metrics.height() + 4;
Chris@127 1575 int ey = sy;
Chris@127 1576 int dy = sy + metrics.height();
Chris@127 1577
Chris@127 1578 int sx = p0 + 2;
Chris@127 1579 int ex = sx;
Chris@127 1580 int dx = sx;
Chris@127 1581
Chris@127 1582 if (sw + ew > (p1 - p0)) {
Chris@127 1583 ey += metrics.height();
Chris@127 1584 dy += metrics.height();
Chris@127 1585 }
Chris@127 1586
Chris@127 1587 if (ew < (p1 - p0)) {
Chris@127 1588 ex = p1 - 2 - ew;
Chris@127 1589 }
Chris@127 1590
Chris@127 1591 if (dw < (p1 - p0)) {
Chris@127 1592 dx = p1 - 2 - dw;
Chris@127 1593 }
Chris@127 1594
Chris@127 1595 paint.drawText(sx, sy, startText);
Chris@127 1596 paint.drawText(ex, ey, endText);
Chris@127 1597 paint.drawText(dx, dy, durationText);
Chris@127 1598 }
Chris@127 1599 }
Chris@127 1600
Chris@127 1601 paint.restore();
Chris@127 1602 }
Chris@127 1603
Chris@127 1604 QString
Chris@127 1605 View::toXmlString(QString indent, QString extraAttributes) const
Chris@127 1606 {
Chris@127 1607 QString s;
Chris@127 1608
Chris@127 1609 s += indent;
Chris@127 1610
Chris@127 1611 s += QString("<view "
Chris@127 1612 "centre=\"%1\" "
Chris@127 1613 "zoom=\"%2\" "
Chris@127 1614 "followPan=\"%3\" "
Chris@127 1615 "followZoom=\"%4\" "
Chris@127 1616 "tracking=\"%5\" "
Chris@127 1617 "light=\"%6\" %7>\n")
Chris@127 1618 .arg(m_centreFrame)
Chris@127 1619 .arg(m_zoomLevel)
Chris@127 1620 .arg(m_followPan)
Chris@127 1621 .arg(m_followZoom)
Chris@127 1622 .arg(m_followPlay == PlaybackScrollContinuous ? "scroll" :
Chris@127 1623 m_followPlay == PlaybackScrollPage ? "page" : "ignore")
Chris@127 1624 .arg(m_lightBackground)
Chris@127 1625 .arg(extraAttributes);
Chris@127 1626
Chris@127 1627 for (size_t i = 0; i < m_layers.size(); ++i) {
Chris@186 1628 bool visible = !m_layers[i]->isLayerDormant(this);
Chris@186 1629 s += m_layers[i]->toXmlString(indent + " ",
Chris@186 1630 QString("visible=\"%1\"")
Chris@186 1631 .arg(visible ? "true" : "false"));
Chris@127 1632 }
Chris@127 1633
Chris@127 1634 s += indent + "</view>\n";
Chris@127 1635
Chris@127 1636 return s;
Chris@127 1637 }
Chris@127 1638
Chris@127 1639 ViewPropertyContainer::ViewPropertyContainer(View *v) :
Chris@127 1640 m_v(v)
Chris@127 1641 {
Chris@127 1642 connect(m_v, SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
Chris@127 1643 this, SIGNAL(propertyChanged(PropertyContainer::PropertyName)));
Chris@127 1644 }
Chris@127 1645