- added bar/bg visibility options to mirrorbar, castbar, targetcastbar

- shuffled bar/bg visibility options to show up after the Enabled option and to be disabled if the bar is disabled
- removed OnUpdate registration for mirrorbar since it handles OnUpdate itself
- fixed a potential nil access in the DogTag fontstring stuff
This commit is contained in:
Parnic
2008-02-10 20:52:00 +00:00
parent 30117d1cfd
commit 81b8bfd219
4 changed files with 139 additions and 6 deletions

View File

@ -25,6 +25,7 @@ function MirrorBar.prototype:init(side, offset, name, db)
self.moduleSettings = {}
self.moduleSettings.side = side
self.moduleSettings.offset = offset
self.moduleSettings.barVisible = {bar = true, bg = true}
-- unregister the event superclass registered, we don't want to register
-- this to the core
@ -62,7 +63,7 @@ function MirrorBar.prototype:OnUpdate(elapsed)
if (self.paused) then
return
end
self:Update()
self.value = self.value + (self.timerScale * elapsed * 1000)
@ -180,6 +181,7 @@ function MirrorBarHandler.prototype:GetDefaultSettings()
settings["barFontBold"] = true
settings["lockTextAlpha"] = true
settings["textVisible"] = {upper = true, lower = true}
settings["barVisible"] = {bg = true, bar = true}
return settings
end
@ -229,6 +231,40 @@ function MirrorBarHandler.prototype:GetOptions()
end,
order = 31
}
opts["barVisible"] = {
type = 'toggle',
name = 'Bar visible',
desc = 'Toggle bar visibility',
get = function()
return self.moduleSettings.barVisible['bar']
end,
set = function(v)
self.moduleSettings.barVisible['bar'] = v
self:Redraw()
end,
disabled = function()
return not self.moduleSettings.enabled
end,
order = 28
}
opts["bgVisible"] = {
type = 'toggle',
name = 'Bar background visible',
desc = 'Toggle bar background visibility',
get = function()
return self.moduleSettings.barVisible['bg']
end,
set = function(v)
self.moduleSettings.barVisible['bg'] = v
self:Redraw()
end,
disabled = function()
return not self.moduleSettings.enabled
end,
order = 29
}
opts["textSettings"] =
{
@ -447,6 +483,7 @@ function MirrorBarHandler.prototype:SetSettings(bar)
bar.moduleSettings.scale = self.moduleSettings.scale
bar.moduleSettings.textVerticalOffset = self.moduleSettings.textVerticalOffset
bar.moduleSettings.textHorizontalOffset = self.moduleSettings.textHorizontalOffset
bar.moduleSettings.barVisible = self.moduleSettings.barVisible
end