-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClutchMessage.xml
More file actions
57 lines (57 loc) · 2.46 KB
/
ClutchMessage.xml
File metadata and controls
57 lines (57 loc) · 2.46 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
<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">
<Frame name="ClutchMessage" toplevel="true" parent="UIParent" movable="true" clampedToScreen="true" enableMouse="true" hidden="true">
<Size>
<AbsDimension x="200" y="100"/>
</Size>
<TitleRegion>
<Size x="200" y="15"/>
<Anchors>
<Anchor point="TOP"/>
</Anchors>
</TitleRegion>
<Anchors>
<Anchor point="BOTTOM" relativeTo="MainMenuBar" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="50"/>
</Offset>
</Anchor>
</Anchors>
<Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<EdgeSize>
<AbsValue val="16"/>
</EdgeSize>
<TileSize>
<AbsValue val="16"/>
</TileSize>
<BackgroundInsets>
<AbsInset left="4" right="4" top="4" bottom="4"/>
</BackgroundInsets>
</Backdrop>
<Scripts>
<OnLoad>
self:SetBackdropBorderColor(0.5, 0.5, 0.5, 0.5);
self:SetBackdropColor(TOOLTIP_DEFAULT_BACKGROUND_COLOR.r, TOOLTIP_DEFAULT_BACKGROUND_COLOR.g, TOOLTIP_DEFAULT_BACKGROUND_COLOR.b, 1);
</OnLoad>
<OnShow>
ClutchMessageText:SetWidth("190")
</OnShow>
</Scripts>
<Layers>
<Layer level="OVERLAY">
<FontString name="$parentTitle" font="Fonts\FRIZQT__.TTF" text="Clutch" justifyH="LEFT" justifyV="TOP">
<Color r="1.0" g="0.82" b="0"/>
<FontHeight val="12"/>
<Anchors>
<Anchor point="TOP" relativeTo="$parent" x="0" y="-5" />
</Anchors>
</FontString>
<FontString name="$parentText" font="Fonts\FRIZQT__.TTF" text="Default" justifyH="CENTER" justifyV="CENTER">
<FontHeight val="10"/>
<Anchors>
<Anchor point="CENTER" relativeTo="$parent" x="0" y="0" />
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
</Ui>