-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFishingBuddyMinimap.xml
executable file
·85 lines (84 loc) · 2.27 KB
/
FishingBuddyMinimap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<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/
..\FrameXML\UI.xsd">
<Script file="FishingBuddyMinimap.lua"/>
<Frame name="FishingBuddyMinimapFrame" parent="Minimap" enableMouse="false" frameStrata="MEDIUM" hidden="true">
<Size>
<AbsDimension x="33" y="33"/>
</Size>
<Anchors>
<Anchor point="CENTER" relativeTo="Minimap" relativePoint="CENTER"/>
</Anchors>
<Frames>
<Frame name="FishingBuddyMinimapMenu" inherits="UIDropDownMenuTemplate">
<Scripts>
<OnLoad>
this:SetFrameLevel(0);
UIDropDownMenu_SetWidth(180);
</OnLoad>
<OnShow>
UIDropDownMenu_Initialize(this, FishingBuddy.Minimap.Menu_Initialize, "MENU");
</OnShow>
</Scripts>
</Frame>
<Button name="FishingBuddyMinimapButton">
<Size>
<AbsDimension x="33" y="33"/>
</Size>
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<Texture name="FishingBuddyMinimapIcon" file="Interface\LootFrame\FishingLoot-Icon">
<Size>
<AbsDimension x="18" y="18"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<AbsDimension x="7" y="-6"/>
</Offset>
</Anchor>
</Anchors>
</Texture>
</Layer>
<Layer level="OVERLAY">
<Texture file="Interface\Minimap\MiniMap-TrackingBorder">
<Size>
<AbsDimension x="52" y="52"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT"/>
</Anchors>
</Texture>
</Layer>
</Layers>
<Scripts>
<OnLoad>
FishingBuddy.Minimap.Button_OnLoad();
</OnLoad>
<OnClick>
FishingBuddy.Minimap.Button_OnClick(arg1);
</OnClick>
<OnEvent>
FishingBuddy.Minimap.Button_OnEvent();
</OnEvent>
<OnEnter>
FishingBuddy.Minimap.Button_OnEnter();
</OnEnter>
<OnLeave>
FishingBuddy.Minimap.Button_OnLeave();
</OnLeave>
</Scripts>
</Button>
</Frames>
<Scripts>
<OnLoad>
FishingBuddy.Minimap.OnLoad();
</OnLoad>
<OnEvent>
FishingBuddy.Minimap.OnEvent();
</OnEvent>
</Scripts>
</Frame>
</Ui>