46 lines
1.2 KiB
Lua
46 lines
1.2 KiB
Lua
local L = LibStub("AceLocale-3.0"):GetLocale("Bartender4")
|
|
|
|
local VehicleBarMod = Bartender4:GetModule("Vehicle")
|
|
|
|
-- fetch upvalues
|
|
local ButtonBar = Bartender4.ButtonBar.prototype
|
|
|
|
function VehicleBarMod:SetupOptions()
|
|
if not self.options then
|
|
self.optionobject = ButtonBar:GetOptionObject()
|
|
self.optionobject.table.general.args.rows.max = self.button_count
|
|
local enabled = {
|
|
type = "toggle",
|
|
order = 1,
|
|
name = L["Enabled"],
|
|
desc = L["Enable the Vehicle Bar"],
|
|
get = function() return self.db.profile.enabled end,
|
|
set = "ToggleModule",
|
|
handler = self,
|
|
}
|
|
self.optionobject:AddElement("general", "enabled", enabled)
|
|
|
|
self.disabledoptions = {
|
|
general = {
|
|
type = "group",
|
|
name = L["General Settings"],
|
|
cmdInline = true,
|
|
order = 1,
|
|
args = {
|
|
enabled = enabled,
|
|
}
|
|
}
|
|
}
|
|
self.options = {
|
|
order = 30,
|
|
type = "group",
|
|
name = L["VehicleBar"],
|
|
desc = L["Configure the VehicleBar"],
|
|
childGroups = "tab",
|
|
}
|
|
self.optionobject.table.general.args.padding.min = -30
|
|
Bartender4:RegisterBarOptions("Vehicle", self.options)
|
|
end
|
|
self.options.args = self:IsEnabled() and self.optionobject.table or self.disabledoptions
|
|
end
|