2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* Strawberry 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QSlider>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QRect>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QStyle>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QStyleOption>
|
|
|
|
#include <QtEvents>
|
|
|
|
|
|
|
|
#include "core/timeconstants.h"
|
|
|
|
#include "core/utilities.h"
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
|
|
|
# include "tracksliderpopup.h"
|
|
|
|
#endif
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "tracksliderslider.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
TrackSliderSlider::TrackSliderSlider(QWidget* parent)
|
|
|
|
: QSlider(parent),
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2018-02-27 18:06:05 +01:00
|
|
|
popup_(new TrackSliderPopup(window())),
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
2018-10-02 00:58:46 +02:00
|
|
|
mouse_hover_seconds_(0) {
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
setMouseTracking(true);
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2018-10-02 00:58:46 +02:00
|
|
|
popup_->hide();
|
2018-02-27 18:06:05 +01:00
|
|
|
connect(this, SIGNAL(valueChanged(int)), SLOT(UpdateDeltaTime()));
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::mousePressEvent(QMouseEvent* e) {
|
2018-05-01 00:41:33 +02:00
|
|
|
// QSlider asks QStyle which mouse button should do what (absolute move or page step).
|
|
|
|
// We force our own behaviour here because it makes more sense for a music player IMO.
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
Qt::MouseButton new_button = e->button();
|
|
|
|
if (e->button() == Qt::LeftButton) {
|
|
|
|
int abs_buttons = style()->styleHint(QStyle::SH_Slider_AbsoluteSetButtons);
|
|
|
|
if (abs_buttons & Qt::LeftButton)
|
|
|
|
new_button = Qt::LeftButton;
|
|
|
|
else if (abs_buttons & Qt::MidButton)
|
|
|
|
new_button = Qt::MidButton;
|
|
|
|
else if (abs_buttons & Qt::RightButton)
|
|
|
|
new_button = Qt::RightButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMouseEvent new_event(e->type(), e->pos(), new_button, new_button, e->modifiers());
|
|
|
|
QSlider::mousePressEvent(&new_event);
|
|
|
|
|
|
|
|
if (new_event.isAccepted())
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::mouseReleaseEvent(QMouseEvent* e) {
|
|
|
|
QSlider::mouseReleaseEvent(e);
|
2019-04-20 14:26:30 +02:00
|
|
|
if (e->button() == Qt::XButton1) {
|
|
|
|
emit Previous();
|
|
|
|
}
|
|
|
|
else if (e->button() == Qt::XButton2) {
|
|
|
|
emit Next();
|
|
|
|
}
|
|
|
|
e->accept();
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::mouseMoveEvent(QMouseEvent* e) {
|
|
|
|
QSlider::mouseMoveEvent(e);
|
|
|
|
|
|
|
|
// Borrowed from QSliderPrivate::pixelPosToRangeValue
|
|
|
|
QStyleOptionSlider opt;
|
|
|
|
initStyleOption(&opt);
|
|
|
|
QRect gr = style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderGroove, this);
|
|
|
|
QRect sr = style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle, this);
|
|
|
|
|
|
|
|
int slider_length = sr.width();
|
|
|
|
int slider_min = gr.x();
|
|
|
|
int slider_max = gr.right() - slider_length + 1;
|
|
|
|
|
|
|
|
mouse_hover_seconds_ = QStyle::sliderValueFromPosition(minimum() / kMsecPerSec, maximum() / kMsecPerSec, e->x() - slider_length / 2 - slider_min + 1, slider_max - slider_min);
|
|
|
|
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2018-02-27 18:06:05 +01:00
|
|
|
popup_->SetText(Utilities::PrettyTime(mouse_hover_seconds_));
|
|
|
|
UpdateDeltaTime();
|
|
|
|
popup_->SetPopupPosition(mapTo(window(), QPoint(e->x(), rect().center().y())));
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::wheelEvent(QWheelEvent *e) {
|
|
|
|
if (e->delta() < 0) {
|
|
|
|
emit SeekBackward();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
emit SeekForward();
|
|
|
|
}
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::enterEvent(QEvent* e) {
|
|
|
|
QSlider::enterEvent(e);
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2018-02-27 18:06:05 +01:00
|
|
|
if (isEnabled()) {
|
|
|
|
popup_->show();
|
|
|
|
}
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::leaveEvent(QEvent* e) {
|
|
|
|
QSlider::leaveEvent(e);
|
2019-07-30 22:11:09 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2019-08-01 20:03:37 +02:00
|
|
|
if (popup_->isVisible()) {
|
2018-11-17 03:25:21 +01:00
|
|
|
popup_->hide();
|
|
|
|
}
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::keyPressEvent(QKeyEvent* event) {
|
|
|
|
if (event->key() == Qt::Key_Left || event->key() == Qt::Key_Down) {
|
|
|
|
emit SeekBackward();
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
else if (event->key() == Qt::Key_Right || event->key() == Qt::Key_Up) {
|
|
|
|
emit SeekForward();
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QSlider::keyPressEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSliderSlider::UpdateDeltaTime() {
|
2019-07-31 20:03:24 +02:00
|
|
|
#ifndef Q_OS_MACOS
|
2018-02-27 18:06:05 +01:00
|
|
|
if (popup_->isVisible()) {
|
2018-11-17 03:25:21 +01:00
|
|
|
int delta_seconds = mouse_hover_seconds_ - (value() / kMsecPerSec);
|
2018-02-27 18:06:05 +01:00
|
|
|
popup_->SetSmallText(Utilities::PrettyTimeDelta(delta_seconds));
|
|
|
|
}
|
2019-07-30 22:11:09 +02:00
|
|
|
#endif
|
2019-07-31 20:03:24 +02:00
|
|
|
}
|