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 ..\UI.xsd">
3 <Script file="localization.lua"/>
4 <Script file="BuyEmAll.lua"/>
5 <Frame name="BuyEmAllFrame" frameStrata="HIGH" parent="UIParent" toplevel="true" enableMouse="true" enableKeyboard="true" hidden="true">
6 <Size>
7 <AbsDimension x="172" y="128"/>
8 </Size>
9 <Layers>
10 <Layer level="BACKGROUND">
11 <Texture name="$parentTopTex" file="Interface\MoneyFrame\UI-MoneyFrame2">
12 <Size x="172" y="14"/>
13 <Anchors>
14 <Anchor point="TOP" relativePoint="TOP"/>
15 </Anchors>
16 <TexCoords left="0" right="0.671875" top="0" bottom=".109375"/>
17 </Texture>
18 <Texture name="$parentMoneyTex" file="Interface\MoneyFrame\UI-MoneyFrame">
19 <Size x="172" y="34"/>
20 <Anchors>
21 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentTopTex"/>
22 </Anchors>
23 <TexCoords left="0" right="0.671875" top=".109375" bottom=".375"/>
24 </Texture>
25 <Texture name="$parentBottomTex" file="Interface\MoneyFrame\UI-MoneyFrame2">
26 <Size x="172" y="20"/>
27 <Anchors>
28 <Anchor point="BOTTOM" relativePoint="BOTTOM"/>
29 </Anchors>
30 <TexCoords left="0" right="0.671875" top=".59375" bottom=".75"/>
31 </Texture>
32 <Texture name="$parentBackTex" file="Interface\MoneyFrame\UI-MoneyFrame2">
33 <Size x="172" y="128"/>
34 <Anchors>
35 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentMoneyTex"/>
36 <Anchor point="BOTTOM" relativePoint="TOP" relativeTo="$parentBottomTex"/>
37 </Anchors>
38 <TexCoords left="0" right="0.671875" top=".375" bottom=".59375"/>
39 </Texture>
40 <FontString name="BuyEmAllText" inherits="GameFontHighlight" justifyH="RIGHT">
41 <Anchors>
42 <Anchor point="TOPRIGHT">
43 <Offset x="-50" y="-23"/>
44 </Anchor>
45 </Anchors>
46 </FontString>
47 </Layer>
48 </Layers>
49 <Frames>
50 <Button name="BuyEmAllLeftButton">
51 <Size x="16" y="16"/>
52 <Anchors>
53 <Anchor point="RIGHT" relativePoint="TOP">
54 <Offset x="-59" y="-30"/>
55 </Anchor>
56 </Anchors>
57 <Scripts>
58 <OnClick>
59 BuyEmAllLeft_Click();
60 </OnClick>
61 </Scripts>
62 <NormalTexture file="Interface\MoneyFrame\Arrow-Left-Up"/>
63 <PushedTexture file="Interface\MoneyFrame\Arrow-Left-Down"/>
64 <DisabledTexture file="Interface\MoneyFrame\Arrow-Left-Disabled"/>
65 </Button>
66 <Button name="BuyEmAllRightButton">
67 <Size x="16" y="16"/>
68 <Anchors>
69 <Anchor point="LEFT" relativePoint="TOP">
70 <Offset x="64" y="-30"/>
71 </Anchor>
72 </Anchors>
73 <Scripts>
74 <OnClick>
75 BuyEmAllRight_Click();
76 </OnClick>
77 </Scripts>
78 <NormalTexture file="Interface\MoneyFrame\Arrow-Right-Up"/>
79 <PushedTexture file="Interface\MoneyFrame\Arrow-Right-Down"/>
80 <DisabledTexture file="Interface\MoneyFrame\Arrow-Right-Disabled"/>
81 </Button>
82 <Frame name="BuyEmAllCostMoney" inherits="SmallMoneyFrameTemplate">
83 <Size x="120" y="24"/>
84 <Anchors>
85 <Anchor point="TOP" relativePoint="TOP">
86 <Offset x="8" y="-44"/>
87 </Anchor>
88 </Anchors>
89 <Scripts>
90 <OnLoad>
91 BuyEmAllCostMoney_OnLoad()
92 </OnLoad>
93 </Scripts>
94 </Frame>
95 <Button name="BuyEmAllOkayButton" inherits="UIPanelButtonTemplate" text="OKAY">
96 <Size x="70" y="24"/>
97 <Anchors>
98 <Anchor point="RIGHT" relativePoint="BOTTOM">
99 <Offset x="1" y="28"/>
100 </Anchor>
101 </Anchors>
102 <Scripts>
103 <OnClick>
104 BuyEmAllOkay_Click();
105 </OnClick>
106 </Scripts>
107 </Button>
108 <Button name="BuyEmAllCancelButton" inherits="UIPanelButtonTemplate" text="CANCEL">
109 <Size x="70" y="24"/>
110 <Anchors>
111 <Anchor point="LEFT" relativePoint="BOTTOM">
112 <Offset x="1" y="28"/>
113 </Anchor>
114 </Anchors>
115 <Scripts>
116 <OnClick>
117 BuyEmAllCancel_Click();
118 </OnClick>
119 </Scripts>
120 </Button>
121 <Button name="BuyEmAllStackButton" inherits="UIPanelButtonTemplate">
122 <Size x="70" y="24"/>
123 <Anchors>
124 <Anchor point="BOTTOMLEFT" relativeTo="BuyEmAllOkayButton" relativePoint="TOPLEFT"/>
125 </Anchors>
126 <Scripts>
127 <OnClick>
128 BuyEmAllStack_Click()
129 </OnClick>
130 <OnEnter>
131 BuyEmAllStackButton_Enter()
132 </OnEnter>
133 <OnLeave>
134 BuyEmAllMSButton_Leave()
135 </OnLeave>
136 </Scripts>
137 </Button>
138 <Button name="BuyEmAllMaxButton" inherits="UIPanelButtonTemplate">
139 <Size x="70" y="24"/>
140 <Anchors>
141 <Anchor point="BOTTOMLEFT" relativeTo="BuyEmAllCancelButton" relativePoint="TOPLEFT"/>
142 </Anchors>
143 <Scripts>
144 <OnClick>
145 BuyEmAllMax_Click()
146 </OnClick>
147 <OnEnter>
148 BuyEmAllMaxButton_Enter()
149 </OnEnter>
150 <OnLeave>
151 BuyEmAllMSButton_Leave()
152 </OnLeave>
153 </Scripts>
154 </Button>
155 </Frames>
156 <Scripts>
157 <OnLoad>
158 BuyEmAllFrame_OnLoad()
159 </OnLoad>
160 <OnHide>
161 BuyEmAllFrame_OnHide();
162 </OnHide>
163 <OnChar>
164 BuyEmAllFrame_OnChar();
165 </OnChar>
166 <OnKeyDown>
167 BuyEmAllFrame_OnKeyDown();
168 </OnKeyDown>
169 </Scripts>
170 </Frame>
171 </Ui>