summaryrefslogtreecommitdiff
path: root/noncore/games/kpacman/kpacman.h
Unidiff
Diffstat (limited to 'noncore/games/kpacman/kpacman.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kpacman/kpacman.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/games/kpacman/kpacman.h b/noncore/games/kpacman/kpacman.h
index 2c1de70..829714a 100644
--- a/noncore/games/kpacman/kpacman.h
+++ b/noncore/games/kpacman/kpacman.h
@@ -7,49 +7,51 @@
7 7
8#include "portable.h" 8#include "portable.h"
9 9
10#include <qmainwindow.h> 10#include <qmainwindow.h>
11class QMenuBar; 11class QMenuBar;
12#include <qregexp.h> 12#include <qregexp.h>
13 13
14#include "kpacmanwidget.h" 14#include "kpacmanwidget.h"
15 15
16#include <qpopmenu.h> 16#include <qpopmenu.h>
17 17
18#include <qlist.h> 18#include <qlist.h>
19#include <qfileinf.h> 19#include <qfileinf.h>
20#include <qlayout.h> 20#include <qlayout.h>
21 21
22#include "referee.h" 22#include "referee.h"
23#include "status.h" 23#include "status.h"
24#include "score.h" 24#include "score.h"
25#include "keys.h" 25#include "keys.h"
26 26
27class Kpacman : public KTMainWindow 27class Kpacman : public KTMainWindow
28{ 28{
29 Q_OBJECT 29 Q_OBJECT
30public: 30public:
31 Kpacman(QWidget *parent = 0, const char *name = 0); 31 Kpacman(QWidget *parent = 0, const char *name = 0, WFlags fl = 0);
32 static QString appName() { return QString::fromLatin1("kpacman"); }
33
32 virtual ~Kpacman(); 34 virtual ~Kpacman();
33 35
34public slots: 36public slots:
35 void forcedHallOfFame(bool); 37 void forcedHallOfFame(bool);
36 38
37private slots: 39private slots:
38 void newKpacman(); 40 void newKpacman();
39 void pauseKpacman(); 41 void pauseKpacman();
40 void toggleHallOfFame(); 42 void toggleHallOfFame();
41 void toggleNew(); 43 void toggleNew();
42 void togglePaused(); 44 void togglePaused();
43 void quitKpacman(); 45 void quitKpacman();
44 46
45 void schemeChecked(int); 47 void schemeChecked(int);
46 void toggleFocusOutPause(); 48 void toggleFocusOutPause();
47 void toggleFocusInContinue(); 49 void toggleFocusInContinue();
48 void toggleHideMouseCursor(); 50 void toggleHideMouseCursor();
49 void confKeys(); 51 void confKeys();
50 52
51protected: 53protected:
52 54
53private: 55private:
54 KpacmanWidget *view; 56 KpacmanWidget *view;
55 57