64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
/*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QString>
|
|
#include <QPixmap>
|
|
#include <QRect>
|
|
#include <QSize>
|
|
#include <QtEvents>
|
|
|
|
class QMouseEvent;
|
|
class QPaintEvent;
|
|
|
|
class FavoriteWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FavoriteWidget(int tab_id, bool favorite = false, QWidget *parent = nullptr);
|
|
|
|
// Change the value if different from the current one and then update display and emit FavoriteStateChanged signal
|
|
void SetFavorite(bool favorite);
|
|
|
|
QSize sizeHint() const;
|
|
|
|
signals:
|
|
void FavoriteStateChanged(int, bool);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e);
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
private:
|
|
static const int kStarSize;
|
|
|
|
// The playlist's id this widget belongs to
|
|
int tab_index_;
|
|
bool favorite_;
|
|
QPixmap on_;
|
|
QPixmap off_;
|
|
QRect rect_;
|
|
};
|