vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.0"):new("ag_UnitFrames")
2  
3 aUF.Layouts.PerfectRaid = {
4 Name = "PerfectRaid",
5 Tip = "PerfectRaid",
6 ResizeBars = false,
7 BackgroundBarColor = false,
8 AlphaBar = false,
9 RaidColorName == true,
10 ComboGFX = true,
11  
12 ThemeData = {
13 all = {
14 FrameHeight = 22,
15 FrameWidth = 130,
16  
17 Combo1 = { Point = "BOTTOMRIGHT",
18 RelativePoint = "BOTTOMRIGHT",
19 x = 1,
20 y = -1,
21 Height = 10,
22 HeightAdd = 0,
23 Width = 10,
24 },
25  
26 HealthBar_BG = { Point = "LEFT",
27 RelativeTo = "NameLabel",
28 RelativePoint = "RIGHT",
29 x = 5,
30 y = -0.5,
31 Visibility = {"HealthBar_BG","HealthBar","BarHealthText","HealthText",},
32 Height = 7,
33 Width = 25,
34 },
35  
36 ManaBar_BG = { Point = "TOPLEFT",
37 RelativeTo = "HealthBar_BG",
38 RelativePoint = "BOTTOMLEFT",
39 x = 0,
40 y = -2,
41 Visibility = {"ManaBar_BG","ManaBar","BarManaText","ManaText","ClassText",},
42 Height = 4,
43 Width = 25,
44 HeightAdd = 6,
45 Hidden = true,
46 },
47  
48 XPBar_BG = { Point = "TOPLEFT",
49 RelativeTo = "ManaBar_BG",
50 RelativeToSecondary = "HealthBar_BG",
51 RelativePoint = "BOTTOMLEFT",
52 x = 0,
53 y = -2,
54 Visibility = {"XPBar_BG","XPBar","XPBar_Rest"},
55 Width = 25,
56 Height = 3,
57 HeightAdd = 5,
58 Hidden = true,
59 },
60  
61 NameBackground= { Point = "TOPLEFT",
62 RelativePoint = "TOPLEFT",
63 x=6,
64 y=-2,
65 Height = 18,
66 Width = 25,
67 },
68 Happiness = { Point = "TOPLEFT",
69 RelativePoint = "TOPLEFT",
70 x=6,
71 y=-2,
72 Height = 18,
73 Width = 25,
74 Visibility = {"Happiness",},
75 },
76  
77 NameLabel = { Font = L"Fonts\\FRIZQT__.TTF",
78 FontSize = 9,
79 Width = 55,
80 Point = "TOPLEFT",
81 RelativePoint = "TOPLEFT",
82 x =8,
83 y =-10,
84 },
85  
86 ClassText = { Font = L"Fonts\\FRIZQT__.TTF",
87 FontSize = 9,
88 Justify = "LEFT",
89 Width = 60,
90 Point = "TOPLEFT",
91 RelativePoint = "TOPLEFT",
92 x =-5,
93 y =0,
94 Hidden = true,
95 },
96  
97 HealthText = { Font = "Fonts\\FRIZQT__.TTF",
98 FontSize = 8,
99 Point = "RIGHT",
100 RelativeTo = "HealthBar_BG",
101 RelativePoint = "RIGHT",
102 x=-2,
103 y=0,
104 Width = 60,
105 },
106  
107 ManaText = { Font = "Fonts\\FRIZQT__.TTF",
108 FontSize = 8,
109 Point = "RIGHT",
110 RelativeTo = "ManaBar_BG",
111 RelativePoint = "RIGHT",
112 x=-2,
113 y=0.5,
114 Width = 60,
115 },
116  
117 BarHealthText = { Font = "Fonts\\FRIZQT__.TTF",
118 FontSize = 8,
119 RelativeTo = "HealthBar_BG",
120 Point = "CENTER",
121 RelativePoint = "CENTER",
122 x=0,
123 y=0,
124 Width = 60,
125 },
126  
127 BarManaText = { Font = "Fonts\\FRIZQT__.TTF",
128 FontSize = 8,
129 RelativeTo = "ManaBar_BG",
130 Point = "CENTER",
131 RelativePoint = "CENTER",
132 x=0,
133 y=0,
134 Width = 60,
135 },
136  
137 PVPIcon = { Point = "TOPRIGHT",
138 RelativePoint = "TOPRIGHT",
139 x = 14,
140 y= 2,
141 },
142  
143 InCombatIcon = { Hidden = true,
144 },
145  
146 RestingIcon = { Hidden = true,
147 },
148  
149 RaidTargetIcon = { Point = "CENTER",
150 RelativePoint = "TOP",
151 x = 0,
152 y = -3,
153 },
154  
155 LeaderIcon = { Point = "TOPLEFT",
156 RelativePoint = "TOPLEFT",
157 x = -2,
158 y= 2,
159 },
160  
161 MasterIcon = { Point = "TOPLEFT",
162 RelativePoint = "TOPLEFT",
163 x = -5,
164 y= 2,
165 },
166 }
167 }
168 }