blob: 46391c7388d61e87394f49867b84402b6dcac360 (
plain)
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
|
// Author: Denis Kozadaev - (c) 2017-2020
#ifndef __MAIN_WINDOW_H__
#define __MAIN_WINDOW_H__
#include <tdemainwindow.h>
#include <tdepopupmenu.h>
#include "gameboard.h"
class MainWindow : public TDEMainWindow
{
Q_OBJECT
public:
MainWindow(TQWidget* parent = 0, const char* name = 0);
~MainWindow();
private:
TDEPopupMenu* mMenu;
GameBoard* mBoard;
private slots:
void newGame();
void loadImage();
};
#endif /* __MAIN_WINDOW_H__ */
|