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="UndressButton.lua"/>
4 <Button name="DressUpFrameUndressButton" parent="DressUpFrame" inherits="UIPanelButtonTemplate" text="Undress">
5 <Size>
6 <AbsDimension x="80" y="22"/>
7 </Size>
8 <Anchors>
9 <Anchor point="RIGHT" relativeTo="DressUpFrameResetButton" relativePoint="LEFT">
10 <Offset>
11 <AbsDimension x="0" y="0"/>
12 </Offset>
13 </Anchor>
14 </Anchors>
15 <Scripts>
16 <OnLoad>
17 UBLoad();
18 </OnLoad>
19 <OnEvent>
20 UBEvent();
21 </OnEvent>
22 <OnClick>
23 DressUpModel:Undress();
24 PlaySound("gsTitleOptionOK");
25 </OnClick>
26 </Scripts>
27 </Button>
28 <Button name="DressUpFrameDressTargetButton" parent="DressUpFrame" inherits="UIPanelButtonTemplate" text="Target">
29 <Size>
30 <AbsDimension x="80" y="22"/>
31 </Size>
32 <Anchors>
33 <Anchor point="RIGHT" relativeTo="DressUpFrameUndressButton" relativePoint="LEFT">
34 <Offset>
35 <AbsDimension x="0" y="0"/>
36 </Offset>
37 </Anchor>
38 </Anchors>
39 <Scripts>
40 <OnShow>
41 UBReset();
42 </OnShow>
43 <OnClick>
44 UBDressUpTarget();
45 </OnClick>
46 </Scripts>
47 </Button>
48 <Button name="AuctionDressUpFrameUndressButton" parent="AuctionDressUpModel" inherits="UIPanelButtonTemplate" text="Undress">
49 <Size>
50 <AbsDimension x="70" y="22"/>
51 </Size>
52 <Anchors>
53 <Anchor point="BOTTOM" relativeTo="AuctionDressUpFrameResetButton" relativePoint="TOP">
54 <Offset>
55 <AbsDimension x="0" y="2"/>
56 </Offset>
57 </Anchor>
58 </Anchors>
59 <Scripts>
60 <OnClick>
61 AuctionDressUpModel:Undress();
62 PlaySound("gsTitleOptionOK");
63 </OnClick>
64 </Scripts>
65 </Button>
66 <Button name="AuctionDressUpFrameUndressResetButton" parent="AuctionDressUpModel" inherits="UIPanelButtonTemplate" text="Undress">
67 <Size>
68 <AbsDimension x="80" y="22"/>
69 </Size>
70 <Scripts>
71 <OnClick>
72 AuctionDressUpModel:Undress();
73 PlaySound("gsTitleOptionOK");
74 </OnClick>
75 </Scripts>
76 </Button>
77 </Ui>