summaryrefslogtreecommitdiff
path: root/src/actions/tabs.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-21 18:56:18 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-21 18:56:18 +0300
commit79e280817b91f4e9b67cc42a8abf5c49243f56a5 (patch)
tree3e159883582184e7e0eaf92db943798b58caac9a /src/actions/tabs.h
parent2c1130c1a8acb1c3df42ba904589d01b6a459017 (diff)
downloadplus-79e280817b91f4e9b67cc42a8abf5c49243f56a5.tar.gz
plus-79e280817b91f4e9b67cc42a8abf5c49243f56a5.tar.bz2
plus-79e280817b91f4e9b67cc42a8abf5c49243f56a5.tar.xz
plus-79e280817b91f4e9b67cc42a8abf5c49243f56a5.zip
Move tabs related actions into separate file.
Diffstat (limited to 'src/actions/tabs.h')
-rw-r--r--src/actions/tabs.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/actions/tabs.h b/src/actions/tabs.h
new file mode 100644
index 000000000..c0bb49c86
--- /dev/null
+++ b/src/actions/tabs.h
@@ -0,0 +1,40 @@
+/*
+ * 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/>.
+ */
+
+#ifndef ACTIONS_TABS_H
+#define ACTIONS_TABS_H
+
+#define decHandler(name) bool name(const InputEvent &event)
+
+struct InputEvent;
+
+namespace Actions
+{
+ decHandler(prevSocialTab);
+ decHandler(nextSocialTab);
+ decHandler(nextShortcutsTab);
+ decHandler(prevShortcutsTab);
+ decHandler(nextCommandsTab);
+ decHandler(prevCommandsTab);
+} // namespace Actions
+
+#undef decHandler
+
+#endif // ACTIONS_TABS_H