summary refs log tree commit diff
path: root/src/ui/Label.cpp
blob: 220fe2f0bce61a0c678ef98a49dc048bf26534fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#include "Label.h"
#include <QMouseEvent>

Label::Label(QWidget *parent, Qt::WindowFlags f)
  : QLabel(parent, f)
{}

Label::Label(const QString &text, QWidget *parent, Qt::WindowFlags f)
  : QLabel(text, parent, f)
{}

void
Label::mousePressEvent(QMouseEvent *e)
{
    pressPosition_ = e->pos();
    emit pressed(e);
    QLabel::mousePressEvent(e);
}

void
Label::mouseReleaseEvent(QMouseEvent *e)
{
    emit released(e);
    if (pressPosition_ == e->pos())
        emit clicked(e);
    QLabel::mouseReleaseEvent(e);
}