summaryrefslogtreecommitdiff
path: root/src/listeners/inputactionremotelistener.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-07 17:12:59 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-07 17:12:59 +0300
commit2538267ce30c5cfe3bbf23442e7c3a80e647f260 (patch)
tree5490d8aa2931645af09e35cee0e6b255592103a9 /src/listeners/inputactionremotelistener.cpp
parent7807ed17587b09c39dcd815a554f48e2f6ecb346 (diff)
downloadplus-2538267ce30c5cfe3bbf23442e7c3a80e647f260.tar.gz
plus-2538267ce30c5cfe3bbf23442e7c3a80e647f260.tar.bz2
plus-2538267ce30c5cfe3bbf23442e7c3a80e647f260.tar.xz
plus-2538267ce30c5cfe3bbf23442e7c3a80e647f260.zip
For commands in links in chat ask before executing command.
Diffstat (limited to 'src/listeners/inputactionremotelistener.cpp')
-rw-r--r--src/listeners/inputactionremotelistener.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/listeners/inputactionremotelistener.cpp b/src/listeners/inputactionremotelistener.cpp
new file mode 100644
index 000000000..66a9876f0
--- /dev/null
+++ b/src/listeners/inputactionremotelistener.cpp
@@ -0,0 +1,50 @@
+/*
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#include "listeners/inputactionremotelistener.h"
+
+#include "input/inputmanager.h"
+
+#include "debug.h"
+
+InputActionRemoteListener inputActionRemoteListener;
+
+InputActionRemoteListener::InputActionRemoteListener() :
+ ActionListener(),
+ mCommand(),
+ mArgs()
+{
+}
+
+void InputActionRemoteListener::action(const ActionEvent &event)
+{
+ if (event.getId() != "yes")
+ {
+ mCommand.clear();
+ mArgs.clear();
+ return;
+ }
+
+ inputManager.executeRemoteChatCommand(mCommand,
+ mArgs,
+ nullptr);
+ mCommand.clear();
+ mArgs.clear();
+}