diff options
Diffstat (limited to 'labb4/qresetbutton.cpp')
| -rw-r--r-- | labb4/qresetbutton.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/labb4/qresetbutton.cpp b/labb4/qresetbutton.cpp new file mode 100644 index 0000000..8eef506 --- /dev/null +++ b/labb4/qresetbutton.cpp @@ -0,0 +1,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(); + } +} |
