strawberry-audio-player-win.../src/widgets/favoritewidget.cpp

89 lines
2.3 KiB
C++
Raw Permalink Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2013, 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
*/
2020-02-09 02:29:35 +01:00
#include <QtGlobal>
#include <QWidget>
2018-02-27 18:06:05 +01:00
#include <QSize>
#include <QStyle>
#include <QStylePainter>
2020-02-09 02:29:35 +01:00
#include <QPaintEvent>
#include <QMouseEvent>
2018-02-27 18:06:05 +01:00
#include "core/iconloader.h"
#include "favoritewidget.h"
2018-02-27 18:06:05 +01:00
const int FavoriteWidget::kStarSize = 15;
2020-06-14 18:58:24 +02:00
FavoriteWidget::FavoriteWidget(const int tab_index, const bool favorite, QWidget *parent)
2018-02-27 18:06:05 +01:00
: QWidget(parent),
tab_index_(tab_index),
favorite_(favorite),
2024-04-09 23:20:26 +02:00
on_(IconLoader::Load(QStringLiteral("star"))),
off_(IconLoader::Load(QStringLiteral("star-grey"))),
2018-02-27 18:06:05 +01:00
rect_(0, 0, kStarSize, kStarSize) {}
void FavoriteWidget::SetFavorite(const bool favorite) {
2018-02-27 18:06:05 +01:00
if (favorite_ != favorite) {
favorite_ = favorite;
update();
emit FavoriteStateChanged(tab_index_, favorite_);
}
}
QSize FavoriteWidget::sizeHint() const {
const int frame_width = 1 + style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
return QSize(kStarSize + frame_width, kStarSize + frame_width);
2018-02-27 18:06:05 +01:00
}
void FavoriteWidget::paintEvent(QPaintEvent *e) {
2019-09-15 20:27:32 +02:00
Q_UNUSED(e);
2018-02-27 18:06:05 +01:00
QStylePainter p(this);
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
if (favorite_) {
p.drawPixmap(rect_, on_.pixmap(rect_.size(), devicePixelRatioF()));
}
else {
p.drawPixmap(rect_, off_.pixmap(rect_.size(), devicePixelRatioF()));
}
#else
2018-02-27 18:06:05 +01:00
if (favorite_) {
p.drawPixmap(rect_, on_.pixmap(rect_.size()));
2018-02-27 18:06:05 +01:00
}
else {
p.drawPixmap(rect_, off_.pixmap(rect_.size()));
2018-02-27 18:06:05 +01:00
}
#endif
2018-02-27 18:06:05 +01:00
}
2020-11-02 17:47:16 +01:00
void FavoriteWidget::mouseDoubleClickEvent(QMouseEvent*) {
2019-09-15 20:27:32 +02:00
2018-02-27 18:06:05 +01:00
favorite_ = !favorite_;
update();
emit FavoriteStateChanged(tab_index_, favorite_);
2019-09-15 20:27:32 +02:00
2018-02-27 18:06:05 +01:00
}