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.
56 lines
1.7 KiB
56 lines
1.7 KiB
local E, L, V, P, G = unpack(ElvUI)
|
|
local BL = E:GetModule('Blizzard')
|
|
|
|
local _G = _G
|
|
local min = min
|
|
|
|
local CreateFrame = CreateFrame
|
|
local hooksecurefunc = hooksecurefunc
|
|
|
|
local function ObjectiveTracker_SetPoint(tracker, _, parent)
|
|
if parent ~= tracker.holder then
|
|
tracker:ClearAllPoints()
|
|
tracker:SetPoint('TOP', tracker.holder)
|
|
end
|
|
end
|
|
|
|
function BL:ObjectiveTracker_SetHeight()
|
|
local tracker = _G.WatchFrame
|
|
local top = tracker:GetTop() or 0
|
|
local gapFromTop = E.screenHeight - top
|
|
local maxHeight = E.screenHeight - gapFromTop
|
|
local frameHeight = min(maxHeight, E.db.general.objectiveFrameHeight)
|
|
|
|
tracker:Height(frameHeight)
|
|
end
|
|
|
|
function BL:ObjectiveTracker_AutoHideOnHide()
|
|
local tracker = _G.WatchFrame
|
|
if tracker and tracker.autoHidden then return end
|
|
|
|
BL:ObjectiveTracker_Collapse(tracker)
|
|
end
|
|
|
|
function BL:ObjectiveTracker_Setup()
|
|
local holder = CreateFrame('Frame', 'ObjectiveFrameHolder', E.UIParent)
|
|
holder:Point('TOPRIGHT', E.UIParent, -135, -300)
|
|
holder:Size(130, 22)
|
|
|
|
E:CreateMover(holder, 'ObjectiveFrameMover', L["Objective Frame"], nil, nil, nil, nil, nil, 'general,blizzUIImprovements')
|
|
holder:SetAllPoints(_G.ObjectiveFrameMover)
|
|
|
|
-- prevent it from being moved by blizzard (the hook below will most likely do nothing now)
|
|
local tracker = _G.WatchFrame
|
|
tracker:SetMovable(true)
|
|
tracker:SetUserPlaced(true)
|
|
tracker:SetDontSavePosition(true)
|
|
tracker:SetClampedToScreen(false)
|
|
tracker:ClearAllPoints()
|
|
tracker:SetPoint('TOP', holder)
|
|
|
|
tracker.holder = holder
|
|
hooksecurefunc(tracker, 'SetPoint', ObjectiveTracker_SetPoint)
|
|
|
|
BL:ObjectiveTracker_AutoHide() -- supported but no boss frames, only works for arena
|
|
BL:ObjectiveTracker_SetHeight()
|
|
end
|
|
|