annotate view/Pane.cpp @ 728:596414d20ef0 tonioni

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