diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-09-26 18:15:05 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-09-26 18:15:05 +0000 |
commit | 3d6a9219de95a711411aea3189f01985a3cb0d3b (patch) | |
tree | 533af990c96ee7c5b6ca8ffc63594affd2ca8463 /src/gui/error.h | |
parent | a0fd39a05151848bef85e18e25aa0824bc9cef93 (diff) | |
download | mana-3d6a9219de95a711411aea3189f01985a3cb0d3b.tar.gz mana-3d6a9219de95a711411aea3189f01985a3cb0d3b.tar.bz2 mana-3d6a9219de95a711411aea3189f01985a3cb0d3b.tar.xz mana-3d6a9219de95a711411aea3189f01985a3cb0d3b.zip |
Added a nicer handling of when you get disconnected from the server.
Diffstat (limited to 'src/gui/error.h')
-rw-r--r-- | src/gui/error.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/gui/error.h b/src/gui/error.h new file mode 100644 index 00000000..5447fbdf --- /dev/null +++ b/src/gui/error.h @@ -0,0 +1,64 @@ +/* + * The Mana World + * Copyright 2004 The Mana World Development Team + * + * This file is part of The Mana World. + * + * The Mana World 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 + * any later version. + * + * The Mana World 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 The Mana World; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ + */ + +#ifndef _TMW_ERROR_H +#define _TMW_ERROR_H + +#include <iosfwd> +#include <guichan/actionlistener.hpp> +#include <SDL_events.h> + +#include "ok_dialog.h" +#include "../guichanfwd.h" + +/** + * The error dialog. + * + * \ingroup Interface + */ +class ErrorDialog : public OkDialog, public gcn::ActionListener { + public: + /** + * Constructor + * + * @see Window::Window + */ + ErrorDialog(const std::string &msg); + + /** + * Destructor + */ + ~ErrorDialog(); + + /** + * Called when receiving actions from the widgets. + */ + void action(const std::string& eventId); +}; + +/** + * Handle input + */ +void errorInputHandler(SDL_KeyboardEvent *keyEvent); + +#endif |