diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-11-09 22:12:41 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-11-09 22:12:41 +0100 |
| commit | 6a72f2f15c9f39b2a851b955b9b87abede8d0257 (patch) | |
| tree | 53afef7ae52433d170fafd070941a5e57e6b44dc /labb4/qgameoverwindow.cpp | |
| parent | 209bc7540a97bb238e70b9f9e248a0a0c756a4c0 (diff) | |
| download | tddd86-6a72f2f15c9f39b2a851b955b9b87abede8d0257.tar.gz | |
initial work
Diffstat (limited to 'labb4/qgameoverwindow.cpp')
| -rw-r--r-- | labb4/qgameoverwindow.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/labb4/qgameoverwindow.cpp b/labb4/qgameoverwindow.cpp new file mode 100644 index 0000000..5a3b359 --- /dev/null +++ b/labb4/qgameoverwindow.cpp @@ -0,0 +1,42 @@ +/** + * TDDD86 Robots + * This file contains the implementation of the QGameOverWindow class. + */ + +#include "qgameoverwindow.h" +#include "qresetbutton.h" + +#include <QVBoxLayout> +#include <QLabel> + +QGameOverWindow::QGameOverWindow(QWidget *parent) : + QWidget(parent) { + setStyleSheet("QGameOverWindow { background: rgb(237,224,200); }"); + setFixedSize(425, 205); + QVBoxLayout *layout = new QVBoxLayout(this); + + // game over label + QLabel* gameover = new QLabel("Game Over!", this); + gameover->setStyleSheet("QLabel { color: rgb(119,110,101); font: 40pt; font: bold;} "); + + // reset button + reset = new QResetButton(this); + reset->setFixedHeight(50); + reset->setFixedWidth(100); + + // add game over label to window + layout->insertWidget(0, gameover, 0, Qt::AlignCenter); + + // add reset button to window + layout->insertWidget(1, reset, 0, Qt::AlignCenter); +} + +QGameOverWindow::~QGameOverWindow() { + delete reset; + delete gameover; + delete layout; +} + +QResetButton* QGameOverWindow::getResetBtn() const { + return reset; +} |
