You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.1 KiB
81 lines
2.1 KiB
local WIT, core = ...
|
|
core.UI.MinimapIcon = {}
|
|
|
|
local MinimapIcon = core.UI.MinimapIcon
|
|
local IsInitialized = false
|
|
|
|
function MinimapIcon.Initialize()
|
|
if WITDB.Settings.HideMinimapIcon then return end
|
|
|
|
local LDB = LibStub("LibDataBroker-1.1", true)
|
|
local LDBIcon = LDB and LibStub("LibDBIcon-1.0", true)
|
|
|
|
if LDB then
|
|
local WITLauncher = LDB:NewDataObject("WIT", {
|
|
type = "launcher",
|
|
icon = "Interface\\AddOns\\WIT\\Images\\logo.jpeg", -- Icon img
|
|
OnClick = MinimapIcon.OnIconClick,
|
|
OnTooltipShow = MinimapIcon.OnTooltipShow,
|
|
})
|
|
|
|
if LDBIcon then
|
|
LDBIcon:Register("WIT", WITLauncher, WITDB.Settings.MinimapIcon)
|
|
end
|
|
end
|
|
|
|
IsInitialized = true
|
|
end
|
|
|
|
function MinimapIcon.ResetPosition()
|
|
local LDBIcon = LibStub("LibDBIcon-1.0", true)
|
|
WITDB.Settings.MinimapIcon = {}
|
|
WITDB.Settings.HideMinimapIcon = false
|
|
|
|
if IsInitialized and LDBIcon then
|
|
LDBIcon:Show("WIT")
|
|
end
|
|
end
|
|
|
|
function MinimapIcon.Toggle(show)
|
|
local LDB = LibStub("LibDataBroker-1.1", true)
|
|
local LDBIcon = LDB and LibStub("LibDBIcon-1.0", true)
|
|
|
|
if not LDBIcon then return end
|
|
|
|
if show then
|
|
WITDB.Settings.HideMinimapIcon = false
|
|
|
|
if not IsInitialized then
|
|
MinimapIcon.Initialize()
|
|
else
|
|
LDBIcon:Show("WIT")
|
|
end
|
|
elseif IsInitialized then
|
|
WITDB.Settings.HideMinimapIcon = true
|
|
LDBIcon:Hide("WIT")
|
|
end
|
|
end
|
|
|
|
function MinimapIcon.OnIconClick()
|
|
if IsShiftKeyDown() then
|
|
core.UI.MainWindow.Init()
|
|
core.Recorder().Show()
|
|
else
|
|
core.UI.MainWindow.Toggle()
|
|
end
|
|
end
|
|
|
|
function MinimapIcon.OnTooltipShow(tooltip)
|
|
tooltip:AddLine(core.GetString("MinimapIconTooltip1"))
|
|
tooltip:AddLine(core.GetString("MinimapIconTooltip2"))
|
|
tooltip:AddLine(core.GetString("MinimapIconTooltip3"))
|
|
end
|
|
|
|
function MinimapIcon.Dialog()
|
|
local UIConfig = CreateFrame("Frame", "WorthITConfig", UIParent, "UIPanelDialogTemplate")
|
|
UIConfig:SetSize(900, 550)
|
|
UIConfig:SetPoint("CENTER")
|
|
|
|
UIConfig:Show()
|
|
end
|
|
|
|
|