diff options
-rw-r--r-- | Swift/QtUI/QtClickableLabel.cpp | 18 | ||||
-rw-r--r-- | Swift/QtUI/QtClickableLabel.h | 22 |
2 files changed, 40 insertions, 0 deletions
diff --git a/Swift/QtUI/QtClickableLabel.cpp b/Swift/QtUI/QtClickableLabel.cpp new file mode 100644 index 0000000..f040f5f --- /dev/null +++ b/Swift/QtUI/QtClickableLabel.cpp @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2011 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#include "QtClickableLabel.h" + +namespace Swift { + +QtClickableLabel::QtClickableLabel(QWidget* parent) : QLabel(parent) { +} + +void QtClickableLabel::mousePressEvent(QMouseEvent*) { + emit clicked(); +} + +} 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(); + }; +} |