1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Sonic Visualiser
An audio file viewer and annotation editor.
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 QMUL.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#include "Thumbwheel.h"
#include "base/RangeMapper.h"
#include "base/Profiler.h"
#include <QMouseEvent>
#include <QPaintEvent>
#include <QWheelEvent>
#include <QInputDialog>
#include <QPainter>
#include <QPainterPath>
#include <QMenu>
#include "MenuTitle.h"
#include <cmath>
#include <iostream>
namespace sv {
Thumbwheel::Thumbwheel(Qt::Orientation orientation,
QWidget *parent) :
QWidget(parent),
m_min(0),
m_max(100),
m_default(50),
m_value(50),
m_mappedValue(50),
m_noMappedUpdate(false),
m_rotation(0.5),
m_orientation(orientation),
m_speed(1.0),
m_tracking(true),
m_showScale(true),
m_clicked(false),
m_atDefault(true),
m_clickRotation(m_rotation),
m_showTooltip(true),
m_provideContextMenu(true),
m_lastContextMenu(nullptr),
m_rangeMapper(nullptr)
{
setContextMenuPolicy(Qt::CustomContextMenu);
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)),
this, SLOT(contextMenuRequested(const QPoint &)));
}
Thumbwheel::~Thumbwheel()
{
delete m_rangeMapper;
delete m_lastContextMenu;
}
void
Thumbwheel::contextMenuRequested(const QPoint &pos)
{
if (!m_provideContextMenu) {
return;
}
delete m_lastContextMenu;
m_lastContextMenu = new QMenu;
auto m = m_lastContextMenu;
if (m_title == "") {
MenuTitle::addTitle(m, tr("Thumbwheel"));
} else {
MenuTitle::addTitle(m, m_title);
}
m->addAction(tr("&Edit..."), this, SLOT(edit()));
m->addAction(tr("&Reset to Default"), this, SLOT(resetToDefault()));
m->popup(mapToGlobal(pos));
}
void
Thumbwheel::setRangeMapper(RangeMapper *mapper)
{
if (m_rangeMapper == mapper) return;
if (!m_rangeMapper && mapper) {
connect(this, SIGNAL(valueChanged(int)),
this, SLOT(updateMappedValue(int)));
}
delete m_rangeMapper;
m_rangeMapper = mapper;
updateMappedValue(getValue());
}
void
Thumbwheel::setShowToolTip(bool show)
{
m_showTooltip = show;
m_noMappedUpdate = true;
updateMappedValue(getValue());
m_noMappedUpdate = false;
}
void
Thumbwheel::setProvideContextMenu(bool provide)
{
m_provideContextMenu = provide;
}
void
Thumbwheel::setMinimumValue(int min)
{
if (m_min == min) return;
m_min = min;
if (m_max <= m_min) m_max = m_min + 1;
if (m_value < m_min) m_value = m_min;
if (m_value > m_max) m_value = m_max;
m_rotation = float(m_value - m_min) / float(m_max - m_min);
update();
}
int
Thumbwheel::getMinimumValue() const
{
return m_min;
}
void
Thumbwheel::setMaximumValue(int max)
{
if (m_max == max) return;
m_max = max;
if (m_min >= m_max) m_min = m_max - 1;
if (m_value < m_min) m_value = m_min;
if (m_value > m_max) m_value = m_max;
m_rotation = float(m_value - m_min) / float(m_max - m_min);
update();
}
int
Thumbwheel::getMaximumValue() const
{
return m_max;
}
void
Thumbwheel::setDefaultValue(int deft)
{
if (m_default == deft) return;
m_default = deft;
if (m_atDefault) {
setValue(m_default);
m_atDefault = true; // setValue unsets this
m_cache = QImage();
emit valueChanged(getValue());
}
}
void
Thumbwheel::setMappedValue(double mappedValue)
{
if (m_rangeMapper) {
int newValue = m_rangeMapper->getPositionForValue(mappedValue);
bool changed = (m_mappedValue != mappedValue);
m_mappedValue = mappedValue;
m_noMappedUpdate = true;
// SVDEBUG << "Thumbwheel::setMappedValue(" << mappedValue << "): new value is " << newValue << " (visible " << isVisible() << ")" << endl;
if (newValue != getValue()) {
setValue(newValue);
changed = true;
m_cache = QImage();
}
if (changed) emit valueChanged(newValue);
m_noMappedUpdate = false;
} else {
int v = int(mappedValue);
if (v != getValue()) {
setValue(v);
m_cache = QImage();
emit valueChanged(v);
}
}
}
int
Thumbwheel::getDefaultValue() const
{
return m_default;
}
void
Thumbwheel::setValue(int value)
{
// SVDEBUG << "Thumbwheel::setValue(" << value << ") (from " << m_value
// << ", rotation " << m_rotation << ")" << " (visible " << isVisible() << ")" << endl;
if (m_value != value) {
m_atDefault = false;
if (value < m_min) value = m_min;
if (value > m_max) value = m_max;
m_value = value;
}
m_rotation = float(m_value - m_min) / float(m_max - m_min);
m_cache = QImage();
if (isVisible()) {
update();
updateTitle();
}
}
void
Thumbwheel::resetToDefault()
{
if (m_default == m_value) return;
setValue(m_default);
m_atDefault = true;
m_cache = QImage();
emit valueChanged(getValue());
}
int
Thumbwheel::getValue() const
{
return m_value;
}
double
Thumbwheel::getMappedValue() const
{
if (m_rangeMapper) {
// SVDEBUG << "Thumbwheel::getMappedValue(): value = " << getValue() << ", mappedValue = " << m_mappedValue << endl;
return m_mappedValue;
}
return getValue();
}
void
Thumbwheel::updateMappedValue(int value)
{
if (!m_noMappedUpdate) {
if (m_rangeMapper) {
m_mappedValue = m_rangeMapper->getValueForPosition(value);
} else {
m_mappedValue = value;
}
}
updateTitle();
}
void
Thumbwheel::updateTitle()
{
QString name = objectName();
QString unit = "";
QString text;
double mappedValue = getMappedValue();
if (m_rangeMapper) unit = m_rangeMapper->getUnit();
if (name != "") {
text = tr("%1: %2%3").arg(name).arg(mappedValue).arg(unit);
} else {
text = tr("%2%3").arg(mappedValue).arg(unit);
}
m_title = text;
if (m_showTooltip) {
setToolTip(text);
} else {
setToolTip("");
}
}
void
Thumbwheel::scroll(bool up)
{
int step = int(lrintf(m_speed));
if (step == 0) step = 1;
if (up) {
setValue(m_value + step);
} else {
setValue(m_value - step);
}
emit valueChanged(getValue());
}
void
Thumbwheel::setSpeed(float speed)
{
m_speed = speed;
}
float
Thumbwheel::getSpeed() const
{
return m_speed;
}
void
Thumbwheel::setTracking(bool tracking)
{
m_tracking = tracking;
}
bool
Thumbwheel::getTracking() const
{
return m_tracking;
}
void
Thumbwheel::setShowScale(bool showScale)
{
m_showScale = showScale;
}
bool
Thumbwheel::getShowScale() const
{
return m_showScale;
}
void
Thumbwheel::enterEvent(QEnterEvent *)
{
emit mouseEntered();
}
void
Thumbwheel::leaveEvent(QEvent *)
{
emit mouseLeft();
}
void
Thumbwheel::mousePressEvent(QMouseEvent *e)
{
if (e->button() == Qt::MiddleButton ||
((e->button() == Qt::LeftButton) &&
(e->modifiers() & Qt::ControlModifier))) {
resetToDefault();
} else if (e->button() == Qt::LeftButton) {
m_clicked = true;
m_clickPos = e->pos();
m_clickRotation = m_rotation;
}
}
void
Thumbwheel::mouseDoubleClickEvent(QMouseEvent *mouseEvent)
{
//!!! needs a common base class with AudioDial (and Panner?)
if (mouseEvent->button() != Qt::LeftButton) {
return;
}
edit();
}
void
Thumbwheel::edit()
{
bool ok = false;
if (m_rangeMapper) {
double min = m_rangeMapper->getValueForPosition(m_min);
double max = m_rangeMapper->getValueForPosition(m_max);
if (min > max) {
double tmp = min;
min = max;
max = tmp;
}
QString unit = m_rangeMapper->getUnit();
QString text;
if (objectName() != "") {
if (unit != "") {
text = tr("New value for %1, from %2 to %3 %4:")
.arg(objectName()).arg(min).arg(max).arg(unit);
} else {
text = tr("New value for %1, from %2 to %3:")
.arg(objectName()).arg(min).arg(max);
}
} else {
if (unit != "") {
text = tr("Enter a new value from %1 to %2 %3:")
.arg(min).arg(max).arg(unit);
} else {
text = tr("Enter a new value from %1 to %2:")
.arg(min).arg(max);
}
}
double newValue = QInputDialog::getDouble
(this,
tr("Enter new value"),
text,
m_mappedValue,
min,
max,
4,
&ok);
if (ok) {
setMappedValue(newValue);
}
} else {
int newValue = QInputDialog::getInt
(this,
tr("Enter new value"),
tr("Enter a new value from %1 to %2:")
.arg(m_min).arg(m_max),
getValue(), m_min, m_max, 1, &ok);
if (ok) {
setValue(newValue);
}
}
}
void
Thumbwheel::mouseMoveEvent(QMouseEvent *e)
{
if (!m_clicked) return;
int dist = 0;
if (m_orientation == Qt::Horizontal) {
dist = e->position().x() - m_clickPos.x();
} else {
dist = e->position().y() - m_clickPos.y();
}
float rotation = m_clickRotation + (m_speed * float(dist)) / 100;
if (rotation < 0.f) rotation = 0.f;
if (rotation > 1.f) rotation = 1.f;
int value = int(lrintf(float(m_min) + float(m_max - m_min) * m_rotation));
if (value != m_value) {
setValue(value);
if (m_tracking) emit valueChanged(getValue());
m_rotation = rotation;
} else if (fabsf(rotation - m_rotation) > 0.001) {
m_rotation = rotation;
repaint();
}
}
void
Thumbwheel::mouseReleaseEvent(QMouseEvent *e)
{
if (!m_clicked) return;
bool reallyTracking = m_tracking;
m_tracking = true;
mouseMoveEvent(e);
m_tracking = reallyTracking;
m_clicked = false;
}
void
Thumbwheel::wheelEvent(QWheelEvent *e)
{
int delta = m_wheelCounter.count(e);
if (delta == 0) {
return;
}
setValue(m_value + delta);
emit valueChanged(getValue());
}
void
Thumbwheel::paintEvent(QPaintEvent *)
{
Profiler profiler("Thumbwheel::paintEvent");
if (!m_cache.isNull()) {
QPainter paint(this);
paint.drawImage(rect(), m_cache, m_cache.rect());
return;
}
Profiler profiler2("Thumbwheel::paintEvent (no cache)");
QSize imageSize = size() * devicePixelRatio();
m_cache = QImage(imageSize, QImage::Format_ARGB32);
m_cache.fill(Qt::transparent);
int w = m_cache.width();
int h = m_cache.height();
int bw = 3; // border width
QRect subclip;
if (m_orientation == Qt::Horizontal) {
subclip = QRect(bw, bw+1, w - bw*2, h - bw*2 - 2);
} else {
subclip = QRect(bw+1, bw, w - bw*2 - 2, h - bw*2);
}
QPainter paint(&m_cache);
paint.setClipRect(m_cache.rect());
paint.fillRect(subclip, palette().window().color());
paint.setRenderHint(QPainter::Antialiasing, true);
double w0 = 0.5;
double w1 = w - 0.5;
double h0 = 0.5;
double h1 = h - 0.5;
for (int i = bw-1; i >= 0; --i) {
int grey = (i + 1) * (256 / (bw + 1));
QColor fc = QColor(grey, grey, grey);
paint.setPen(fc);
QPainterPath path;
if (m_orientation == Qt::Horizontal) {
path.moveTo(w0 + i, h0 + i + 2);
path.quadTo(w/2, i * 1.25, w1 - i, h0 + i + 2);
path.lineTo(w1 - i, h1 - i - 2);
path.quadTo(w/2, h - i * 1.25, w0 + i, h1 - i - 2);
path.closeSubpath();
} else {
path.moveTo(w0 + i + 2, h0 + i);
path.quadTo(i * 1.25, h/2, w0 + i + 2, h1 - i);
path.lineTo(w1 - i - 2, h1 - i);
path.quadTo(w - i * 1.25, h/2, w1 - i - 2, h0 + i);
path.closeSubpath();
}
paint.drawPath(path);
}
paint.setClipRect(subclip);
double radians = m_rotation * 1.5f * M_PI;
// cerr << "value = " << m_value << ", min = " << m_min << ", max = " << m_max << ", rotation = " << rotation << endl;
int ww = (m_orientation == Qt::Horizontal ? w : h) - bw*2; // wheel width
// total number of notches on the entire wheel
int notches = 25;
// radius of the wheel including invisible part
int radius = int(ww / 2 + 2);
for (int i = 0; i < notches; ++i) {
double a0 = (2.0 * M_PI * i) / notches + radians;
double a1 = a0 + M_PI / (notches * 2);
double a2 = (2.0 * M_PI * (i + 1)) / notches + radians;
double depth = cos((a0 + a2) / 2);
if (depth < 0) continue;
double x0 = radius * sin(a0) + ww/2;
double x1 = radius * sin(a1) + ww/2;
double x2 = radius * sin(a2) + ww/2;
if (x2 < 0 || x0 > ww) continue;
if (x0 < 0) x0 = 0;
if (x2 > ww) x2 = ww;
x0 += bw;
x1 += bw;
x2 += bw;
int grey = int(lrint(120 * depth));
QColor fc = QColor(grey, grey, grey);
QColor oc = palette().highlight().color();
paint.setPen(fc);
if (m_showScale) {
paint.setBrush(oc);
double prop;
if (i >= notches / 4) {
prop = double(notches - (((i - double(notches) / 4.f) * 4.f) / 3.f))
/ notches;
} else {
prop = 0.f;
}
if (m_orientation == Qt::Horizontal) {
paint.drawRect(QRectF(x1, h - (h - bw*2) * prop - bw,
x2 - x1, h * prop));
} else {
paint.drawRect(QRectF(bw, x1, (w - bw*2) * prop, x2 - x1));
}
}
paint.setPen(fc);
paint.setBrush(palette().window().color());
if (m_orientation == Qt::Horizontal) {
paint.drawRect(QRectF(x0, bw, x1 - x0, h - bw*2));
} else {
paint.drawRect(QRectF(bw, x0, w - bw*2, x1 - x0));
}
}
QPainter paint2(this);
paint2.drawImage(rect(), m_cache, m_cache.rect());
}
QSize
Thumbwheel::sizeHint() const
{
if (m_orientation == Qt::Horizontal) {
return QSize(80, 12);
} else {
return QSize(12, 80);
}
}
} // end namespace sv
|