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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
Copyright (C) 2002-2005, Jason Katz-Brown <jasonkb@mit.edu>
Copyright 2010 Stefan Majewsky <majewsky@gmx.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef KOLF_H
#define KOLF_H
#include <KXmlGuiWindow>
#include "game.h"
#include "itemfactory.h"
#include <QUrl>
class QGridLayout;
class QAction;
class KSelectAction;
class KToggleAction;
class Editor;
class ScoreBoard;
class KolfWindow : public KXmlGuiWindow
{
Q_OBJECT
public:
KolfWindow();
~KolfWindow() override;
void openUrl(const QUrl &url);
public Q_SLOTS:
void closeGame();
void updateModified(bool);
protected:
bool queryClose() Q_DECL_OVERRIDE;
protected Q_SLOTS:
void startNewGame();
void loadGame();
void tutorial();
void newGame();
void save();
void saveAs();
void saveGame();
void saveGameAs();
void newPlayersTurn(Player *);
void gameOver();
void editingStarted();
void editingEnded();
void checkEditing();
void setHoleFocus() { game->setFocus(); }
void inPlayStart();
void inPlayEnd();
void maxStrokesReached(const QString &);
void updateHoleMenu(int);
void titleChanged(const QString &);
void newStatusText(const QString &);
void showInfoChanged(bool);
void useMouseChanged(bool);
void useAdvancedPuttingChanged(bool);
void showGuideLineChanged(bool);
void soundChanged(bool);
void showHighScores();
void enableAllMessages();
void createSpacer();
void emptySlot() {}
void setCurrentHole(int);
private:
QWidget *dummy;
KolfGame *game;
Editor *editor;
KolfGame *spacer;
void setupActions();
QString filename;
PlayerList players;
PlayerList spacerPlayers;
QGridLayout *layout;
ScoreBoard *scoreboard;
KToggleAction *editingAction;
QAction *newHoleAction;
QAction *resetHoleAction;
QAction *undoShotAction;
//QAction *replayShotAction;
QAction *clearHoleAction;
QAction *tutorialAction;
QAction *newAction;
QAction *endAction;
QAction *saveAction;
QAction *saveAsAction;
QAction *saveGameAction;
QAction *saveGameAsAction;
QAction *loadGameAction;
QAction *aboutAction;
KSelectAction *holeAction;
QAction *highScoreAction;
QAction *nextAction;
QAction *prevAction;
QAction *firstAction;
QAction *lastAction;
QAction *randAction;
KToggleAction *showInfoAction;
KToggleAction *useMouseAction;
KToggleAction *useAdvancedPuttingAction;
KToggleAction *showGuideLineAction;
KToggleAction *soundAction;
void setHoleMovementEnabled(bool);
void setHoleOtherEnabled(bool);
inline void setEditingEnabled(bool);
bool competition;
Kolf::ItemFactory m_itemFactory;
QString loadedGame;
bool isTutorial;
bool courseModified;
QString title;
QString tempStatusBarText;
};
struct HighScore
{
HighScore() {}
HighScore(const QString &name, int score) { this->name = name; this->score = score; }
QString name;
int score;
};
typedef QList<HighScore> HighScoreList;
#endif
|