comparison Defaults.lua @ 1:c11ca1d8ed91

Version 0.1
author Flick <flickerstreak@gmail.com>
date Tue, 20 Mar 2007 21:03:57 +0000
parents
children f920db5fc6b1
comparison
equal deleted inserted replaced
0:4e2ce2894c21 1:c11ca1d8ed91
1 -- ReAction default variable tables
2
3
4 -- configuration options for ReActionButton groups
5 ReActionButtonConfigDefaults = {
6 type = "ReActionButton",
7 actionIDs = { },
8 keyBindLoc = "TOPLEFT",
9 keyBindColorCode = true,
10 stackCountLoc = "BOTTOMRIGHT",
11 showKeyBind = true,
12 showNumericCooldown = false,
13 showStackCount = true,
14 showMacroName = true,
15 showGrid = true,
16 }
17
18 ReActionBarConfigDefaults = {
19 visibility = true,
20 size = 36,
21 spacing = 6,
22 rows = 1,
23 columns = 12,
24 pages = 1,
25 opacity = 100,
26 anchor = {
27 to = "UIParent",
28 point = "CENTER",
29 relPoint = "CENTER",
30 x = 0,
31 y = 0
32 },
33 btnConfig = ReActionButtonConfigDefaults
34 }
35
36
37
38 -- default variables
39 ReActionProfileDefaults = {
40
41 -- global options
42 hideArt = false,
43
44
45 -- default layout replicates Blizzard layout
46 bars = {
47
48 -- main paged action bar
49 [1] = {
50 visibility = true,
51 size = 36,
52 spacing = 6,
53 rows = 1,
54 columns = 12,
55 pages = 5,
56 opacity = 100,
57 anchor = {
58 to = "UIParent",
59 point = "BOTTOMRIGHT",
60 relPoint = "BOTTOM",
61 x = 2,
62 y = -4
63 },
64 btnConfig = {
65 type = "ReActionButton",
66 actionIDs = { },
67 keyBindLoc = "TOPLEFT",
68 keyBindColorCode = true,
69 stackCountLoc = "BOTTOMRIGHT",
70 showKeyBind = true,
71 showNumericCooldown = false,
72 showStackCount = true,
73 showMacroName = true,
74 showGrid = true,
75 }
76
77 },
78 }
79 }