From ca108c26aa632e54993c11861442800277efa45d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 11 Jan 2015 15:56:29 +0300 Subject: Add chat command for select trade tab. New chat command: /tradetab Alias: /tradechattab --- src/actions/chat.cpp | 7 +++++++ src/actions/chat.h | 1 + src/input/inputaction.h | 1 + src/input/inputactionmap.h | 5 +++++ 4 files changed, 14 insertions(+) diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp index ce54b72db..f59bc9a1b 100644 --- a/src/actions/chat.cpp +++ b/src/actions/chat.cpp @@ -485,4 +485,11 @@ impHandler0(chatBattleTab) return true; } +impHandler0(chatTradeTab) +{ + if (chatWindow) + chatWindow->selectTabByType(ChatTabType::TRADE); + return true; +} + } // namespace Actions diff --git a/src/actions/chat.h b/src/actions/chat.h index b53b069b3..dafc853aa 100644 --- a/src/actions/chat.h +++ b/src/actions/chat.h @@ -52,6 +52,7 @@ namespace Actions decHandler(chatGeneralTab); decHandler(chatDebugTab); decHandler(chatBattleTab); + decHandler(chatTradeTab); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 9417a472c..9d6f5eb83 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -529,6 +529,7 @@ namespace InputAction CHAT_GENERAL_TAB, CHAT_DEBUG_TAB, CHAT_BATTLE_TAB, + CHAT_TRADE_TAB, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index d0a4ecc1a..1af7f387e 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3939,6 +3939,11 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "battletab|battlechattab", false}, + {"keyTradeTab", + defaultAction(&Actions::chatTradeTab), + InputCondition::INGAME, + "tradetab|tradechattab", + false}, }; #undef defaultAction -- cgit v1.2.3-70-g09d2