1/*
2 Copyright 2007 Dmitry Suzdalev <dimsuz@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17*/
18#ifndef MAINWINDOW_H
19#define MAINWINDOW_H
20
21#include <KXmlGuiWindow>
22
23class KMinesScene;
24class KMinesView;
25class KGameClock;
26class KToggleAction;
27
28class KMinesMainWindow : public KXmlGuiWindow
29{
30 Q_OBJECT
31public:
32 KMinesMainWindow();
33private slots:
34 void onMinesCountChanged(int count);
35 void newGame();
36 void onGameOver(bool);
37 void advanceTime(const QString&);
38 void onFirstClick();
39 void showHighscores();
40 void configureSettings();
41 void pauseGame(bool paused);
42 void loadSettings();
43private:
44 void setupActions();
45 KMinesScene* m_scene;
46 KMinesView* m_view;
47 KGameClock* m_gameClock;
48 KToggleAction* m_actionPause;
49};
50#endif
51