summaryrefslogtreecommitdiffstats
path: root/labb4/qgameoverwindow.h
blob: 2185d34f9024d1688bfac64ea3feab8236bb9a62 (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
33
34
35
/**
 * TDDD86 Robots
 * This file contains the declaration of the QGameOverWindow class.
 * See qgameoverwindow.cpp for implementation of each member.
 */

#ifndef QGAMEOVERWINDOW_H
#define QGAMEOVERWINDOW_H

#include <QWidget>
#include <QVBoxLayout>
#include <QLabel>
#include "qresetbutton.h"

class QGameOverWindow : public QWidget
{
    Q_OBJECT
public:
    explicit QGameOverWindow(QWidget *parent = 0);
    ~QGameOverWindow();

    QResetButton* getResetBtn() const;

signals:

public slots:

private:

    QVBoxLayout *layout = nullptr;
    QLabel* gameover = nullptr;
    QResetButton* reset = nullptr;
};

#endif // QGAMEOVERWINDOW_H