2010-06-06 20:18:06 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-06-06 20:18:06 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "visualisationoverlay.h"
|
|
|
|
#include "ui_visualisationoverlay.h"
|
|
|
|
#include "ui/iconloader.h"
|
|
|
|
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QtDebug>
|
|
|
|
#include <QTimerEvent>
|
|
|
|
#include <QTimeLine>
|
|
|
|
#include <QGraphicsProxyWidget>
|
|
|
|
|
|
|
|
const int VisualisationOverlay::kFadeDuration = 500;
|
|
|
|
const int VisualisationOverlay::kFadeTimeout = 5000;
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
VisualisationOverlay::VisualisationOverlay(QWidget* parent)
|
|
|
|
: QWidget(parent),
|
|
|
|
ui_(new Ui_VisualisationOverlay),
|
|
|
|
fade_timeline_(new QTimeLine(kFadeDuration, this)),
|
|
|
|
visible_(false) {
|
2010-06-06 20:18:06 +02:00
|
|
|
ui_->setupUi(this);
|
|
|
|
|
|
|
|
setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
setMouseTracking(true);
|
|
|
|
|
|
|
|
ui_->settings->setIcon(IconLoader::Load("configure"));
|
|
|
|
connect(ui_->settings, SIGNAL(clicked()), SLOT(ShowSettingsMenu()));
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
connect(fade_timeline_, SIGNAL(valueChanged(qreal)),
|
|
|
|
SIGNAL(OpacityChanged(qreal)));
|
2010-06-06 20:18:06 +02:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
VisualisationOverlay::~VisualisationOverlay() { delete ui_; }
|
2010-06-06 20:18:06 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
QGraphicsProxyWidget* VisualisationOverlay::title(QGraphicsProxyWidget* proxy)
|
|
|
|
const {
|
2010-06-06 20:18:06 +02:00
|
|
|
return proxy->createProxyForChildWidget(ui_->song_title);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisualisationOverlay::SetActions(QAction* previous, QAction* play_pause,
|
|
|
|
QAction* stop, QAction* next) {
|
|
|
|
ui_->previous->setDefaultAction(previous);
|
|
|
|
ui_->play_pause->setDefaultAction(play_pause);
|
|
|
|
ui_->stop->setDefaultAction(stop);
|
|
|
|
ui_->next->setDefaultAction(next);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisualisationOverlay::ShowSettingsMenu() {
|
2014-02-07 16:34:20 +01:00
|
|
|
emit ShowPopupMenu(
|
|
|
|
ui_->settings->mapToGlobal(ui_->settings->rect().bottomLeft()));
|
2010-06-06 20:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VisualisationOverlay::timerEvent(QTimerEvent* e) {
|
|
|
|
QWidget::timerEvent(e);
|
|
|
|
|
|
|
|
if (e->timerId() == fade_out_timeout_.timerId()) {
|
|
|
|
SetVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisualisationOverlay::SetVisible(bool visible) {
|
2010-06-07 00:28:24 +02:00
|
|
|
// If we're showing the overlay, then fade out again in a little while
|
2010-06-06 20:18:06 +02:00
|
|
|
fade_out_timeout_.stop();
|
2014-02-07 16:34:20 +01:00
|
|
|
if (visible) fade_out_timeout_.start(kFadeTimeout, this);
|
2010-06-06 20:18:06 +02:00
|
|
|
|
2010-06-07 00:28:24 +02:00
|
|
|
// Don't change to the state we're in already
|
2014-02-07 16:34:20 +01:00
|
|
|
if (visible == visible_) return;
|
2010-06-06 20:18:06 +02:00
|
|
|
visible_ = visible;
|
|
|
|
|
|
|
|
// If there's already another fader running then start from the same time
|
|
|
|
// that one was already at.
|
|
|
|
int start_time = visible ? 0 : fade_timeline_->duration();
|
|
|
|
if (fade_timeline_->state() == QTimeLine::Running)
|
|
|
|
start_time = fade_timeline_->currentTime();
|
|
|
|
|
|
|
|
fade_timeline_->stop();
|
2014-02-07 16:34:20 +01:00
|
|
|
fade_timeline_->setDirection(visible ? QTimeLine::Forward
|
|
|
|
: QTimeLine::Backward);
|
2010-06-06 20:18:06 +02:00
|
|
|
fade_timeline_->setCurrentTime(start_time);
|
|
|
|
fade_timeline_->resume();
|
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void VisualisationOverlay::SetSongTitle(const QString& title) {
|
2010-06-06 20:18:06 +02:00
|
|
|
ui_->song_title->setText(title);
|
|
|
|
SetVisible(true);
|
|
|
|
}
|