Files
cantata/widgets/coverwidget.cpp
Craig Drummond b6bd94c236 Update (c) year
2022-01-08 21:24:07 +00:00

212 lines
5.9 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2022 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 "coverwidget.h"
#include "gui/currentcover.h"
#include "gui/covers.h"
#include "gui/settings.h"
#include "mpd-interface/song.h"
#include "context/view.h"
#include "support/gtkstyle.h"
#include "support/utils.h"
#include "online/onlineservice.h"
#ifdef Q_OS_MAC
#include "support/osxstyle.h"
#endif
#include <QLinearGradient>
#include <QPen>
#include <QHelpEvent>
#include <QMouseEvent>
#include <QApplication>
#include <QPainter>
#include <QBoxLayout>
#include <QSpacerItem>
#include <QCursor>
#include <QToolTip>
static const int constBorder=1;
CoverLabel::CoverLabel(QWidget *p)
: QLabel(p)
, pressed(false)
{
}
void CoverLabel::updateToolTip(bool isEvent)
{
if (!isEvent) {
if (!QToolTip::isVisible()) {
return;
}
QRect r=rect();
r.moveTo(mapToGlobal(pos()));
if (!r.contains(QCursor::pos())) {
setToolTip(QString());
return;
}
}
const Song &current=CurrentCover::self()->song();
if (current.isEmpty() || current.isStandardStream() || OnlineService::showLogoAsCover(current)) {
setToolTip(QString());
return;
}
const QImage &img=CurrentCover::self()->image();
if (img.isNull()) {
return;
}
QString toolTip;
if (img.size().width()>Covers::constMaxSize.width() || img.size().height()>Covers::constMaxSize.height()) {
toolTip=View::encode(img.scaled(Covers::constMaxSize, Qt::KeepAspectRatio, Qt::SmoothTransformation));
} else if (CurrentCover::self()->fileName().isEmpty() || !QFile::exists(CurrentCover::self()->fileName())) {
toolTip=View::encode(img);
} else {
toolTip=QString("<img src=\"%1\"/>").arg(CurrentCover::self()->fileName());
}
setToolTip(toolTip);
if (!isEvent && !lastTtPos.isNull()) {
QToolTip::hideText();
QToolTip::showText(lastTtPos, toolTip);
}
}
bool CoverLabel::event(QEvent *event)
{
switch(event->type()) {
case QEvent::ToolTip:
lastTtPos=static_cast<QHelpEvent *>(event)->globalPos();
updateToolTip(true);
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()) {
static_cast<CoverWidget*>(parentWidget())->emitClicked();
}
pressed=false;
break;
default:
break;
}
return QLabel::event(event);
}
void CoverLabel::paintEvent(QPaintEvent *)
{
if (pix.isNull()) {
return;
}
QPainter p(this);
QSize layoutSize = pix.size() / pix.DEVICE_PIXEL_RATIO();
QRect r((width()-layoutSize.width())/2, (height()-layoutSize.height())/2, layoutSize.width(), layoutSize.height());
p.drawPixmap(r, pix);
if (underMouse()) {
#ifdef Q_OS_MAC
QPen pen(OSXStyle::self()->viewPalette().color(QPalette::Highlight), 2);
#else
QPen pen(palette().color(QPalette::Highlight), 2);
#endif
pen.setJoinStyle(Qt::MiterJoin);
p.setPen(pen);
p.drawRect(r.adjusted(1, 1, -1, -1));
}
}
void CoverLabel::updatePix()
{
QImage img=CurrentCover::self()->image();
if (img.isNull()) {
return;
}
int size=height();
double pixRatio=qApp->devicePixelRatio();
size*=pixRatio;
img=img.scaled(size, size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
img.setDevicePixelRatio(pixRatio);
if (pix.isNull() || pix.size()!=img.size()) {
pix=QPixmap(img.size());
pix.setDevicePixelRatio(pixRatio);
}
pix.fill(Qt::transparent);
QPainter painter(&pix);
painter.drawImage(0, 0, img);
repaint();
}
void CoverLabel::deletePix()
{
if (!pix.isNull()) {
pix=QPixmap();
}
}
CoverWidget::CoverWidget(QWidget *parent)
: QWidget(parent)
{
QBoxLayout *l=new QBoxLayout(QBoxLayout::LeftToRight, this);
l->setMargin(0);
l->setSpacing(0);
l->addItem(new QSpacerItem(qMax(Utils::scaleForDpi(8), Utils::layoutSpacing(this)), 4, QSizePolicy::Fixed, QSizePolicy::Fixed));
label=new CoverLabel(this);
l->addWidget(label);
label->setStyleSheet(QString("QLabel {border: %1px solid transparent} QToolTip {background-color:#111111; color: #DDDDDD}").arg(constBorder));
label->setAttribute(Qt::WA_Hover, true);
}
CoverWidget::~CoverWidget()
{
}
void CoverWidget::setSize(int min)
{
label->setFixedSize(min, min);
}
void CoverWidget::setEnabled(bool e)
{
if (e) {
connect(CurrentCover::self(), SIGNAL(coverImage(QImage)), this, SLOT(coverImage(QImage)));
coverImage(QImage());
} else {
label->deletePix();
disconnect(CurrentCover::self(), SIGNAL(coverImage(QImage)), this, SLOT(coverImage(QImage)));
}
setVisible(e);
label->setEnabled(e);
}
void CoverWidget::coverImage(const QImage &)
{
label->updatePix();
label->updateToolTip(false);
}
#include "moc_coverwidget.cpp"