summaryrefslogtreecommitdiffstats
path: root/labb4/qresetbutton.cpp
blob: 8eef5065e687e8bd38af99eb70505eed1f159561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * TDDD86 Robots
 * This file contains the implementation of the QResetButton class.
 */

#include "qresetbutton.h"

QResetButton::QResetButton( QWidget* parent) : QLabel(parent) {
    setText("Try again!");
    setAlignment(Qt::AlignCenter);
    setStyleSheet("QResetButton { background-color: rgb(143,122,102); border-radius: 10px; font: bold; color: white; }");
}

void QResetButton::mousePressEvent(QMouseEvent* event) {
    if (event) {
        emit clicked();
    }
}