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