view src/gui/widgets/clickable_label.cc @ 292:ac1451035c85

dialog/about: add utf8proc
author Paper <paper@paper.us.eu.org>
date Sun, 12 May 2024 18:01:16 -0400
parents b3549da699a6
children b1f625b0227c
line wrap: on
line source

#include "gui/widgets/clickable_label.h"

ClickableLabel::ClickableLabel(QWidget* parent) : QLabel(parent) {
	setCursor(Qt::PointingHandCursor);
}

ClickableLabel::~ClickableLabel() {
}

void ClickableLabel::mousePressEvent(QMouseEvent*) {
	emit clicked();
}