-
Notifications
You must be signed in to change notification settings - Fork 0
/
PileSeller.xml
76 lines (75 loc) · 2.23 KB
/
PileSeller.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
<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">
<Button name="PileSeller_MinimapButton" parent="Minimap" enableMouse="true" movable="true" hidden="false">
<Size>
<AbsDimension x="33" y="33"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT"/>
</Anchors>
<Layers>
<Layer level="OVERLAY">
<Texture name="PileSeller_MinimapButton_Icon" file="Interface\Addons\PileSeller\media\logo">
<Size>
<AbsDimension x="21" y="21"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<AbsDimension x="7" y="-6"/>
</Offset>
</Anchor>
</Anchors>
</Texture>
<Texture file="Interface\Minimap\MiniMap-TrackingBorder">
<Size>
<AbsDimension x="56" y="56"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT"/>
</Anchors>
</Texture>
</Layer>
<Layer level="ARTWORK">
<Texture name="$parentGlow" file="Interface\Minimap\TempleofKotmogu_ball_green">
<Size>
<AbsDimension x="52" y="52" />
</Size>
<Anchors>
<Anchor point="CENTER" relativeTo="$parent"/>
</Anchors>
<Color r="1" g="1" b="1" a="0" />
</Texture>
</Layer>
</Layers>
<Frames>
<Frame name="PileSeller_MinimapButton_DraggingFrame" hidden="true">
<Scripts>
<OnUpdate>
PileSeller_MinimapButton_DraggingFrame_OnUpdate()
</OnUpdate>
</Scripts>
</Frame>
</Frames>
<HighlightTexture alphaMode="ADD" file="Interface\Minimap\UI-Minimap-ZoomButton-Highlight"/>
<Scripts>
<OnLoad>
PileSeller_MinimapButton:RegisterForClicks("LeftButtonUp","RightButtonUp")
PileSeller_MinimapButton:RegisterForDrag("LeftButton","RightButton")
</OnLoad>
<OnDragStart>
PileSeller_MinimapButton:LockHighlight()
PileSeller_MinimapButton_DraggingFrame:Show()
</OnDragStart>
<OnDragStop>
PileSeller_MinimapButton:UnlockHighlight()
PileSeller_MinimapButton_DraggingFrame:Hide()
</OnDragStop>
<OnClick>
PileSeller_MinimapButton_OnClick()
</OnClick>
<OnEnter> PileSeller_MinimapButton_OnEnter(self) </OnEnter>
<OnLeave> PileSeller_MinimapButton_OnLeave(self) </OnLeave>
</Scripts>
</Button>
</Ui>