From 2538267ce30c5cfe3bbf23442e7c3a80e647f260 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 7 Apr 2016 17:12:59 +0300 Subject: For commands in links in chat ask before executing command. --- src/listeners/inputactionremotelistener.h | 51 +++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/listeners/inputactionremotelistener.h (limited to 'src/listeners/inputactionremotelistener.h') diff --git a/src/listeners/inputactionremotelistener.h b/src/listeners/inputactionremotelistener.h new file mode 100644 index 000000000..7fbaf76a7 --- /dev/null +++ b/src/listeners/inputactionremotelistener.h @@ -0,0 +1,51 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2016 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_INPUTACTIONREMOTELISTENER_H +#define LISTENERS_INPUTACTIONREMOTELISTENER_H + +#include "listeners/actionlistener.h" + +#include "localconsts.h" + +class InputActionRemoteListener final : public ActionListener +{ + public: + InputActionRemoteListener(); + + A_DELETE_COPY(InputActionRemoteListener) + + void action(const ActionEvent &event) override final; + + void setCommand(const std::string &command, + const std::string &args) + { + mCommand = command; + mArgs = args; + } + + protected: + std::string mCommand; + std::string mArgs; +}; + +extern InputActionRemoteListener inputActionRemoteListener; + +#endif // LISTENERS_INPUTACTIONREMOTELISTENER_H -- cgit v1.2.3-60-g2f50