summaryrefslogtreecommitdiff
path: root/src/listeners/uploadlistener.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-14 12:32:29 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-14 12:32:29 +0300
commit3658d5a5564db6f0854ec9378c485aef8acc8992 (patch)
treee63e1bbd4f1fb5b0c4b5d0450c90b94a6584d24d /src/listeners/uploadlistener.cpp
parent33fa397fd5b560afde5a876a99acc2b2546d1d44 (diff)
downloadmv-3658d5a5564db6f0854ec9378c485aef8acc8992.tar.gz
mv-3658d5a5564db6f0854ec9378c485aef8acc8992.tar.bz2
mv-3658d5a5564db6f0854ec9378c485aef8acc8992.tar.xz
mv-3658d5a5564db6f0854ec9378c485aef8acc8992.zip
Add setupbutton object.
Add upload log button in settings.
Diffstat (limited to 'src/listeners/uploadlistener.cpp')
-rw-r--r--src/listeners/uploadlistener.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/listeners/uploadlistener.cpp b/src/listeners/uploadlistener.cpp
new file mode 100644
index 000000000..cf4f325dd
--- /dev/null
+++ b/src/listeners/uploadlistener.cpp
@@ -0,0 +1,35 @@
+/*
+ * The ManaPlus Client
+ * 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/uploadlistener.h"
+
+#include "commandhandler.h"
+#include "commands.h"
+#include "logger.h"
+
+#include "debug.h"
+
+UploadListener uploadListener;
+
+void UploadListener::action(const ActionEvent &event A_UNUSED)
+{
+ if (commandHandler)
+ commandHandler->invokeCommand(COMMAND_UPLOADLOG, "");
+}