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 <Frame name="HonorFrameTextButtonTemplate" enableMouse="true" virtual="true">
4 <Size>
5 <AbsDimension x="278" y="12"/>
6 </Size>
7 <Scripts>
8 <OnEnter>
9 GameTooltip_SetDefaultAnchor(GameTooltip, this)
10 GameTooltip:SetText(this.title, HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
11 GameTooltip:AddLine(this.tooltip, NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b, 1);
12 GameTooltip:Show();
13 </OnEnter>
14 <OnLeave>
15 GameTooltip:Hide();
16 </OnLeave>
17 </Scripts>
18 </Frame>
19 <Frame name="HonorFrameHKButtonTemplate" inherits="HonorFrameTextButtonTemplate" virtual="true">
20 <Layers>
21 <Layer level="BACKGROUND">
22 <FontString name="$parentText" inherits="GameFontHighlightSmall" text="HONORABLE_KILLS" justifyH="LEFT">
23 <Anchors>
24 <Anchor point="TOPLEFT"/>
25 </Anchors>
26 </FontString>
27 <FontString name="$parentValue" inherits="GameFontGreenSmall">
28 <Anchors>
29 <Anchor point="RIGHT" relativePoint="LEFT">
30 <Offset>
31 <AbsDimension x="278" y="1"/>
32 </Offset>
33 </Anchor>
34 </Anchors>
35 </FontString>
36 </Layer>
37 </Layers>
38 <Scripts>
39 <OnLoad>
40 this.title = HONORABLE_KILLS;
41 this.tooltip = NEWBIE_TOOLTIP_HONORABLE_KILLS;
42 </OnLoad>
43 </Scripts>
44 </Frame>
45 <Frame name="HonorFrameDKButtonTemplate" inherits="HonorFrameTextButtonTemplate" virtual="true">
46 <Layers>
47 <Layer level="BACKGROUND">
48 <FontString name="$parentText" inherits="GameFontHighlightSmall" text="DISHONORABLE_KILLS" justifyH="LEFT">
49 <Anchors>
50 <Anchor point="TOPLEFT"/>
51 </Anchors>
52 </FontString>
53 <FontString name="$parentValue" inherits="GameFontRedSmall">
54 <Anchors>
55 <Anchor point="RIGHT" relativePoint="LEFT">
56 <Offset>
57 <AbsDimension x="278" y="1"/>
58 </Offset>
59 </Anchor>
60 </Anchors>
61 </FontString>
62 </Layer>
63 </Layers>
64 <Scripts>
65 <OnLoad>
66 this.title = DISHONORABLE_KILLS;
67 this.tooltip = NEWBIE_TOOLTIP_DISHONORABLE_KILLS;
68 </OnLoad>
69 </Scripts>
70 </Frame>
71 <Frame name="HonorFrameContributionButtonTemplate" inherits="HonorFrameTextButtonTemplate" virtual="true">
72 <Layers>
73 <Layer level="BACKGROUND">
74 <FontString name="$parentText" inherits="GameFontHighlightSmall" text="HONOR_CONTRIBUTION_POINTS" justifyH="LEFT">
75 <Anchors>
76 <Anchor point="TOPLEFT"/>
77 </Anchors>
78 </FontString>
79 <FontString name="$parentValue" inherits="GameFontNormalSmall">
80 <Anchors>
81 <Anchor point="RIGHT" relativePoint="LEFT">
82 <Offset>
83 <AbsDimension x="278" y="1"/>
84 </Offset>
85 </Anchor>
86 </Anchors>
87 </FontString>
88 </Layer>
89 </Layers>
90 <Scripts>
91 <OnLoad>
92 this.title = HONOR_CONTRIBUTION_POINTS;
93 this.tooltip = NEWBIE_TOOLTIP_HONOR_CONTRIBUTION_POINTS;
94 </OnLoad>
95 </Scripts>
96 </Frame>
97 <Frame name="HonorFrameStandingButtonTemplate" inherits="HonorFrameTextButtonTemplate" virtual="true">
98 <Layers>
99 <Layer level="BACKGROUND">
100 <FontString name="$parentText" inherits="GameFontHighlightSmall" text="HONOR_STANDING" justifyH="LEFT">
101 <Anchors>
102 <Anchor point="TOPLEFT"/>
103 </Anchors>
104 </FontString>
105 <FontString name="$parentValue" inherits="GameFontNormalSmall">
106 <Anchors>
107 <Anchor point="RIGHT" relativePoint="LEFT">
108 <Offset>
109 <AbsDimension x="278" y="1"/>
110 </Offset>
111 </Anchor>
112 </Anchors>
113 </FontString>
114 </Layer>
115 </Layers>
116 <Scripts>
117 <OnLoad>
118 this.title = HONOR_STANDING;
119 this.tooltip = NEWBIE_TOOLTIP_HONOR_STANDING;
120 </OnLoad>
121 </Scripts>
122 </Frame>
123 <Frame name="HonorFrameRankButtonTemplate" inherits="HonorFrameTextButtonTemplate" virtual="true">
124 <Layers>
125 <Layer level="BACKGROUND">
126 <FontString name="$parentText" inherits="GameFontHighlightSmall" text="HONOR_HIGHEST_RANK" justifyH="LEFT">
127 <Anchors>
128 <Anchor point="TOPLEFT"/>
129 </Anchors>
130 </FontString>
131 <FontString name="$parentValue" inherits="GameFontNormalSmall">
132 <Anchors>
133 <Anchor point="RIGHT" relativePoint="LEFT">
134 <Offset>
135 <AbsDimension x="278" y="1"/>
136 </Offset>
137 </Anchor>
138 </Anchors>
139 </FontString>
140 </Layer>
141 </Layers>
142 <Scripts>
143 <OnLoad>
144 this.title = RANK;
145 this.tooltip = NEWBIE_TOOLTIP_RANK;
146 </OnLoad>
147 </Scripts>
148 </Frame>
149 </Ui>