vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
2 ..\FrameXML\UI.xsd">
3  
4 <Button name="ChatBarButtonTemplate" virtual="true" hidden="true">
5 <Size>
6 <AbsDimension x="16" y="16"/>
7 </Size>
8 <Layers>
9 <Layer level="OVERLAY">
10 <FontString name="$parentText" inherits="GameFontNormalSmall" nonspacewrap="true" justifyH="CENTER">
11 <Size>
12 <AbsDimension x="12" y="12"/>
13 </Size>
14 <Anchors>
15 <Anchor point="BOTTOM" relativePoint="TOP">
16 <Offset>
17 <AbsDimension x="0" y="0"/>
18 </Offset>
19 </Anchor>
20 </Anchors>
21 </FontString>
22 <Texture name="$parentUpTex_Spec" file="Interface\AddOns\ChatBar\Skin\ChanButton_Up_Spec"/>
23 <Texture name="$parentDownTex_Spec" file="Interface\AddOns\ChatBar\Skin\ChanButton_Down_Spec" hidden="true" />
24 <Texture name="$parentFlash" alphaMode="ADD" file="Interface\AddOns\ChatBar\Skin\ChanButton_Glow_Alpha" hidden="true" />
25 </Layer>
26 <Layer level="ARTWORK">
27 <Texture name="$parentCenter" file="Interface\AddOns\ChatBar\Skin\ChanButton_Center"/>
28 </Layer>
29 <Layer level="BORDER">
30 <Texture name="$parentBackground" file="Interface\AddOns\ChatBar\Skin\ChanButton_BG"/>
31 </Layer>
32 </Layers>
33 <Scripts>
34 <OnLoad>
35 ChatBar_Button_OnLoad();
36 </OnLoad>
37 <OnEnter>
38 ChatBar_Button_OnEnter();
39 </OnEnter>
40 <OnLeave>
41 ChatBar_Button_OnLeave();
42 </OnLeave>
43 <OnClick>
44 ChatBar_Button_OnClick(arg1);
45 </OnClick>
46 <OnMouseDown>
47 getglobal(this:GetName().."UpTex_Spec"):Hide();
48 getglobal(this:GetName().."DownTex_Spec"):Show();
49 </OnMouseDown>
50 <OnMouseUp>
51 getglobal(this:GetName().."UpTex_Spec"):Show();
52 getglobal(this:GetName().."DownTex_Spec"):Hide();
53 </OnMouseUp>
54 </Scripts>
55 <NormalTexture name="$parentUpTex_Shad" file="Interface\AddOns\ChatBar\Skin\ChanButton_Up_Shad"/>
56 <PushedTexture name="$parentDownTex_Shad" file="Interface\AddOns\ChatBar\Skin\ChanButton_Down_Shad"/>
57 <HighlightTexture name="$parentHighlight" alphaMode="ADD" file="Interface\AddOns\ChatBar\Skin\ChanButton_Glow_Alpha"/>
58 </Button>
59  
60 <Frame name="ChatBarFrame" parent="UIParent" enableMouse="true" movable="true" hidden="false">
61 <Size>
62 <AbsDimension x="16" y="16"/>
63 </Size>
64 <Anchors>
65 <Anchor point="BOTTOMLEFT" relativeTo="ChatFrame1" relativePoint="TOPLEFT">
66 <Offset>
67 <AbsDimension x="0" y="30"/>
68 </Offset>
69 </Anchor>
70 </Anchors>
71 <Frames>
72 <Frame name="$parentBackground" setAllPoints="true">
73 <Backdrop edgeFile="Interface\AddOns\ChatBar\Skin\ChatBarBorder" bgFile="Interface\AddOns\ahChatBar\Skin\BlackBg">
74 <BackgroundInsets>
75 <AbsInset left="8" right="8" top="8" bottom="8"/>
76 </BackgroundInsets>
77 <TileSize>
78 <AbsValue val="8"/>
79 </TileSize>
80 <EdgeSize>
81 <AbsValue val="8"/>
82 </EdgeSize>
83 </Backdrop>
84 </Frame>
85 <Button name="$parentButton1" inherits="ChatBarButtonTemplate" id="1">
86 <Anchors>
87 <Anchor point="LEFT">
88 <Offset>
89 <AbsDimension x="10" y="0"/>
90 </Offset>
91 </Anchor>
92 </Anchors>
93 </Button>
94 <Button name="$parentButton2" inherits="ChatBarButtonTemplate" id="2">
95 <Anchors>
96 <Anchor point="LEFT" relativeTo="$parentButton1" relativePoint="RIGHT"/>
97 </Anchors>
98 </Button>
99 <Button name="$parentButton3" inherits="ChatBarButtonTemplate" id="3">
100 <Anchors>
101 <Anchor point="LEFT" relativeTo="$parentButton2" relativePoint="RIGHT"/>
102 </Anchors>
103 </Button>
104 <Button name="$parentButton4" inherits="ChatBarButtonTemplate" id="4">
105 <Anchors>
106 <Anchor point="LEFT" relativeTo="$parentButton3" relativePoint="RIGHT"/>
107 </Anchors>
108 </Button>
109 <Button name="$parentButton5" inherits="ChatBarButtonTemplate" id="5">
110 <Anchors>
111 <Anchor point="LEFT" relativeTo="$parentButton4" relativePoint="RIGHT"/>
112 </Anchors>
113 </Button>
114 <Button name="$parentButton6" inherits="ChatBarButtonTemplate" id="6">
115 <Anchors>
116 <Anchor point="LEFT" relativeTo="$parentButton5" relativePoint="RIGHT"/>
117 </Anchors>
118 </Button>
119 <Button name="$parentButton7" inherits="ChatBarButtonTemplate" id="7">
120 <Anchors>
121 <Anchor point="LEFT" relativeTo="$parentButton6" relativePoint="RIGHT"/>
122 </Anchors>
123 </Button>
124 <Button name="$parentButton8" inherits="ChatBarButtonTemplate" id="8">
125 <Anchors>
126 <Anchor point="LEFT" relativeTo="$parentButton7" relativePoint="RIGHT"/>
127 </Anchors>
128 </Button>
129 <Button name="$parentButton9" inherits="ChatBarButtonTemplate" id="9">
130 <Anchors>
131 <Anchor point="LEFT" relativeTo="$parentButton8" relativePoint="RIGHT"/>
132 </Anchors>
133 </Button>
134 <Button name="$parentButton10" inherits="ChatBarButtonTemplate" id="10">
135 <Anchors>
136 <Anchor point="LEFT" relativeTo="$parentButton9" relativePoint="RIGHT"/>
137 </Anchors>
138 </Button>
139 <Button name="$parentButton11" inherits="ChatBarButtonTemplate" id="11">
140 <Anchors>
141 <Anchor point="LEFT" relativeTo="$parentButton10" relativePoint="RIGHT"/>
142 </Anchors>
143 </Button>
144 <Button name="$parentButton12" inherits="ChatBarButtonTemplate" id="12">
145 <Anchors>
146 <Anchor point="LEFT" relativeTo="$parentButton11" relativePoint="RIGHT"/>
147 </Anchors>
148 </Button>
149 <Button name="$parentButton13" inherits="ChatBarButtonTemplate" id="13">
150 <Anchors>
151 <Anchor point="LEFT" relativeTo="$parentButton12" relativePoint="RIGHT"/>
152 </Anchors>
153 </Button>
154 <Button name="$parentButton14" inherits="ChatBarButtonTemplate" id="14">
155 <Anchors>
156 <Anchor point="LEFT" relativeTo="$parentButton13" relativePoint="RIGHT"/>
157 </Anchors>
158 </Button>
159 <Button name="$parentButton15" inherits="ChatBarButtonTemplate" id="15">
160 <Anchors>
161 <Anchor point="LEFT" relativeTo="$parentButton14" relativePoint="RIGHT"/>
162 </Anchors>
163 </Button>
164 <Button name="$parentButton16" inherits="ChatBarButtonTemplate" id="16">
165 <Anchors>
166 <Anchor point="LEFT" relativeTo="$parentButton15" relativePoint="RIGHT"/>
167 </Anchors>
168 </Button>
169 <Button name="$parentButton17" inherits="ChatBarButtonTemplate" id="17">
170 <Anchors>
171 <Anchor point="LEFT" relativeTo="$parentButton16" relativePoint="RIGHT"/>
172 </Anchors>
173 </Button>
174 <Button name="$parentButton18" inherits="ChatBarButtonTemplate" id="18">
175 <Anchors>
176 <Anchor point="LEFT" relativeTo="$parentButton17" relativePoint="RIGHT"/>
177 </Anchors>
178 </Button>
179 <Button name="$parentButton19" inherits="ChatBarButtonTemplate" id="19">
180 <Anchors>
181 <Anchor point="LEFT" relativeTo="$parentButton18" relativePoint="RIGHT"/>
182 </Anchors>
183 </Button>
184 <Button name="$parentButton20" inherits="ChatBarButtonTemplate" id="20">
185 <Anchors>
186 <Anchor point="LEFT" relativeTo="$parentButton19" relativePoint="RIGHT"/>
187 </Anchors>
188 </Button>
189 <GameTooltip name="$parentTooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate" />
190 </Frames>
191  
192 <Scripts>
193 <OnLoad>
194 ChatBar_OnLoad();
195 </OnLoad>
196 <OnEvent>
197 ChatBar_OnEvent(event);
198 </OnEvent>
199 <OnUpdate>
200 ChatBar_OnUpdate(arg1);
201 </OnUpdate>
202 <OnMouseDown>
203 ChatBar_OnMouseDown(arg1);
204 </OnMouseDown>
205 <OnDragStart>
206 ChatBar_OnDragStart();
207 </OnDragStart>
208 <OnDragStop>
209 ChatBar_OnDragStop();
210 </OnDragStop>
211 </Scripts>
212 </Frame>
213  
214 <Frame name="ChatBar_DropDown" inherits="UIDropDownMenuTemplate" id="1" hidden="true">
215 <Size>
216 <AbsDimension x="10" y="10"/>
217 </Size>
218 <Anchors>
219 <Anchor point="TOP">
220 <Offset>
221 <AbsDimension x="-10" y="-50"/>
222 </Offset>
223 </Anchor>
224 </Anchors>
225 <Scripts>
226 <OnLoad>
227 ChatBar_DropDownOnLoad();
228 </OnLoad>
229 </Scripts>
230 </Frame>
231 </Ui>