strawberry-audio-player-win.../src/widgets/clickablelabel.h

42 lines
1.1 KiB
C
Raw Permalink Normal View History

2018-02-27 18:06:05 +01:00
/* This file is part of Strawberry.
Copyright 2010, Andrea Decorte <adecorte@gmail.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 CLICKABLELABEL_H
#define CLICKABLELABEL_H
#include <QObject>
#include <QString>
2018-02-27 18:06:05 +01:00
#include <QLabel>
2020-02-09 02:29:35 +01:00
class QWidget;
class QMouseEvent;
2018-02-27 18:06:05 +01:00
class ClickableLabel : public QLabel {
Q_OBJECT
public:
2020-04-07 16:49:15 +02:00
explicit ClickableLabel(QWidget *parent = nullptr);
2018-02-27 18:06:05 +01:00
2020-04-07 16:49:15 +02:00
signals:
2018-02-27 18:06:05 +01:00
void Clicked();
2020-04-07 16:49:15 +02:00
protected:
2020-06-15 21:55:05 +02:00
void mousePressEvent(QMouseEvent *event) override;
2018-02-27 18:06:05 +01:00
};
#endif // CLICKABLELABEL_H