comparison Options.lua @ 10:f3a7bfebc283

Version 0.33
author Flick <flickerstreak@gmail.com>
date Tue, 20 Mar 2007 21:37:38 +0000
parents c05fd3e18b4f
children 2b2dd11e5cc2
comparison
equal deleted inserted replaced
9:650f75d08952 10:f3a7bfebc283
30 name = "unlock", 30 name = "unlock",
31 desc = "Unlocks action bars and enables rearrangement", 31 desc = "Unlocks action bars and enables rearrangement",
32 func = "Unlock", 32 func = "Unlock",
33 }, 33 },
34 34
35 bindings = { 35 keybind = {
36 type = "execute", 36 type = "toggle",
37 name = "bindings", 37 name = "keybind",
38 desc = "Launches keybinding setup mode", 38 desc = "keybind setup mode",
39 func = function() ReBound:Enable() end, 39 get = "GetKeybindMode",
40 set = "SetKeybindMode",
40 }, 41 },
41 42
42 hideart = { 43 hideart = {
43 type = "toggle", 44 type = "toggle",
44 name = "hideart", 45 name = "hideart",
69 type = "execute", 70 type = "execute",
70 name = "resetall", 71 name = "resetall",
71 desc = "Resets to single bar in the default position", 72 desc = "Resets to single bar in the default position",
72 func = "ResetBars", 73 func = "ResetBars",
73 }, 74 },
74
75 --[[
76 resync = {
77 type = "execute",
78 name = "resync",
79 desc = "Re-orders action IDs sequentially amongst bars",
80 func = "ResyncActionIDs",
81 disabled = true -- not yet implemented
82 },
83 ]]
84 } 75 }
85 } 76 }
86 77
87 78
88 ReActionGlobalMenuOptions = { 79 ReActionGlobalMenuOptions = {
115 args = GenerateNewBarArgs(), 106 args = GenerateNewBarArgs(),
116 desc = "Create a new bar", 107 desc = "Create a new bar",
117 order = 3, 108 order = 3,
118 }, 109 },
119 110
120 bindings = { 111 keybind = {
121 type = "execute", 112 type = "toggle",
122 name = "Set Key Bindings", 113 name = "Set Key Bindings",
123 desc = "Launches keybinding setup mode", 114 desc = "keybind setup mode",
124 func = function() ReBound:Enable() end, 115 get = "GetKeybindMode",
116 set = "SetKeybindMode",
125 order = 4, 117 order = 4,
126 }, 118 },
127 119
128 hidedefault = { 120 hidedefault = {
129 type = "toggle", 121 type = "toggle",
132 get = "IsArtHidden", 124 get = "IsArtHidden",
133 set = "ToggleHideArt", 125 set = "ToggleHideArt",
134 order = 6, 126 order = 6,
135 }, 127 },
136 128
137 --[[
138 resync = {
139 type = "execute",
140 name = "Re-sync Action IDs",
141 desc = "Re-orders action IDs sequentially amongst bars",
142 func = "ResyncActionIDs",
143 disabled = true, -- not yet implemented
144 },
145 ]]
146
147 } 129 }
148 } 130 }
149 131
150 132
151 133