summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-15 23:44:18 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-15 23:44:18 +0300
commit4924ee59a5723a12673648fb5e9c264b8240da32 (patch)
tree10b033ae027eb6f5ef57691101306cb4bfd35656
parentc5145f025df38143d02b641e9ba3dda433e1dd0c (diff)
downloadplus-4924ee59a5723a12673648fb5e9c264b8240da32.tar.gz
plus-4924ee59a5723a12673648fb5e9c264b8240da32.tar.bz2
plus-4924ee59a5723a12673648fb5e9c264b8240da32.tar.xz
plus-4924ee59a5723a12673648fb5e9c264b8240da32.zip
Add chat command for clean current chat tab.
New chat command: /clearchat Alias: /chatclear
-rw-r--r--src/actions/chat.cpp6
-rw-r--r--src/actions/chat.h1
-rw-r--r--src/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h9
4 files changed, 17 insertions, 0 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp
index f6135c674..bad56e7c0 100644
--- a/src/actions/chat.cpp
+++ b/src/actions/chat.cpp
@@ -457,4 +457,10 @@ impHandler(addText)
return true;
}
+impHandler(clearChat)
+{
+ if (chatWindow)
+ chatWindow->clearTab();
+}
+
} // namespace Actions
diff --git a/src/actions/chat.h b/src/actions/chat.h
index 12fa35963..01c77fe21 100644
--- a/src/actions/chat.h
+++ b/src/actions/chat.h
@@ -48,6 +48,7 @@ namespace Actions
decHandler(toggle);
decHandler(kickParty);
decHandler(addText);
+ decHandler(clearChat);
} // namespace Actions
#undef decHandler
diff --git a/src/input/inputaction.h b/src/input/inputaction.h
index 4de3c7cb4..7e330f909 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -515,6 +515,7 @@ namespace InputAction
KICK,
LEAVE_PARTY,
WARP,
+ CLEAR_CHAT,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index ac54eaedb..6d09c4e6f 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -4378,6 +4378,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputCondition::INGAME,
"warp",
true},
+ {"keyClearChat",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::clearChat,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "clearchat|chatclear",
+ false},
};
#endif // INPUT_INPUTACTIONMAP_H