132 lines
3.3 KiB
Lua
132 lines
3.3 KiB
Lua
--[[ $Id$ ]]
|
|
local L = LibStub("AceLocale-3.0"):GetLocale("Bartender4")
|
|
local Bar = Bartender4.Bar.prototype
|
|
|
|
--[[===================================================================================
|
|
Bar Options
|
|
===================================================================================]]--
|
|
|
|
local barregistry = Bartender4.Bar.barregistry
|
|
|
|
-- option utilty functions
|
|
local optGetter, optSetter
|
|
do
|
|
local getBar, optionMap, callFunc
|
|
-- maps option keys to function names
|
|
optionMap = {
|
|
alpha = "ConfigAlpha",
|
|
scale = "ConfigScale",
|
|
fadeout = "FadeOut",
|
|
fadeoutalpha = "FadeOutAlpha",
|
|
fadeoutdelay = "FadeOutDelay",
|
|
}
|
|
|
|
-- retrieves a valid bar object from the barregistry table
|
|
function getBar(id)
|
|
local bar = barregistry[tostring(id)]
|
|
assert(bar, ("Invalid bar id in options table. (%s)"):format(id))
|
|
return bar
|
|
end
|
|
|
|
-- calls a function on the bar
|
|
function callFunc(bar, type, option, ...)
|
|
local func = type .. (optionMap[option] or option)
|
|
assert(bar[func], ("Invalid get/set function %s in bar %s."):format(func, bar.id))
|
|
return bar[func](bar, ...)
|
|
end
|
|
|
|
-- universal function to get a option
|
|
function optGetter(info)
|
|
local bar = getBar(info[2])
|
|
local option = info[#info]
|
|
return callFunc(bar, "Get", option)
|
|
end
|
|
|
|
-- universal function to set a option
|
|
function optSetter(info, ...)
|
|
local bar = getBar(info[2])
|
|
local option = info[#info]
|
|
return callFunc(bar, "Set", option, ...)
|
|
end
|
|
end
|
|
|
|
local options
|
|
function Bar:GetOptionObject()
|
|
local otbl = {
|
|
general = {
|
|
type = "group",
|
|
cmdInline = true,
|
|
name = L["General Settings"],
|
|
order = 1,
|
|
args = {
|
|
styleheader = {
|
|
order = 10,
|
|
type = "header",
|
|
name = L["Bar Style & Layout"],
|
|
},
|
|
alpha = {
|
|
order = 20,
|
|
name = L["Alpha"],
|
|
desc = L["Configure the alpha of the bar."],
|
|
type = "range",
|
|
min = .1, max = 1, bigStep = 0.1,
|
|
get = optGetter,
|
|
set = optSetter,
|
|
},
|
|
scale = {
|
|
order = 30,
|
|
name = L["Scale"],
|
|
desc = L["Configure the scale of the bar."],
|
|
type = "range",
|
|
min = .1, max = 2, step = 0.05,
|
|
get = optGetter,
|
|
set = optSetter,
|
|
},
|
|
fadeout = {
|
|
order = 100,
|
|
name = L["Fade Out"],
|
|
desc = L["Enable the FadeOut mode"],
|
|
type = "toggle",
|
|
get = optGetter,
|
|
set = optSetter,
|
|
width = "full",
|
|
},
|
|
fadeoutalpha = {
|
|
order = 101,
|
|
name = L["Fade Out Alpha"],
|
|
desc = L["Enable the FadeOut mode"],
|
|
type = "range",
|
|
min = 0, max = 1, step = 0.05,
|
|
get = optGetter,
|
|
set = optSetter,
|
|
disabled = function(info) return not barregistry[info[2]]:GetFadeOut() end,
|
|
},
|
|
fadeoutdelay = {
|
|
order = 102,
|
|
name = L["Fade Out Delay"],
|
|
desc = L["Enable the FadeOut mode"],
|
|
type = "range",
|
|
min = 0, max = 1, step = 0.01,
|
|
get = optGetter,
|
|
set = optSetter,
|
|
disabled = function(info) return not barregistry[info[2]]:GetFadeOut() end,
|
|
},
|
|
},
|
|
},
|
|
align = {
|
|
type = "group",
|
|
cmdInline = true,
|
|
name = L["Alignment"],
|
|
order = 10,
|
|
args = {
|
|
info = {
|
|
order = 1,
|
|
type = "description",
|
|
name = L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"],
|
|
},
|
|
},
|
|
}
|
|
}
|
|
return Bartender4:NewOptionObject(otbl)
|
|
end
|