2020-09-17 17:50:17 +02: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RATINGWIDGET_H
|
|
|
|
#define RATINGWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QFrame>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QRect>
|
|
|
|
|
|
|
|
class RatingPainter {
|
|
|
|
public:
|
|
|
|
RatingPainter();
|
|
|
|
|
|
|
|
static const int kStarCount = 5;
|
|
|
|
static const int kStarSize = 16;
|
2021-06-20 19:04:08 +02:00
|
|
|
static QRect Contents(const QRect rect);
|
2021-10-30 18:53:14 +02:00
|
|
|
static float RatingForPos(const QPoint pos, const QRect rect);
|
2020-09-17 17:50:17 +02:00
|
|
|
|
2021-10-30 18:53:14 +02:00
|
|
|
void Paint(QPainter *painter, const QRect rect, float rating) const;
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
QPixmap stars_[kStarCount * 2 + 1];
|
|
|
|
};
|
|
|
|
|
|
|
|
class RatingWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
2021-06-20 19:04:08 +02:00
|
|
|
|
2021-10-30 18:53:14 +02:00
|
|
|
Q_PROPERTY(float rating READ rating WRITE set_rating)
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
RatingWidget(QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
|
2021-10-30 18:53:14 +02:00
|
|
|
float rating() const { return rating_; }
|
|
|
|
void set_rating(const float rating);
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
signals:
|
2021-10-30 18:53:14 +02:00
|
|
|
void RatingChanged(float);
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent*) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
void leaveEvent(QEvent*) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
RatingPainter painter_;
|
2021-10-30 18:53:14 +02:00
|
|
|
float rating_;
|
|
|
|
float hover_rating_;
|
2020-09-17 17:50:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RATINGWIDGET_H
|