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 <Script file="TitanMoney.lua"/>
4 <Frame parent="UIParent">
5 <Frames>
6 <Button name="TitanPanelMoneyButton" inherits="TitanPanelButtonTemplate" frameStrata="FULLSCREEN" toplevel="true">
7 <Size>
8 <AbsDimension x="128" y="16"/>
9 </Size>
10 <Frames>
11 <!--
12 <Button name="TitanPanelMoneyCeilingButton" inherits="TitanPanelCeilingButtonTemplate" toplevel="true" hidden="false">
13 <Size>
14 <AbsDimension x="128" y="16"/>
15 </Size>
16 <Anchors>
17 <Anchor point="CENTER"/>
18 </Anchors>
19 </Button>
20 -->
21 <Button name="$parentCopperButton" inherits="TitanPanelChildButtonTemplate">
22 <Size>
23 <AbsDimension x="32" y="13"/>
24 </Size>
25 <Anchors>
26 <Anchor point="RIGHT">
27 <Offset>
28 <AbsDimension x="-13" y="1"/>
29 </Offset>
30 </Anchor>
31 </Anchors>
32 <Scripts>
33 <OnClick>
34 TitanPanelMoneyCopperButton_OnClick(arg1);
35 TitanPanelButton_OnClick(arg1, 1);
36 </OnClick>
37 </Scripts>
38 <NormalTexture file="Interface\MoneyFrame\UI-MoneyIcons">
39 <Size>
40 <AbsDimension x="13" y="13"/>
41 </Size>
42 <Anchors>
43 <Anchor point="RIGHT"/>
44 </Anchors>
45 <TexCoords left="0.5" right="0.75" top="0" bottom="1"/>
46 </NormalTexture>
47 <NormalText name="$parentText" inherits="GameFontHighlightSmall" justifyH="LEFT">
48 <Anchors>
49 <Anchor point="LEFT"/>
50 </Anchors>
51 </NormalText>
52 <PushedTextOffset>
53 <AbsDimension x="0" y="0"/>
54 </PushedTextOffset>
55 </Button>
56 <Button name="$parentSilverButton" inherits="TitanPanelChildButtonTemplate">
57 <Size>
58 <AbsDimension x="32" y="13"/>
59 </Size>
60 <Anchors>
61 <Anchor point="RIGHT" relativeTo="$parentCopperButton" relativePoint="LEFT">
62 <Offset>
63 <AbsDimension x="-4" y="0"/>
64 </Offset>
65 </Anchor>
66 </Anchors>
67 <Scripts>
68 <OnClick>
69 TitanPanelMoneySilverButton_OnClick(arg1);
70 TitanPanelButton_OnClick(arg1, 1);
71 </OnClick>
72 </Scripts>
73 <NormalTexture file="Interface\MoneyFrame\UI-MoneyIcons">
74 <Size>
75 <AbsDimension x="13" y="13"/>
76 </Size>
77 <Anchors>
78 <Anchor point="RIGHT"/>
79 </Anchors>
80 <TexCoords left="0.25" right="0.5" top="0" bottom="1"/>
81 </NormalTexture>
82 <NormalText name="$parentText" inherits="GameFontHighlightSmall" justifyH="LEFT">
83 <Anchors>
84 <Anchor point="LEFT"/>
85 </Anchors>
86 </NormalText>
87 <PushedTextOffset>
88 <AbsDimension x="0" y="0"/>
89 </PushedTextOffset>
90 </Button>
91 <Button name="$parentGoldButton" inherits="TitanPanelChildButtonTemplate">
92 <Size>
93 <AbsDimension x="32" y="13"/>
94 </Size>
95 <Anchors>
96 <Anchor point="RIGHT" relativeTo="$parentSilverButton" relativePoint="LEFT">
97 <Offset>
98 <AbsDimension x="-4" y="0"/>
99 </Offset>
100 </Anchor>
101 </Anchors>
102 <Scripts>
103 <OnClick>
104 TitanPanelMoneyGoldButton_OnClick(arg1);
105 TitanPanelButton_OnClick(arg1, 1);
106 </OnClick>
107 </Scripts>
108 <NormalTexture file="Interface\MoneyFrame\UI-MoneyIcons">
109 <Size>
110 <AbsDimension x="13" y="13"/>
111 </Size>
112 <Anchors>
113 <Anchor point="RIGHT"/>
114 </Anchors>
115 <TexCoords left="0" right="0.25" top="0" bottom="1"/>
116 </NormalTexture>
117 <NormalText name="$parentText" inherits="GameFontHighlightSmall" justifyH="LEFT">
118 <Anchors>
119 <Anchor point="LEFT"/>
120 </Anchors>
121 </NormalText>
122 <PushedTextOffset>
123 <AbsDimension x="0" y="0"/>
124 </PushedTextOffset>
125 </Button>
126 </Frames>
127 <Scripts>
128 <OnLoad>
129 TitanPanelMoneyButton_OnLoad();
130 TitanPanelButton_OnLoad();
131 </OnLoad>
132 <OnEvent>
133 TitanPanelMoneyButton_OnEvent();
134 </OnEvent>
135 <OnShow>
136 MoneyFrame_UpdateMoney();
137 </OnShow>
138 <OnHide>
139 if ( this.hasPickup == 1 ) then
140 CoinPickupFrame:Hide();
141 this.hasPickup = 0;
142 end
143 </OnHide>
144 </Scripts>
145 </Button>
146 </Frames>
147 </Frame>
148 </Ui>