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="ClassIcons.lua" /> |
||
4 | |||
5 | <Frame name="UnitFrameClassIconTemplate" level="OVERLAY" hidden="true" virtual="true"> |
||
6 | <Size> |
||
7 | <AbsDimension x="32" y="32"/> |
||
8 | </Size> |
||
9 | <Anchors> |
||
10 | <Anchor point="TOPLEFT" relativeTo="$parent" relativePoint="TOPLEFT"> |
||
11 | <Offset> |
||
12 | <AbsDimension x="85" y="-5"/> |
||
13 | </Offset> |
||
14 | </Anchor> |
||
15 | </Anchors> |
||
16 | <Layers> |
||
17 | <Layer> |
||
18 | <Texture name="$parentTexture"> |
||
19 | <Size> |
||
20 | <AbsDimension x="32" y="32"/> |
||
21 | </Size> |
||
22 | </Texture> |
||
23 | </Layer> |
||
24 | </Layers> |
||
25 | <Scripts> |
||
26 | <OnLoad> |
||
27 | ClassIcons_Icon_OnLoad(); |
||
28 | </OnLoad> |
||
29 | </Scripts> |
||
30 | </Frame> |
||
31 | |||
32 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconTemplate" parent="TargetFrame"> |
||
33 | <Scripts> |
||
34 | <OnLoad> |
||
35 | this:SetFrameLevel(this:GetFrameLevel()+2); |
||
36 | this:ClearAllPoints(); |
||
37 | this:SetPoint("TOPRIGHT", "TargetFrame", "TOPRIGHT", -85, -5); |
||
38 | </OnLoad> |
||
39 | </Scripts> |
||
40 | </Frame> |
||
41 | |||
42 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconTemplate" parent="PlayerFrame" /> |
||
43 | |||
44 | <Frame name="UnitFrameClassIconSmallTemplate" level="OVERLAY" hidden="true" virtual="true"> |
||
45 | <Size> |
||
46 | <AbsDimension x="20" y="20"/> |
||
47 | </Size> |
||
48 | <Anchors> |
||
49 | <Anchor point="TOPLEFT" relativeTo="$parent" relativePoint="TOPLEFT"> |
||
50 | <Offset> |
||
51 | <AbsDimension x="30" y="0"/> |
||
52 | </Offset> |
||
53 | </Anchor> |
||
54 | </Anchors> |
||
55 | <Layers> |
||
56 | <Layer> |
||
57 | <Texture name="$parentTexture"> |
||
58 | <Size> |
||
59 | <AbsDimension x="20" y="20"/> |
||
60 | </Size> |
||
61 | </Texture> |
||
62 | </Layer> |
||
63 | </Layers> |
||
64 | <Scripts> |
||
65 | <OnLoad> |
||
66 | ClassIcons_Icon_OnLoad(); |
||
67 | </OnLoad> |
||
68 | </Scripts> |
||
69 | </Frame> |
||
70 | |||
71 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconSmallTemplate" parent="PartyMemberFrame1" id="1" /> |
||
72 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconSmallTemplate" parent="PartyMemberFrame2" id="2" /> |
||
73 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconSmallTemplate" parent="PartyMemberFrame3" id="3" /> |
||
74 | <Frame name="$parentClassIcon" inherits="UnitFrameClassIconSmallTemplate" parent="PartyMemberFrame4" id="4" /> |
||
75 | |||
76 | <Frame name="ClassIcons" hidden="true"> |
||
77 | <Scripts> |
||
78 | <OnLoad> |
||
79 | ClassIcons_OnLoad(); |
||
80 | </OnLoad> |
||
81 | <OnEvent> |
||
82 | ClassIcons_OnEvent(event); |
||
83 | </OnEvent> |
||
84 | </Scripts> |
||
85 | </Frame> |
||
86 | |||
87 | </Ui> |