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="FishingOutfitFrame.lua"/>
4 <Button name="FishingOutfitFrameLabel" hidden="false" virtual="true">
5 <Size>
6 <AbsDimension x="90" y="16"/>
7 </Size>
8 <NormalText name="$parentText" inherits="GameFontNormalSmall" justifyH="LEFT">
9 <Size>
10 <AbsDimension x="0" y="0"/>
11 </Size>
12 <Anchors>
13 <Anchor point="LEFT">
14 <Offset>
15 <AbsDimension x="3" y="0"/>
16 </Offset>
17 </Anchor>
18 </Anchors>
19 </NormalText>
20 <HighlightText name="$parentHighlightText" inherits="GameFontHighlightSmall" justifyH="LEFT">
21 <Size>
22 <AbsDimension x="0" y="0"/>
23 </Size>
24 <Anchors>
25 <Anchor point="LEFT" relativeTo="$parentText" relativePoint="LEFT"/>
26 </Anchors>
27 </HighlightText>
28 <DisabledText name="$parentDisabledText" inherits="GameFontDisableSmall" justifyH="LEFT">
29 <Size>
30 <AbsDimension x="0" y="0"/>
31 </Size>
32 <Anchors>
33 <Anchor point="LEFT" relativeTo="$parentText" relativePoint="LEFT"/>
34 </Anchors>
35 </DisabledText>
36 <Scripts>
37 <OnEnter>
38 if ( this.tooltip ) then
39 GameTooltip:SetOwner(this, "ANCHOR_RIGHT");
40 GameTooltip:SetText(this.tooltip, nil, nil, nil, nil, 1);
41 GameTooltip:Show();
42 end
43 </OnEnter>
44 <OnLeave>
45 GameTooltip:Hide();
46 </OnLeave>
47 </Scripts>
48 </Button>
49  
50 <Frame name="FishingOutfitFrame" inherits="OutfitDisplayFrame" setAllPoints="true" enableMouse="true" parent="FishingBuddyFrame" hidden="true">
51 <Frames>
52 <Button name="FishingOutfitSkill" inherits="FishingOutfitFrameLabel">
53 <Anchors>
54 <Anchor point="RIGHT" relativeTo="$parentHandsSlotCheckBox" relativePoint="LEFT">
55 <Offset>
56 <AbsDimension x="-15" y="0"/>
57 </Offset>
58 </Anchor>
59 </Anchors>
60 </Button>
61 <Button name="FishingOutfitStyle" inherits="FishingOutfitFrameLabel">
62 <Anchors>
63 <Anchor point="TOPLEFT" relativeTo="FishingOutfitSkill" relativePoint="BOTTOMLEFT"/>
64 </Anchors>
65 </Button>
66 <Button name="FishingOutfitSwitchButton" inherits="UIPanelButtonTemplate" text="" hidden="false">
67 <Size>
68 <AbsDimension x="160" y="21"/>
69 </Size>
70 <Anchors>
71 <Anchor point="TOP" relativeTo="FishingOutfitFrame" relativePoint="TOP">
72 <Offset>
73 <AbsDimension x="0" y="-48"/>
74 </Offset>
75 </Anchor>
76 </Anchors>
77 <Scripts>
78 <OnClick>
79 FishingBuddy.OutfitFrame.Button_OnClick();
80 </OnClick>
81 <OnEnter>
82 GameTooltip:SetText(FishingBuddy.SWITCHOUTFIT_INFO);
83 GameTooltip:Show();
84 </OnEnter>
85 <OnLeave>
86 GameTooltip:Hide();
87 </OnLeave>
88 </Scripts>
89 </Button>
90 </Frames>
91 <Scripts>
92 <OnLoad>
93 FishingBuddy.OutfitFrame.OnLoad();
94 </OnLoad>
95 <OnShow>
96 FishingBuddy.OutfitFrame.OnShow();
97 </OnShow>
98 <OnHide>
99 FishingBuddy.OutfitFrame.OnHide();
100 </OnHide>
101 <OnMouseWheel>
102 return;
103 </OnMouseWheel>
104 </Scripts>
105 </Frame>
106 </Ui>