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.cpp | |
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.cpp')
-rw-r--r-- | src/gui/error.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/gui/error.cpp b/src/gui/error.cpp new file mode 100644 index 00000000..3e76c5ee --- /dev/null +++ b/src/gui/error.cpp @@ -0,0 +1,54 @@ +/* + * 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$ + */ + +#include "error.h" + +#include <guichan/widgets/label.hpp> + +#include "../main.h" +#include "../graphics.h" + +ErrorDialog::ErrorDialog(const std::string &msg): + OkDialog("Error", msg) +{ +} + +ErrorDialog::~ErrorDialog() +{ +} + +void ErrorDialog::action(const std::string& eventId) +{ + if (eventId == "ok") + { + state = LOGIN_STATE; + } +} + +void errorInputHandler(SDL_KeyboardEvent *keyEvent) +{ + if (keyEvent->keysym.sym == SDLK_ESCAPE) + { + state = EXIT_STATE; + } +} |