diff options
| author | manuel <manuel@mausz.at> | 2011-04-09 15:03:50 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2011-04-09 15:03:50 +0200 |
| commit | 9f896b86b671b3a05314d2013a315d996b456f95 (patch) | |
| tree | 18bb310c96ea4a6f819494776a91a96a38fee2af /pacman-c++/clicklabel.h | |
| parent | 7e4bc8ece49543533c4e27f5d6bc867c1bada601 (diff) | |
| download | foop-9f896b86b671b3a05314d2013a315d996b456f95.tar.gz foop-9f896b86b671b3a05314d2013a315d996b456f95.tar.bz2 foop-9f896b86b671b3a05314d2013a315d996b456f95.zip | |
add toggle audio icon
Diffstat (limited to 'pacman-c++/clicklabel.h')
| -rw-r--r-- | pacman-c++/clicklabel.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pacman-c++/clicklabel.h b/pacman-c++/clicklabel.h new file mode 100644 index 0000000..494b1ee --- /dev/null +++ b/pacman-c++/clicklabel.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #ifndef CLICKLABEL_H | ||
| 2 | #define CLICKLABEL_H | ||
| 3 | |||
| 4 | #include <QLabel> | ||
| 5 | |||
| 6 | class ClickLabel | ||
| 7 | : public QLabel | ||
| 8 | { | ||
| 9 | Q_OBJECT | ||
| 10 | |||
| 11 | public: | ||
| 12 | ClickLabel(const QString &text, QWidget *parent = 0, Qt::WindowFlags f = 0); | ||
| 13 | |||
| 14 | signals: | ||
| 15 | void clicked(); | ||
| 16 | |||
| 17 | protected: | ||
| 18 | void mouseReleaseEvent(QMouseEvent *event); | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif // CLICKLABEL_H | ||
