Files
cantata/widgets/titlewidget.cpp
2015-10-18 14:11:24 +01:00

197 lines
7.1 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2015 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* 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.
*
* This program 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 this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "titlewidget.h"
#include "support/squeezedtextlabel.h"
#include "support/localize.h"
#include "support/utils.h"
#include "support/icon.h"
#include "gui/stdactions.h"
#include "toolbutton.h"
#ifdef Q_OS_MAC
#include "support/osxstyle.h"
#endif
#include "gui/covers.h"
#include <QAction>
#include <QImage>
#include <QPixmap>
#include <QGridLayout>
#include <QEvent>
#include <QMouseEvent>
#include <QApplication>
TitleWidget::TitleWidget(QWidget *p)
: QWidget(p)
, controls(0)
{
QGridLayout *layout=new QGridLayout(this);
QVBoxLayout *textLayout=new QVBoxLayout(0);
image=new QLabel(this);
mainText=new SqueezedTextLabel(this);
subText=new SqueezedTextLabel(this);
QLabel *chevron=new QLabel(QChar(Qt::RightToLeft==layoutDirection() ? 0x203A : 0x2039), this);
QFont f=mainText->font();
subText->setFont(Utils::smallFont(f));
f.setBold(true);
mainText->setFont(f);
if (f.pixelSize()>0) {
f.setPixelSize(f.pixelSize()*2);
} else {
f.setPointSizeF(f.pointSizeF()*2);
}
f.setBold(false);
chevron->setFont(f);
int spacing=Utils::layoutSpacing(this);
mainText->ensurePolished();
subText->ensurePolished();
int size=mainText->sizeHint().height()+subText->sizeHint().height()+spacing;
size=Utils::scaleForDpi(qMax(Icon::stdSize(size), 48));
image->setFixedSize(size, size);
setToolTip(i18n("Click to go back"));
spacing=qMin(4, spacing-1);
layout->addItem(new QSpacerItem(spacing, spacing), 0, 0, 2, 1);
layout->addWidget(chevron, 0, 1, 2, 1);
layout->addWidget(image, 0, 2, 2, 1);
textLayout->addWidget(mainText);
textLayout->addWidget(subText);
layout->addItem(textLayout, 0, 3, 2, 1);
mainText->installEventFilter(this);
subText->installEventFilter(this);
image->installEventFilter(this);
installEventFilter(this);
setAttribute(Qt::WA_Hover);
connect(Covers::self(), SIGNAL(cover(Song,QImage,QString)), this, SLOT(coverRetrieved(Song,QImage,QString)));
connect(Covers::self(), SIGNAL(coverUpdated(Song,QImage,QString)), this, SLOT(coverRetrieved(Song,QImage,QString)));
connect(Covers::self(), SIGNAL(artistImage(Song,QImage,QString)), this, SLOT(coverRetrieved(Song,QImage,QString)));
layout->setContentsMargins(1, 4, 1, 4);
layout->setSpacing(spacing);
textLayout->setMargin(0);
textLayout->setSpacing(spacing);
mainText->setAlignment(Qt::AlignBottom);
subText->setAlignment(Qt::AlignTop);
image->setAlignment(Qt::AlignCenter);
chevron->setAlignment(Qt::AlignCenter);
chevron->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding);
}
void TitleWidget::update(const Song &sng, const QIcon &icon, const QString &text, const QString &sub, bool showControls)
{
song=sng;
image->setVisible(true);
mainText->setText(text);
subText->setText(sub);
if (!showControls) {
if (controls) {
controls->setVisible(false);
}
} else {
if (!controls) {
controls=new QWidget(this);
QVBoxLayout *l=new QVBoxLayout(controls);
l->setMargin(0);
l->setSpacing(0);
ToolButton *add=new ToolButton(this);
ToolButton *replace=new ToolButton(this);
add->QAbstractButton::setIcon(StdActions::self()->appendToPlayQueueAction->icon());
replace->QAbstractButton::setIcon(StdActions::self()->replacePlayQueueAction->icon());
add->setToolTip(i18n("Add All To Play Queue"));
replace->setToolTip(i18n("Add All And Replace Play Queue"));
l->addWidget(replace);
l->addWidget(add);
connect(add, SIGNAL(clicked()), this, SIGNAL(addToPlayQueue()));
connect(replace, SIGNAL(clicked()), this, SIGNAL(replacePlayQueue()));
static_cast<QGridLayout *>(layout())->addWidget(controls, 0, 4, 2, 1);
}
controls->setVisible(true);
}
subText->setVisible(!sub.isEmpty());
mainText->setAlignment(sub.isEmpty() ? Qt::AlignVCenter : Qt::AlignBottom);
if (!sng.isEmpty()) {
Covers::Image cImg=Covers::self()->requestImage(sng, true);
if (!cImg.img.isNull()) {
image->setPixmap(QPixmap::fromImage(cImg.img.scaled(image->width()-2, image->height()-2, Qt::KeepAspectRatio, Qt::SmoothTransformation)));
return;
}
}
if (icon.isNull()) {
image->setVisible(false);
} else {
image->setPixmap(Icon::getScaledPixmap(icon, image->width()-2, image->height()-2, 96));
}
}
bool TitleWidget::eventFilter(QObject *o, QEvent *event)
{
switch(event->type()) {
case QEvent::HoverEnter:
if (isEnabled() && o==this) {
#ifdef Q_OS_MAC
setStyleSheet(QString("QLabel{color:%1;}").arg(OSXStyle::self()->viewPalette().highlight().color().name()));
#else
setStyleSheet(QLatin1String("QLabel{color:palette(highlight);}"));
#endif
}
break;
case QEvent::HoverLeave:
if (isEnabled() && o==this) {
setStyleSheet(QString());
}
break;
case QEvent::MouseButtonPress:
if (Qt::LeftButton==static_cast<QMouseEvent *>(event)->button() && Qt::NoModifier==static_cast<QMouseEvent *>(event)->modifiers()) {
pressed=true;
}
break;
case QEvent::MouseButtonRelease:
if (pressed && Qt::LeftButton==static_cast<QMouseEvent *>(event)->button() && !QApplication::overrideCursor()) {
actions().first()->trigger();
}
pressed=false;
break;
default:
break;
}
return QWidget::eventFilter(o, event);
}
void TitleWidget::coverRetrieved(const Song &s, const QImage &img, const QString &file)
{
Q_UNUSED(file);
if (song.isEmpty() || img.isNull()) {
return;
}
if (song.artistOrComposer()!=s.artistOrComposer()) {
return;
}
if (s.isArtistImageRequest()!=song.isArtistImageRequest()) {
return;
}
if (s.isComposerImageRequest()!=song.isComposerImageRequest()) {
return;
}
if (!s.isComposerImageRequest() && !s.isArtistImageRequest() && s.album!=song.album) {
return;
}
image->setPixmap(QPixmap::fromImage(img.scaled(image->width()-6, image->height()-6, Qt::KeepAspectRatio, Qt::SmoothTransformation)));
}