You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.0 KiB
102 lines
3.0 KiB
|
3 years ago
|
<!--
|
||
|
|
Name: Prat_KeyBindings
|
||
|
|
Revision: $Revision: 80432 $
|
||
|
|
Author(s): Curney (asml8ed@gmail.com)
|
||
|
|
Krtek (krtek4@gmail.com)
|
||
|
|
Website: http://files.wowace.com/Prat/
|
||
|
|
Documentation: http://www.wowace.com/wiki/Prat/Integrated_Modules#KeyBindings
|
||
|
|
SVN: http://svn.wowace.com/wowace/trunk/Prat/
|
||
|
|
Discussions: http://groups.google.com/group/wow-prat
|
||
|
|
Issues and feature requests: http://code.google.com/p/prat/issues/list
|
||
|
|
License: http://groups.google.com/group/wow-prat/web/license
|
||
|
|
Description: Module for Prat that adds keybindings for modules.
|
||
|
|
Dependencies: Prat
|
||
|
|
-->
|
||
|
|
|
||
|
|
<Bindings>
|
||
|
|
<!-- ChannelNames -->
|
||
|
|
<Binding name="officer" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/o");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="guild" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/g");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="party" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/p");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="raid" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/raid");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="raidwarn" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/rw");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="instance" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/i");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="say" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/say");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="yell" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/yell");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="whisper" category="ADDONS" >
|
||
|
|
ChatFrame_OpenChat("/w");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="one" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/1");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="two" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/2");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="three" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/3");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="four" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/4");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="five" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/5");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="six" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/6");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="seven" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/7");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="eight" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/8");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="nine" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/9");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="SmartGroup" category="ADDONS">
|
||
|
|
ChatFrame_OpenChat("/smart");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="NextTab" category="ADDONS">
|
||
|
|
local mod = Prat.Addon:GetModule("KeyBindings", true)
|
||
|
|
if mod then
|
||
|
|
mod:CycleChatTabs()
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<!-- TellTarget -->
|
||
|
|
<Binding name="TellTarget" category="ADDONS">
|
||
|
|
local mod = Prat.Addon:GetModule("TellTarget", true)
|
||
|
|
if mod then
|
||
|
|
mod:SendTellToTarget(SELECTED_CHAT_FRAME, "");
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<!-- CopyChat -->
|
||
|
|
<Binding name="Copy Selected Chat Frame" category="ADDONS">
|
||
|
|
local mod = Prat.Addon:GetModule("CopyChat", true)
|
||
|
|
if mod then
|
||
|
|
mod:CopyChat();
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<Binding name="Scroll To Bottom" category="ADDONS">
|
||
|
|
SELECTED_CHAT_FRAME:ScrollToBottom()
|
||
|
|
</Binding>
|
||
|
|
<Binding name="Scroll To Top" category="ADDONS">
|
||
|
|
SELECTED_CHAT_FRAME:ScrollToTop()
|
||
|
|
</Binding>
|
||
|
|
</Bindings>
|