vanilla-wow-addons – Blame information for rev 1
?pathlinks?
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 | <Script file="Warmup.lua"/> |
||
4 | <Frame name="WarmupFrame" parent="UIParent"> |
||
5 | <Scripts> |
||
6 | <OnLoad> |
||
7 | Warmup:OnLoad(); |
||
8 | </OnLoad> |
||
9 | <OnUpdate> |
||
10 | Warmup:OnUpdate(); |
||
11 | </OnUpdate> |
||
12 | <OnEvent> |
||
13 | Warmup:OnEvent(event); |
||
14 | </OnEvent> |
||
15 | </Scripts> |
||
16 | </Frame> |
||
17 | |||
18 | |||
19 | <Frame name="WarmupOutputFrame" enableMouse="true" movable="true" parent="UIParent" hidden="true"> |
||
20 | <Anchors> |
||
21 | <Anchor point="LEFT"/> |
||
22 | </Anchors> |
||
23 | <Size> |
||
24 | <AbsDimension x="430" y="480"/> |
||
25 | </Size> |
||
26 | <TitleRegion setAllPoints="true"/> |
||
27 | <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true"> |
||
28 | <EdgeSize> |
||
29 | <AbsValue val="16"/> |
||
30 | </EdgeSize> |
||
31 | <TileSize> |
||
32 | <AbsValue val="16"/> |
||
33 | </TileSize> |
||
34 | <BackgroundInsets> |
||
35 | <AbsInset left="5" right="5" top="5" bottom="5"/> |
||
36 | </BackgroundInsets> |
||
37 | </Backdrop> |
||
38 | <Frames> |
||
39 | <ScrollingMessageFrame name="WarmupChatFrame" displayDuration="604800.0" maxLines="500"> |
||
40 | <Anchors> |
||
41 | <Anchor point="TOPLEFT"> |
||
42 | <Offset> |
||
43 | <AbsDimension x="7" y="-7"/> |
||
44 | </Offset> |
||
45 | </Anchor> |
||
46 | <Anchor point="BOTTOMRIGHT"> |
||
47 | <Offset> |
||
48 | <AbsDimension x="-8" y="9"/> |
||
49 | </Offset> |
||
50 | </Anchor> |
||
51 | </Anchors> |
||
52 | <Scripts> |
||
53 | <OnLoad> |
||
54 | </OnLoad> |
||
55 | </Scripts> |
||
56 | <FontString inherits="ChatFontNormal" justifyH="LEFT"/> |
||
57 | </ScrollingMessageFrame> |
||
58 | </Frames> |
||
59 | |||
60 | <Scripts> |
||
61 | <OnLoad> |
||
62 | -- set our default colors |
||
63 | this:SetBackdropBorderColor(0.9, 0.82, 0.0); |
||
64 | this:SetBackdropColor(0, 0, 0); |
||
65 | </OnLoad> |
||
66 | </Scripts> |
||
67 | </Frame> |
||
68 | </Ui> |