Gio_BigWigs/main.lua

30 lines
785 B
Lua
Raw Normal View History

2018-07-28 09:58:46 +00:00
2018-07-28 16:54:38 +00:00
local me = ...
2018-07-28 09:58:46 +00:00
local plugin = BigWigs:GetPlugin("Bars")
local db = plugin.db.profile
2018-07-28 16:54:38 +00:00
-- "bars" l&f
2018-07-28 09:58:46 +00:00
local function style(bar)
bar.candyBarLabel:SetJustifyH("LEFT")
bar.candyBarLabel:ClearAllPoints()
bar.candyBarLabel:Point("LEFT", bar, "LEFT", db.BigWigsAnchor_height + 4, 0)
bar.candyBarDuration:SetJustifyH("LEFT")
bar.candyBarDuration:ClearAllPoints()
2018-07-28 16:54:38 +00:00
bar.candyBarDuration:Point("RIGHT", bar, "LEFT", -3, 0)
2018-07-28 09:58:46 +00:00
end
plugin:RegisterBarStyle("GioNoBars", {
apiVersion = 1,
version = 1,
ApplyStyle = style,
GetStyleName = function() return "Gio No Bars" end,
})
2018-07-28 16:54:38 +00:00
-- emphasized text color
local function styleEmphasized(msg, plugin, bar)
bar:SetTextColor(1, 0, 0)
end
BigWigsLoader.RegisterMessage(me, "BigWigs_BarEmphasized", styleEmphasized)