vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Bindings>
2 <Binding name="RELOADUI" header="ULTIMATEUIKEYS"> <!-- Reload the User Interface -->
3 ReloadUI();
4 </Binding>
5 <Binding name="TOGGLEULTIMATEUIFEATURES" description="Toggle UltimateUI Features Window" > <!-- Toggle the UltimateUI Frame -->
6 ToggleUltimateUIFeatureFrame();
7 </Binding>
8 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
9 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
10 <Binding name="INSTANTACTIONBAR1">
11 if ( CURRENT_ACTIONBAR_PAGE ~= 1 ) then
12 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
13 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
14 end
15 CURRENT_ACTIONBAR_PAGE = 1;
16 ChangeActionBarPage();
17 end
18 </Binding>
19 <Binding name="INSTANTACTIONBAR2">
20 if ( CURRENT_ACTIONBAR_PAGE ~= 2 ) then
21 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
22 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
23 end
24 CURRENT_ACTIONBAR_PAGE = 2;
25 ChangeActionBarPage();
26 end
27 </Binding>
28 <Binding name="INSTANTACTIONBAR3">
29 if ( CURRENT_ACTIONBAR_PAGE ~= 3 ) then
30 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
31 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
32 end
33 CURRENT_ACTIONBAR_PAGE = 3;
34 ChangeActionBarPage();
35 end
36 </Binding>
37 <Binding name="INSTANTACTIONBAR4">
38 if ( CURRENT_ACTIONBAR_PAGE ~= 4 ) then
39 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
40 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
41 end
42 CURRENT_ACTIONBAR_PAGE = 4;
43 ChangeActionBarPage();
44 end
45 </Binding>
46 <Binding name="INSTANTACTIONBAR5">
47 if ( CURRENT_ACTIONBAR_PAGE ~= 5 ) then
48 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
49 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
50 end
51 CURRENT_ACTIONBAR_PAGE = 5;
52 ChangeActionBarPage();
53 end
54 </Binding>
55 <Binding name="INSTANTACTIONBAR6">
56 if ( CURRENT_ACTIONBAR_PAGE ~= 6 ) then
57 if (INSTANT_ACTIONBAR_RETURN == -1 ) then
58 INSTANT_ACTIONBAR_RETURN = CURRENT_ACTIONBAR_PAGE;
59 end
60 CURRENT_ACTIONBAR_PAGE = 6;
61 ChangeActionBarPage();
62 end
63 </Binding>
64 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
65 <Binding name="ACTIONBUTTON1ALT" runOnUp="true">
66 if ( keystate == "down" ) then
67 ActionButtonDown(13);
68 else
69 ActionButtonUp(13);
70 end
71 </Binding>
72 <Binding name="ACTIONBUTTON2ALT" runOnUp="true">
73 if ( keystate == "down" ) then
74 ActionButtonDown(14);
75 else
76 ActionButtonUp(14);
77 end
78 </Binding>
79 <Binding name="ACTIONBUTTON3ALT" runOnUp="true">
80 if ( keystate == "down" ) then
81 ActionButtonDown(15);
82 else
83 ActionButtonUp(15);
84 end
85 </Binding>
86 <Binding name="ACTIONBUTTON4ALT" runOnUp="true">
87 if ( keystate == "down" ) then
88 ActionButtonDown(16);
89 else
90 ActionButtonUp(16);
91 end
92 </Binding>
93 <Binding name="ACTIONBUTTON5ALT" runOnUp="true">
94 if ( keystate == "down" ) then
95 ActionButtonDown(17);
96 else
97 ActionButtonUp(17);
98 end
99 </Binding>
100 <Binding name="ACTIONBUTTON6ALT" runOnUp="true">
101 if ( keystate == "down" ) then
102 ActionButtonDown(18);
103 else
104 ActionButtonUp(18);
105 end
106 </Binding>
107 <Binding name="ACTIONBUTTON7ALT" runOnUp="true">
108 if ( keystate == "down" ) then
109 ActionButtonDown(19);
110 else
111 ActionButtonUp(19);
112 end
113 </Binding>
114 <Binding name="ACTIONBUTTON8ALT" runOnUp="true">
115 if ( keystate == "down" ) then
116 ActionButtonDown(20);
117 else
118 ActionButtonUp(20);
119 end
120 </Binding>
121 <Binding name="ACTIONBUTTON9ALT" runOnUp="true">
122 if ( keystate == "down" ) then
123 ActionButtonDown(21);
124 else
125 ActionButtonUp(21);
126 end
127 </Binding>
128 <Binding name="ACTIONBUTTON10ALT" runOnUp="true">
129 if ( keystate == "down" ) then
130 ActionButtonDown(22);
131 else
132 ActionButtonUp(22);
133 end
134 </Binding>
135 <Binding name="ACTIONBUTTON11ALT" runOnUp="true">
136 if ( keystate == "down" ) then
137 ActionButtonDown(23);
138 else
139 ActionButtonUp(23);
140 end
141 </Binding>
142 <Binding name="ACTIONBUTTON12ALT" runOnUp="true">
143 if ( keystate == "down" ) then
144 ActionButtonDown(24);
145 else
146 ActionButtonUp(24);
147 end
148 </Binding>
149 </Bindings>