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="FishingBuddyInfoBar.lua"/>
4 <!-- InfoBar support -->
5 <Button name="IB_FishingBuddy" inherits="IB_BaseFrame" parent="InfoBarFrame">
6 <Size>
7 <AbsDimension x="16" y="16" />
8 </Size>
9 <Layers>
10 <Layer level="ARTWORK">
11 <Texture name="$parentIcon" file="Interface\AddOns\FishingBuddy\Icons\Fishing-Icon">
12 <Size>
13 <AbsDimension x="16" y="16"/>
14 </Size>
15 <Anchors>
16 <Anchor point="LEFT" />
17 </Anchors>
18 </Texture>
19 </Layer>
20 </Layers>
21 <Frames>
22 <Frame name="FishingBuddyInfoBarMenu" inherits="UIDropDownMenuTemplate">
23 <Scripts>
24 <OnLoad>
25 this:SetFrameLevel(0);
26 UIDropDownMenu_SetWidth(180);
27 </OnLoad>
28 <OnShow>
29 UIDropDownMenu_Initialize(this, FishingBuddy.InfoBar.Menu_Initialize, "MENU");
30 </OnShow>
31 </Scripts>
32 </Frame>
33 </Frames>
34 <Scripts>
35 <OnLoad>
36 FishingBuddy.InfoBar.OnLoad();
37 </OnLoad>
38 <OnClick>
39 FishingBuddy.InfoBar.OnClick(arg1);
40 </OnClick>
41 </Scripts>
42 </Button>
43 </Ui>