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 C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd">
3 <Script file="CT_BankFrame.lua"/>
4 <Frame name="CT_BankFrame_AcceptFrame" toplevel="true" frameStrata="DIALOG" enableMouse="true" hidden="true" parent="BankFrame">
5 <Size>
6 <AbsDimension x="400" y="120"/>
7 </Size>
8 <Anchors>
9 <Anchor point="CENTER" relativeTo="UIParent"/>
10 </Anchors>
11 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
12 <BackgroundInsets>
13 <AbsInset left="11" right="12" top="12" bottom="11"/>
14 </BackgroundInsets>
15 <TileSize>
16 <AbsValue val="32"/>
17 </TileSize>
18 <EdgeSize>
19 <AbsValue val="32"/>
20 </EdgeSize>
21 </Backdrop>
22 <Layers>
23 <Layer level="ARTWORK">
24 <Texture name="$parentHeaderTexture" file="Interface\DialogFrame\UI-DialogBox-Header">
25 <Size>
26 <AbsDimension x="256" y="64"/>
27 </Size>
28 <Anchors>
29 <Anchor point="TOP">
30 <Offset>
31 <AbsDimension x="0" y="12"/>
32 </Offset>
33 </Anchor>
34 </Anchors>
35 </Texture>
36 <FontString inherits="GameFontNormal" text="Buy Bank Slot">
37 <Anchors>
38 <Anchor point="TOP" relativeTo="$parentHeaderTexture">
39 <Offset>
40 <AbsDimension x="0" y="-14"/>
41 </Offset>
42 </Anchor>
43 </Anchors>
44 </FontString>
45 <FontString name="$parentInfoString" justifyV="top" inherits="GameFontNormal" text="Are you sure you would like to buy this bank slot?">
46 <Size>
47 <AbsDimension x="350" y="12"/>
48 </Size>
49 <Anchors>
50 <Anchor point="TOP">
51 <Offset>
52 <AbsDimension x="0" y="-30"/>
53 </Offset>
54 </Anchor>
55 </Anchors>
56 </FontString>
57 </Layer>
58 </Layers>
59 <Frames>
60 <Frame name="$parentMoneyFrame" inherits="SmallMoneyFrameTemplate">
61 <Anchors>
62 <Anchor point="CENTER"/>
63 </Anchors>
64 <Scripts>
65 <OnLoad>
66 SmallMoneyFrame_OnLoad();
67 MoneyFrame_SetType("STATIC");
68 </OnLoad>
69 </Scripts>
70 </Frame>
71 <Button name="$parentOkayButton" hidden="false" inherits="GameMenuButtonTemplate" text="Okay">
72 <Size>
73 <AbsDimension x="100" y="25"/>
74 </Size>
75 <Anchors>
76 <Anchor point="BOTTOM" relativePoint="BOTTOM">
77 <Offset>
78 <AbsDimension x="-55" y="15"/>
79 </Offset>
80 </Anchor>
81 </Anchors>
82 <Scripts>
83 <OnClick>
84 CT_oldPurchaseSlot();
85 this:GetParent():Hide();
86 </OnClick>
87 </Scripts>
88 </Button>
89 <Button name="$parentCancelButton" hidden="false" inherits="GameMenuButtonTemplate" text="Cancel">
90 <Size>
91 <AbsDimension x="100" y="25"/>
92 </Size>
93 <Anchors>
94 <Anchor point="BOTTOM" relativePoint="BOTTOM">
95 <Offset>
96 <AbsDimension x="55" y="15"/>
97 </Offset>
98 </Anchor>
99 </Anchors>
100 <Scripts>
101 <OnClick>
102 this:GetParent():Hide();
103 </OnClick>
104 </Scripts>
105 </Button>
106 </Frames>
107 <Scripts>
108 <OnShow>
109 CT_BankFrame_UpdateSlotPrice();
110 PlaySound("UChatScrollButton");
111 </OnShow>
112 <OnHide>
113 PlaySound("UChatScrollButton");
114 </OnHide>
115 </Scripts>
116 </Frame>
117 </Ui>