diff options
Diffstat (limited to 'Swift/QtUI/QtClickableLabel.h')
-rw-r--r-- | Swift/QtUI/QtClickableLabel.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Swift/QtUI/QtClickableLabel.h b/Swift/QtUI/QtClickableLabel.h new file mode 100644 index 0000000..d56e9b4 --- /dev/null +++ b/Swift/QtUI/QtClickableLabel.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2011 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <QLabel> + +namespace Swift { + class QtClickableLabel : public QLabel { + Q_OBJECT + public: + QtClickableLabel(QWidget* parent); + + void mousePressEvent(QMouseEvent* event); + + signals: + void clicked(); + }; +} |