72 lines
1.9 KiB
Lua
72 lines
1.9 KiB
Lua
local E, L, V, P, G = unpack(select(2, ...)) --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
|
local DT = E:GetModule("DataTexts")
|
|
|
|
--Lua functions
|
|
local pairs = pairs
|
|
local find, join = string.find, string.join
|
|
--WoW API / Variables
|
|
local GetNumAddOns = GetNumAddOns
|
|
local GetAddOnInfo = GetAddOnInfo
|
|
local GetAddOnMetadata = GetAddOnMetadata
|
|
local IsShiftKeyDown = IsShiftKeyDown
|
|
local ReloadUI = ReloadUI
|
|
|
|
local displayString = ""
|
|
local configText = "ElvUI"
|
|
local plugins
|
|
local lastPanel
|
|
|
|
local function OnEvent(self, event)
|
|
lastPanel = self
|
|
|
|
if not plugins and event == "PLAYER_ENTERING_WORLD" then
|
|
for i = 1, GetNumAddOns() do
|
|
local name, title, _, enabled = GetAddOnInfo(i)
|
|
if enabled and find(name, "ElvUI") and name ~= "ElvUI" then
|
|
plugins = plugins or {}
|
|
plugins[title] = GetAddOnMetadata(i, "version")
|
|
end
|
|
end
|
|
|
|
self:UnregisterEvent(event)
|
|
end
|
|
|
|
self.text:SetFormattedText(displayString, configText)
|
|
end
|
|
|
|
local function OnEnter(self)
|
|
DT:SetupTooltip(self)
|
|
|
|
DT.tooltip:AddDoubleLine(L["Left Click:"], L["Toggle Configuration"], 1, 1, 1)
|
|
DT.tooltip:AddDoubleLine(L["Hold Shift + Right Click:"], L["Reload UI"], 1, 1, 1)
|
|
|
|
if plugins then
|
|
DT.tooltip:AddLine(" ")
|
|
DT.tooltip:AddDoubleLine("Plugins:", "Version:")
|
|
|
|
for plugin, version in pairs(plugins) do
|
|
DT.tooltip:AddDoubleLine(plugin, version, 1, 1, 1, 1, 1, 1)
|
|
end
|
|
end
|
|
|
|
DT.tooltip:Show()
|
|
end
|
|
|
|
local function OnClick(_, button)
|
|
if button == "LeftButton" or (button == "RightButton" and not IsShiftKeyDown()) then
|
|
E:ToggleOptionsUI()
|
|
elseif button == "RightButton" and IsShiftKeyDown() then
|
|
ReloadUI()
|
|
end
|
|
end
|
|
|
|
local function ValueColorUpdate(hex)
|
|
displayString = join("", hex, "%s|r")
|
|
|
|
if lastPanel ~= nil then
|
|
OnEvent(lastPanel, "ELVUI_COLOR_UPDATE")
|
|
end
|
|
end
|
|
E.valueColorUpdateFuncs[ValueColorUpdate] = true
|
|
|
|
DT:RegisterDatatext("ElvUI Config", {"PLAYER_ENTERING_WORLD"}, OnEvent, nil, OnClick, OnEnter) |