diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-10 19:21:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-10 19:21:22 +0300 |
commit | 382d8b04262ba42a4ef334df4e35211f3c03c1b7 (patch) | |
tree | a48e91a1b078d2f19eec4e442d172c49d7702bff /src/listeners | |
parent | 7f3c6d852f8d1ab2b2b5d363d0b937c3593b38e3 (diff) | |
download | plus-382d8b04262ba42a4ef334df4e35211f3c03c1b7.tar.gz plus-382d8b04262ba42a4ef334df4e35211f3c03c1b7.tar.bz2 plus-382d8b04262ba42a4ef334df4e35211f3c03c1b7.tar.xz plus-382d8b04262ba42a4ef334df4e35211f3c03c1b7.zip |
Move errorlistener into separate file.
Diffstat (limited to 'src/listeners')
-rw-r--r-- | src/listeners/errorlistener.cpp | 36 | ||||
-rw-r--r-- | src/listeners/errorlistener.h | 38 |
2 files changed, 74 insertions, 0 deletions
diff --git a/src/listeners/errorlistener.cpp b/src/listeners/errorlistener.cpp new file mode 100644 index 000000000..e38433872 --- /dev/null +++ b/src/listeners/errorlistener.cpp @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 + * 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, see <http://www.gnu.org/licenses/>. + */ + +#include "listeners/errorlistener.h" + +#include "client.h" + +#include "utils/process.h" + +ErrorListener errorListener; + +void ErrorListener::action(const ActionEvent &event) +{ + if (event.getId() == "yes") + openBrowser(client->getSupportUrl()); + client->setState(STATE_CHOOSE_SERVER); +} diff --git a/src/listeners/errorlistener.h b/src/listeners/errorlistener.h new file mode 100644 index 000000000..12b1c47bc --- /dev/null +++ b/src/listeners/errorlistener.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 + * 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, see <http://www.gnu.org/licenses/>. + */ + +#ifndef LISTENERS_ERRORLISTENER_H +#define LISTENERS_ERRORLISTENER_H + +#include "listeners/actionlistener.h" + +#include "localconsts.h" + +class ErrorListener final : public ActionListener +{ + public: + void action(const ActionEvent &event) override final; +}; + +extern ErrorListener errorListener; + +#endif // LISTENERS_KEYLISTENER_H |