-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathReputationPane.xml
More file actions
executable file
·103 lines (97 loc) · 4.12 KB
/
ReputationPane.xml
File metadata and controls
executable file
·103 lines (97 loc) · 4.12 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<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="FFF_ExpandCollapseButtonTemplate" mixin="FFF_ExpandCollapseButtonMixin" virtual="true">
<Size x="24" y="24"/>
<NormalTexture atlas="campaign_headericon_closed" useAtlasSize="true"/>
<PushedTexture atlas="campaign_headericon_closedpressed" useAtlasSize="true"/>
<HighlightTexture file="Interface\Buttons\UI-PlusButton-Hilight" alphaMode="ADD"/>
<Scripts>
<OnClick method="OnClick"/>
<OnEnter method="OnEnter"/>
<OnLeave function="GameTooltip_Hide"/>
</Scripts>
</Button>
<EditBox name="FFF_SearchBoxTemplate" inherits="SearchBoxTemplate" mixin="FFF_SearchBoxMixin" letters="40" hidden="false" virtual="True">
<Size x="107" y="30"/>
<Scripts>
<OnLoad inherit="append" method="OnLoad"/>
<OnEnterPressed inherit="append" method="OnEnterPressed"/>
<OnTextChanged inherit="append" method="OnTextChanged"/>
<OnEditFocusLost inherit="append" method="OnEditFocusLost"/>
<OnEditFocusGained inherit="append" method="OnEditFocusGained"/>
<OnKeyDown inherit="append" method="OnKeyDown"/>
</Scripts>
</EditBox>
<Button name="FFF_SearchResultButtonTemplate" mixin="FFF_SearchResultButtonMixin" parentArray="searchResults" virtual="true">
<Size x="120" y="14"/>
<Scripts>
<OnClick method="OnClick"/>
<OnLoad method="OnLoad"/>
</Scripts>
<ButtonText name="$parentText"/>
<NormalFont style="GameFontNormal"/>
<HighlightFont style="GameFontHighlight"/>
<DisabledFont style="GameFontDisable"/>
<HighlightTexture inherits="UIPanelButtonHighlightTexture"/>
</Button>
<Frame name="FFF_SearchResultsContainer" parent="ReputationFrame" enableMouse="true" frameStrata="TOOLTIP" hidden="true" inherits="TooltipBackdropTemplate">
<Size x="5" y="5"/>
<Frames>
<Button parentKey="result1" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<!--This 10 is a magic number used in AutoComplete_Update when checking whether the AutoComplete box should be above or below the EditBox. Please update the number there if you change it here-->
<AbsDimension x="0" y="-10"/>
</Offset>
</Anchor>
</Anchors>
</Button>
<Button parentKey="result2" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result1" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result3" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result2" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result4" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result3" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result5" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result4" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result6" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result5" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result7" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result6" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result8" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result7" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
<Button parentKey="result9" inherits="FFF_SearchResultButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeKey="$parent.result8" relativePoint="BOTTOMLEFT"/>
</Anchors>
</Button>
</Frames>
<Scripts>
<OnLoad>
SharedTooltip_SetBackdropStyle(self, TOOLTIP_BACKDROP_STYLE_DEFAULT)
</OnLoad>
</Scripts>
</Frame>
</Ui>