From 382d8b04262ba42a4ef334df4e35211f3c03c1b7 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 10 May 2014 19:21:22 +0300 Subject: Move errorlistener into separate file. --- src/listeners/errorlistener.cpp | 36 ++++++++++++++++++++++++++++++++++++ src/listeners/errorlistener.h | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/listeners/errorlistener.cpp create mode 100644 src/listeners/errorlistener.h (limited to 'src/listeners') 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 . + */ + +#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 . + */ + +#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 -- cgit v1.2.3-70-g09d2