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.
1222 lines
32 KiB
1222 lines
32 KiB
local E, L, V, P, G = unpack(ElvUI)
|
|
local AB = E:GetModule('ActionBars')
|
|
local UF = E:GetModule('UnitFrames')
|
|
local M = E:GetModule('Misc')
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
local pairs, type, unpack, assert, ceil = pairs, type, unpack, assert, ceil
|
|
local tremove, tContains, tinsert, wipe, error = tremove, tContains, tinsert, wipe, error
|
|
|
|
local CreateFrame = CreateFrame
|
|
local MoneyFrame_Update = MoneyFrame_Update
|
|
local UnitIsDeadOrGhost, InCinematic = UnitIsDeadOrGhost, InCinematic
|
|
local PurchaseSlot, GetBankSlotCost = PurchaseSlot, GetBankSlotCost
|
|
local ReloadUI, PlaySound, StopMusic = ReloadUI, PlaySound, StopMusic
|
|
local StaticPopup_Resize = StaticPopup_Resize
|
|
local GetBindingFromClick = GetBindingFromClick
|
|
|
|
local AutoCompleteEditBox_OnEnterPressed = AutoCompleteEditBox_OnEnterPressed
|
|
local AutoCompleteEditBox_OnTextChanged = AutoCompleteEditBox_OnTextChanged
|
|
local ChatEdit_FocusActiveWindow = ChatEdit_FocusActiveWindow
|
|
|
|
local DisableAddOn = C_AddOns.DisableAddOn
|
|
local EnableAddOn = C_AddOns.EnableAddOn
|
|
local IsAddOnLoaded = C_AddOns.IsAddOnLoaded
|
|
|
|
local C_Bank_PurchaseBankTab = C_Bank and C_Bank.PurchaseBankTab
|
|
local C_Bank_FetchNextPurchasableBankTabCost = C_Bank and C_Bank.FetchNextPurchasableBankTabCost
|
|
|
|
local STATICPOPUP_TEXTURE_ALERT = STATICPOPUP_TEXTURE_ALERT
|
|
local STATICPOPUP_TEXTURE_ALERTGEAR = STATICPOPUP_TEXTURE_ALERTGEAR
|
|
local YES, NO, OKAY, CANCEL, ACCEPT, DECLINE = YES, NO, OKAY, CANCEL, ACCEPT, DECLINE
|
|
-- GLOBALS: ElvUIBindPopupWindowCheckButton
|
|
|
|
local DOWNLOAD_URL = 'https://tukui.org/elvui'
|
|
|
|
E.PopupDialogs = {}
|
|
E.StaticPopup_DisplayedFrames = {}
|
|
|
|
E.PopupDialogs.ELVUI_UPDATE_AVAILABLE = {
|
|
text = L["ElvUI is five or more revisions out of date. You can download the newest version from tukui.org."],
|
|
hasEditBox = 1,
|
|
OnShow = function(self)
|
|
self.editBox:SetAutoFocus(false)
|
|
self.editBox.width = self.editBox:GetWidth()
|
|
self.editBox:Width(220)
|
|
self.editBox:SetText(DOWNLOAD_URL)
|
|
ChatEdit_FocusActiveWindow()
|
|
end,
|
|
OnHide = function(self)
|
|
self.editBox:Width(self.editBox.width or 50)
|
|
self.editBox.width = nil
|
|
end,
|
|
hideOnEscape = 1,
|
|
button1 = OKAY,
|
|
EditBoxOnEnterPressed = function(self)
|
|
ChatEdit_FocusActiveWindow()
|
|
self:GetParent():Hide()
|
|
end,
|
|
EditBoxOnEscapePressed = function(self)
|
|
ChatEdit_FocusActiveWindow()
|
|
self:GetParent():Hide()
|
|
end,
|
|
EditBoxOnTextChanged = function(self)
|
|
if self:GetText() ~= DOWNLOAD_URL then
|
|
self:SetText(DOWNLOAD_URL)
|
|
end
|
|
|
|
self:HighlightText()
|
|
|
|
ChatEdit_FocusActiveWindow()
|
|
end,
|
|
OnEditFocusGained = function(self)
|
|
self:HighlightText()
|
|
end,
|
|
showAlert = 1,
|
|
}
|
|
|
|
E.PopupDialogs.ELVUI_EDITBOX = {
|
|
text = E.title,
|
|
button1 = OKAY,
|
|
hasEditBox = 1,
|
|
OnShow = function(self, data)
|
|
self.editBox:SetAutoFocus(false)
|
|
self.editBox.width = self.editBox:GetWidth()
|
|
self.editBox:Width(280)
|
|
self.editBox:AddHistoryLine('text')
|
|
self.editBox.temptxt = data
|
|
self.editBox:SetText(data)
|
|
self.editBox:SetJustifyH('CENTER')
|
|
end,
|
|
OnHide = function(self)
|
|
self.editBox:Width(self.editBox.width or 50)
|
|
self.editBox.width = nil
|
|
self.temptxt = nil
|
|
end,
|
|
EditBoxOnEnterPressed = function(self)
|
|
self:GetParent():Hide()
|
|
end,
|
|
EditBoxOnEscapePressed = function(self)
|
|
self:GetParent():Hide()
|
|
end,
|
|
EditBoxOnTextChanged = function(self)
|
|
if self:GetText() ~= self.temptxt then
|
|
self:SetText(self.temptxt)
|
|
end
|
|
|
|
self:HighlightText()
|
|
end,
|
|
whileDead = 1,
|
|
preferredIndex = 3,
|
|
hideOnEscape = 1,
|
|
}
|
|
|
|
E.PopupDialogs.UPDATE_REQUEST = {
|
|
text = L["UPDATE_REQUEST"],
|
|
button1 = OKAY,
|
|
showAlert = 1,
|
|
}
|
|
|
|
E.PopupDialogs.CONFIRM_LOSE_BINDING_CHANGES = {
|
|
text = CONFIRM_LOSE_BINDING_CHANGES,
|
|
button1 = OKAY,
|
|
button2 = CANCEL,
|
|
OnAccept = function()
|
|
AB:ChangeBindingProfile()
|
|
AB.bindingsChanged = nil
|
|
end,
|
|
OnCancel = function()
|
|
local isChecked = ElvUIBindPopupWindowCheckButton:GetChecked()
|
|
ElvUIBindPopupWindowCheckButton:SetChecked(not isChecked)
|
|
end,
|
|
whileDead = 1,
|
|
showAlert = 1,
|
|
}
|
|
|
|
E.PopupDialogs.TUKUI_ELVUI_INCOMPATIBLE = {
|
|
text = L["Oh lord, you have got ElvUI and Tukui both enabled at the same time. Select an addon to disable."],
|
|
OnAccept = function() DisableAddOn('ElvUI'); ReloadUI() end,
|
|
OnCancel = function() DisableAddOn('Tukui'); ReloadUI() end,
|
|
button1 = 'ElvUI',
|
|
button2 = 'Tukui',
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.DISABLE_INCOMPATIBLE_ADDON = {
|
|
text = L["Do you swear not to post in technical support about something not working without first disabling the addon/module combination first?"],
|
|
OnAccept = function()
|
|
E.global.ignoreIncompatible = true
|
|
end,
|
|
OnCancel = function()
|
|
local popup = E.PopupDialogs.INCOMPATIBLE_ADDON
|
|
E:StaticPopup_Hide('DISABLE_INCOMPATIBLE_ADDON')
|
|
E:StaticPopup_Show('INCOMPATIBLE_ADDON', popup.button1, popup.button2)
|
|
end,
|
|
button1 = L["I Swear"],
|
|
button2 = DECLINE,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.INCOMPATIBLE_ADDON = {
|
|
text = L["INCOMPATIBLE_ADDON"],
|
|
OnAccept = function() local popup = E.PopupDialogs.INCOMPATIBLE_ADDON; popup.accept(popup) end,
|
|
OnCancel = function() local popup = E.PopupDialogs.INCOMPATIBLE_ADDON; popup.cancel(popup) end,
|
|
button3 = L["Disable Warning"],
|
|
OnAlt = function()
|
|
E:StaticPopup_Hide('INCOMPATIBLE_ADDON')
|
|
E:StaticPopup_Show('DISABLE_INCOMPATIBLE_ADDON')
|
|
end,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.CONFIG_RL = {
|
|
text = L["One or more of the changes you have made require a ReloadUI."],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = ReloadUI,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.GLOBAL_RL = {
|
|
text = L["One or more of the changes you have made will effect all characters using this addon. You will have to reload the user interface to see the changes you have made."],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = ReloadUI,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.PRIVATE_RL = {
|
|
text = L["A setting you have changed will change an option for this character only. This setting that you have changed will be uneffected by changing user profiles. Changing this setting requires that you reload your User Interface."],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = ReloadUI,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.RESET_UF_UNIT = {
|
|
text = L["Accepting this will reset the UnitFrame settings for %s. Are you sure?"],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = function(_, data)
|
|
if data and data.unit then
|
|
UF:ResetUnitSettings(data.unit)
|
|
if data.mover then
|
|
E:ResetMovers(data.mover)
|
|
end
|
|
|
|
if data.unit == 'raidpet' then
|
|
UF:CreateAndUpdateHeaderGroup(data.unit, nil, nil, true)
|
|
end
|
|
|
|
if IsAddOnLoaded('ElvUI_Options') then
|
|
local ACD = E.Libs.AceConfigDialog
|
|
if ACD and ACD.OpenFrames and ACD.OpenFrames.ElvUI then
|
|
ACD:SelectGroup('ElvUI', 'unitframe', data.unit)
|
|
end
|
|
end
|
|
else
|
|
E:Print(L["Error resetting UnitFrame."])
|
|
end
|
|
end,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.RESET_UF_AF = {
|
|
text = L["Accepting this will reset your Filter Priority lists for all auras on UnitFrames. Are you sure?"],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = function()
|
|
for unitName, content in pairs(E.db.unitframe.units) do
|
|
if content.buffs then
|
|
content.buffs.priority = P.unitframe.units[unitName].buffs.priority
|
|
end
|
|
if content.debuffs then
|
|
content.debuffs.priority = P.unitframe.units[unitName].debuffs.priority
|
|
end
|
|
if content.aurabar then
|
|
content.aurabar.priority = P.unitframe.units[unitName].aurabar.priority
|
|
end
|
|
end
|
|
end,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.RESET_NP_AF = {
|
|
text = L["Accepting this will reset your Filter Priority lists for all auras on NamePlates. Are you sure?"],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = function()
|
|
for unitType, content in pairs(E.db.nameplates.units) do
|
|
if content.buffs and content.buffs.filters then
|
|
content.buffs.filters.priority = P.nameplates.units[unitType].buffs.filters.priority
|
|
end
|
|
if content.debuffs and content.debuffs.filters then
|
|
content.debuffs.filters.priority = P.nameplates.units[unitType].debuffs.filters.priority
|
|
end
|
|
end
|
|
end,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.BUY_BANK_SLOT = {
|
|
text = CONFIRM_BUY_BANK_SLOT,
|
|
button1 = YES,
|
|
button2 = NO,
|
|
OnAccept = PurchaseSlot,
|
|
OnShow = function(self)
|
|
MoneyFrame_Update(self.moneyFrame, GetBankSlotCost())
|
|
end,
|
|
hasMoneyFrame = 1,
|
|
hideOnEscape = 1,
|
|
}
|
|
|
|
E.PopupDialogs.CONFIRM_BUY_BANK_TAB = {
|
|
text = CONFIRM_BUY_ACCOUNT_BANK_TAB,
|
|
button1 = YES,
|
|
button2 = NO,
|
|
OnAccept = function(self)
|
|
C_Bank_PurchaseBankTab(self.data.bankType)
|
|
end,
|
|
OnShow = function(self)
|
|
local cost = C_Bank_FetchNextPurchasableBankTabCost(self.data.bankType)
|
|
if cost then
|
|
MoneyFrame_Update(self.moneyFrame, cost)
|
|
end
|
|
end,
|
|
hasMoneyFrame = 1,
|
|
hideOnEscape = 1,
|
|
}
|
|
|
|
E.PopupDialogs.CANNOT_BUY_BANK_SLOT = {
|
|
text = L["Can't buy anymore slots!"],
|
|
button1 = ACCEPT,
|
|
whileDead = 1,
|
|
}
|
|
|
|
E.PopupDialogs.NO_BANK_BAGS = {
|
|
text = L["You must purchase a bank slot first!"],
|
|
button1 = ACCEPT,
|
|
whileDead = 1,
|
|
}
|
|
|
|
E.PopupDialogs.RESETUI_CHECK = {
|
|
text = L["Are you sure you want to reset every mover back to it's default position?"],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = function()
|
|
E:ResetAllUI()
|
|
end,
|
|
whileDead = 1,
|
|
}
|
|
|
|
E.PopupDialogs.DISBAND_RAID = {
|
|
text = L["Are you sure you want to disband the group?"],
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
OnAccept = function() M:DisbandRaidGroup() end,
|
|
whileDead = 1,
|
|
}
|
|
|
|
E.PopupDialogs.CONFIRM_LOOT_DISTRIBUTION = {
|
|
text = CONFIRM_LOOT_DISTRIBUTION,
|
|
button1 = YES,
|
|
button2 = NO,
|
|
hideOnEscape = 1,
|
|
}
|
|
|
|
E.PopupDialogs.RESET_PROFILE_PROMPT = {
|
|
text = L["Are you sure you want to reset all the settings on this profile?"],
|
|
button1 = YES,
|
|
button2 = NO,
|
|
hideOnEscape = 1,
|
|
OnAccept = function() E:ResetProfile() end,
|
|
}
|
|
|
|
E.PopupDialogs.RESET_PRIVATE_PROFILE_PROMPT = {
|
|
text = L["Are you sure you want to reset all the settings on this profile?"],
|
|
button1 = YES,
|
|
button2 = NO,
|
|
hideOnEscape = 1,
|
|
OnAccept = function() E:ResetPrivateProfile() end,
|
|
}
|
|
|
|
E.PopupDialogs.WARNING_BLIZZARD_ADDONS = {
|
|
text = L["It appears one of your AddOns have disabled the AddOn Blizzard_CompactRaidFrames. This can cause errors and other issues. The AddOn will now be re-enabled."],
|
|
button1 = OKAY,
|
|
hideOnEscape = false,
|
|
OnAccept = function() EnableAddOn('Blizzard_CompactRaidFrames'); ReloadUI() end,
|
|
}
|
|
|
|
E.PopupDialogs.APPLY_FONT_WARNING = {
|
|
text = L["Are you sure you want to apply this font to all ElvUI elements?"],
|
|
OnAccept = function() E:GeneralMedia_ApplyToAll() end,
|
|
OnCancel = function() E:StaticPopup_Hide('APPLY_FONT_WARNING') end,
|
|
button1 = YES,
|
|
button2 = CANCEL,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.MODULE_COPY_CONFIRM = {
|
|
button1 = ACCEPT,
|
|
button2 = CANCEL,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
E.PopupDialogs.SCRIPT_PROFILE = {
|
|
text = L["You are using CPU Profiling. This causes decreased performance. Do you want to disable it or continue?"],
|
|
button1 = L["Disable"],
|
|
button2 = L["Continue"],
|
|
OnAccept = function()
|
|
E:SetCVar('scriptProfile', 0)
|
|
ReloadUI()
|
|
end,
|
|
showAlert = 1,
|
|
whileDead = 1,
|
|
hideOnEscape = false,
|
|
}
|
|
|
|
local MAX_STATIC_POPUPS = 4
|
|
function E:StaticPopup_OnShow()
|
|
PlaySound(850) --IG_MAINMENU_OPEN
|
|
|
|
local dialog = E.PopupDialogs[self.which]
|
|
local OnShow = dialog.OnShow
|
|
|
|
if OnShow then
|
|
OnShow(self, self.data)
|
|
end
|
|
if dialog.hasMoneyInputFrame then
|
|
local dialogName = self:GetName()
|
|
_G[dialogName..'MoneyInputFrameGold']:SetFocus()
|
|
end
|
|
if dialog.enterClicksFirstButton or dialog.hideOnEscape then
|
|
self:SetScript('OnKeyDown', E.StaticPopup_OnKeyDown)
|
|
end
|
|
|
|
-- boost static popups over ace gui
|
|
if IsAddOnLoaded('ElvUI_Options') then
|
|
local ACD = E.Libs.AceConfigDialog
|
|
if ACD and ACD.OpenFrames and ACD.OpenFrames.ElvUI then
|
|
self.frameStrataIncreased = true
|
|
self:SetFrameStrata('FULLSCREEN_DIALOG')
|
|
|
|
local popupFrameLevel = self:GetFrameLevel()
|
|
if popupFrameLevel < 100 then
|
|
self:SetFrameLevel(popupFrameLevel+100)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_EscapePressed()
|
|
local closed = nil
|
|
for _, frame in pairs(E.StaticPopup_DisplayedFrames) do
|
|
if frame:IsShown() and frame.hideOnEscape then
|
|
local standardDialog = E.PopupDialogs[frame.which]
|
|
if standardDialog then
|
|
local OnCancel = standardDialog.OnCancel
|
|
local noCancelOnEscape = standardDialog.noCancelOnEscape
|
|
if OnCancel and not noCancelOnEscape then
|
|
OnCancel(frame, frame.data, 'clicked')
|
|
end
|
|
|
|
frame:Hide()
|
|
else
|
|
E:StaticPopupSpecial_Hide(frame)
|
|
end
|
|
|
|
closed = 1
|
|
end
|
|
end
|
|
|
|
return closed
|
|
end
|
|
|
|
function E:StaticPopup_CollapseTable()
|
|
local displayedFrames = E.StaticPopup_DisplayedFrames
|
|
local index = #displayedFrames
|
|
while index >= 1 and not displayedFrames[index]:IsShown() do
|
|
tremove(displayedFrames, index)
|
|
index = index - 1
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_SetUpPosition(dialog)
|
|
if not tContains(E.StaticPopup_DisplayedFrames, dialog) then
|
|
dialog:ClearAllPoints()
|
|
|
|
local lastFrame = E.StaticPopup_DisplayedFrames[#E.StaticPopup_DisplayedFrames]
|
|
if lastFrame then
|
|
dialog:Point('TOP', lastFrame, 'BOTTOM', 0, -4)
|
|
else
|
|
dialog:Point('TOP', E.UIParent, 'TOP', 0, -100)
|
|
end
|
|
|
|
tinsert(E.StaticPopup_DisplayedFrames, dialog)
|
|
end
|
|
end
|
|
|
|
function E:StaticPopupSpecial_Show(frame)
|
|
if frame.exclusive then
|
|
E:StaticPopup_HideExclusive()
|
|
end
|
|
|
|
E:StaticPopup_SetUpPosition(frame)
|
|
frame:Show()
|
|
end
|
|
|
|
function E:StaticPopupSpecial_Hide(frame)
|
|
frame:Hide()
|
|
E:StaticPopup_CollapseTable()
|
|
end
|
|
|
|
--Used to figure out if we can resize a frame
|
|
function E:StaticPopup_IsLastDisplayedFrame(frame)
|
|
for i = #E.StaticPopup_DisplayedFrames, 1, -1 do
|
|
local popup = E.StaticPopup_DisplayedFrames[i]
|
|
if popup:IsShown() then
|
|
return frame == popup
|
|
end
|
|
end
|
|
|
|
return false
|
|
end
|
|
|
|
function E:StaticPopup_OnKeyDown(key)
|
|
if GetBindingFromClick(key) == 'TOGGLEGAMEMENU' then
|
|
return E:StaticPopup_EscapePressed()
|
|
end
|
|
|
|
local dialog = key == 'ENTER' and E.PopupDialogs[self.which]
|
|
if dialog and dialog.enterClicksFirstButton then
|
|
local i, dialogName = 1, self:GetName()
|
|
local button = _G[dialogName..'Button'..i]
|
|
while button do
|
|
if button:IsShown() then
|
|
E.StaticPopup_OnClick(self, i)
|
|
return
|
|
end
|
|
|
|
i = i + 1
|
|
button = _G[dialogName..'Button'..i]
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_OnHide()
|
|
PlaySound(851) --IG_MAINMENU_CLOSE
|
|
|
|
E:StaticPopup_CollapseTable()
|
|
|
|
local dialog = E.PopupDialogs[self.which]
|
|
local OnHide = dialog.OnHide
|
|
if OnHide then
|
|
OnHide(self, self.data)
|
|
end
|
|
self.extraFrame:Hide()
|
|
if dialog.enterClicksFirstButton then
|
|
self:SetScript('OnKeyDown', nil)
|
|
end
|
|
|
|
-- static popup was boosted over ace gui, set it back to normal
|
|
if self.frameStrataIncreased then
|
|
self.frameStrataIncreased = nil
|
|
self:SetFrameStrata('DIALOG')
|
|
|
|
local popupFrameLevel = self:GetFrameLevel()
|
|
if popupFrameLevel > 100 then
|
|
self:SetFrameLevel(popupFrameLevel-100)
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_OnUpdate(elapsed)
|
|
local info = E.PopupDialogs[self.which]
|
|
|
|
if self.timeleft and self.timeleft > 0 then
|
|
self.timeleft = self.timeleft - elapsed
|
|
if self.timeleft <= 0 then
|
|
if not info.timeoutInformationalOnly then
|
|
self.timeleft = nil
|
|
|
|
if info.OnCancel then
|
|
info.OnCancel(self, self.data, 'timeout')
|
|
end
|
|
|
|
self:Hide()
|
|
end
|
|
|
|
return
|
|
end
|
|
end
|
|
|
|
local dialogName = self:GetName()
|
|
local button1 = _G[dialogName..'Button1']
|
|
if self.startDelay then
|
|
self.startDelay = self.startDelay - elapsed
|
|
if self.startDelay <= 0 then
|
|
self.startDelay = nil
|
|
|
|
local text = _G[dialogName..'Text']
|
|
text:SetFormattedText(info.text, text.text_arg1, text.text_arg2)
|
|
button1:Enable()
|
|
|
|
StaticPopup_Resize(self, self.which)
|
|
|
|
return
|
|
end
|
|
end
|
|
|
|
if self.acceptDelay then
|
|
self.acceptDelay = self.acceptDelay - elapsed
|
|
|
|
local enabled = self.acceptDelay <= 0
|
|
button1:SetEnabled(enabled)
|
|
|
|
if enabled then
|
|
button1:SetText(info.button1)
|
|
|
|
self.acceptDelay = nil
|
|
|
|
if info.OnAcceptDelayExpired ~= nil then
|
|
info.OnAcceptDelayExpired(self, self.data)
|
|
end
|
|
else
|
|
button1:SetText(ceil(self.acceptDelay))
|
|
end
|
|
end
|
|
|
|
if info.OnUpdate then
|
|
info.OnUpdate(self, elapsed)
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_OnClick(index)
|
|
if not self:IsShown() then return end
|
|
|
|
local which = self.which
|
|
local info = E.PopupDialogs[which]
|
|
if not info then return end
|
|
|
|
local hide = true
|
|
if index == 1 then
|
|
local OnAccept = info.OnAccept
|
|
if OnAccept then
|
|
hide = not OnAccept(self, self.data, self.data2)
|
|
end
|
|
elseif index == 3 then
|
|
local OnAlt = info.OnAlt
|
|
if OnAlt then
|
|
OnAlt(self, self.data, 'clicked')
|
|
end
|
|
else
|
|
local OnCancel = info.OnCancel
|
|
if OnCancel then
|
|
hide = not OnCancel(self, self.data, 'clicked')
|
|
end
|
|
end
|
|
|
|
if hide and (which == self.which) then
|
|
-- can self.which change inside one of the On* functions???
|
|
self:Hide()
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_EditBoxOnEnterPressed()
|
|
if not self.autoCompleteParams or not AutoCompleteEditBox_OnEnterPressed(self) then
|
|
local parent = self:GetParent()
|
|
local owner = parent:GetParent()
|
|
local which, dialog
|
|
|
|
if parent.which then
|
|
which = parent.which
|
|
dialog = parent
|
|
elseif owner and owner.which then -- This is needed if this is a money input frame since it's nested deeper than a normal edit box
|
|
which = owner.which
|
|
dialog = owner
|
|
end
|
|
|
|
local popup = E.PopupDialogs[which]
|
|
local onEnterPressed = popup and popup.EditBoxOnEnterPressed
|
|
if onEnterPressed then
|
|
onEnterPressed(self, dialog.data)
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_EditBoxOnEscapePressed()
|
|
local parent = self:GetParent()
|
|
local popup = E.PopupDialogs[parent.which]
|
|
local onEscapePressed = popup and popup.EditBoxOnEscapePressed
|
|
if onEscapePressed then
|
|
onEscapePressed(self, parent.data)
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_EditBoxOnTextChanged(userInput)
|
|
if not self.autoCompleteParams or not AutoCompleteEditBox_OnTextChanged(self, userInput) then
|
|
local parent = self:GetParent()
|
|
local popup = E.PopupDialogs[parent.which]
|
|
local onTextChanged = popup and popup.EditBoxOnTextChanged
|
|
if onTextChanged then
|
|
onTextChanged(self, parent.data)
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_FindVisible(which, data)
|
|
local info = E.PopupDialogs[which]
|
|
if not info then return end
|
|
|
|
for index = 1, MAX_STATIC_POPUPS do
|
|
local frame = _G['ElvUI_StaticPopup'..index]
|
|
if frame and frame:IsShown() and (frame.which == which) and (not info.multiple or (frame.data == data)) then
|
|
return frame
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_Resize(dialog, which)
|
|
local info = E.PopupDialogs[which]
|
|
if not info then return end
|
|
|
|
local dialogName = dialog:GetName()
|
|
local text = _G[dialogName..'Text']
|
|
local editBox = _G[dialogName..'EditBox']
|
|
local button1 = _G[dialogName..'Button1']
|
|
|
|
local maxHeightSoFar, maxWidthSoFar = (dialog.maxHeightSoFar or 0), (dialog.maxWidthSoFar or 0)
|
|
local width = 320
|
|
|
|
if dialog.numButtons == 3 then
|
|
width = 440
|
|
elseif info.showAlert or info.showAlertGear or info.closeButton then
|
|
-- Widen
|
|
width = 420
|
|
elseif info.editBoxWidth and info.editBoxWidth > 260 then
|
|
width = width + (info.editBoxWidth - 260)
|
|
end
|
|
|
|
if width > maxWidthSoFar then
|
|
dialog:Width(width)
|
|
dialog.maxWidthSoFar = width
|
|
end
|
|
|
|
if info.wideText then
|
|
dialog.text:Width(360)
|
|
dialog.SubText:Width(360)
|
|
else
|
|
dialog.text:Width(290)
|
|
dialog.SubText:Width(290)
|
|
end
|
|
|
|
local height = 32 + (text and text:GetHeight() or 0) + 8 + button1:GetHeight()
|
|
if info.hasEditBox then
|
|
height = height + 8 + editBox:GetHeight()
|
|
elseif info.hasMoneyFrame then
|
|
height = height + 16
|
|
elseif info.hasMoneyInputFrame then
|
|
height = height + 22
|
|
end
|
|
if info.hasItemFrame then
|
|
if info.compactItemFrame then
|
|
height = height + 44
|
|
else
|
|
height = height + 64
|
|
end
|
|
end
|
|
if info.hasCheckButton then
|
|
height = height + 32
|
|
end
|
|
|
|
if height > maxHeightSoFar then
|
|
dialog:Height(height)
|
|
dialog.maxHeightSoFar = height
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_OnEvent()
|
|
self.maxHeightSoFar = 0
|
|
E:StaticPopup_Resize(self, self.which)
|
|
end
|
|
|
|
local tempButtonLocs = {} --So we don't make a new table each time.
|
|
function E:StaticPopup_Show(which, text_arg1, text_arg2, data)
|
|
local info = E.PopupDialogs[which]
|
|
if not info then return end
|
|
|
|
if UnitIsDeadOrGhost('player') and not info.whileDead then
|
|
if info.OnCancel then
|
|
info.OnCancel()
|
|
end
|
|
|
|
return
|
|
end
|
|
|
|
if InCinematic() and not info.interruptCinematic then
|
|
if info.OnCancel then
|
|
info.OnCancel()
|
|
end
|
|
|
|
return
|
|
end
|
|
|
|
if info.cancels then
|
|
for index = 1, MAX_STATIC_POPUPS do
|
|
local frame = _G['ElvUI_StaticPopup'..index]
|
|
if frame:IsShown() and (frame.which == info.cancels) then
|
|
frame:Hide()
|
|
|
|
local popup = E.PopupDialogs[frame.which]
|
|
local OnCancel = popup and popup.OnCancel
|
|
if OnCancel then
|
|
OnCancel(frame, frame.data, 'override')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
-- Pick a free dialog to use, find an open dialog of the requested type
|
|
local dialog = E:StaticPopup_FindVisible(which, data)
|
|
if dialog then
|
|
if not info.noCancelOnReuse then
|
|
local OnCancel = info.OnCancel
|
|
if OnCancel then
|
|
OnCancel(dialog, dialog.data, 'override')
|
|
end
|
|
end
|
|
|
|
dialog:Hide()
|
|
else -- Find a free dialog
|
|
local index = 1
|
|
if info.preferredIndex then
|
|
index = info.preferredIndex
|
|
end
|
|
for i = index, MAX_STATIC_POPUPS do
|
|
local frame = _G['ElvUI_StaticPopup'..i]
|
|
if frame and not frame:IsShown() then
|
|
dialog = frame
|
|
break
|
|
end
|
|
end
|
|
|
|
--If dialog not found and there's a preferredIndex then try to find an available frame before the preferredIndex
|
|
if not dialog and info.preferredIndex then
|
|
for i = 1, info.preferredIndex do
|
|
local frame = _G['ElvUI_StaticPopup'..i]
|
|
if frame and not frame:IsShown() then
|
|
dialog = frame
|
|
break
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
if not dialog then
|
|
if info.OnCancel then
|
|
info.OnCancel()
|
|
end
|
|
|
|
return
|
|
end
|
|
|
|
dialog.maxHeightSoFar, dialog.maxWidthSoFar = 0, 0
|
|
|
|
-- Set the text of the dialog
|
|
local dialogName = dialog:GetName()
|
|
local text = _G[dialogName..'Text']
|
|
text:SetFormattedText(info.text, text_arg1, text_arg2)
|
|
|
|
-- Show or hide the close button
|
|
if info.closeButton then
|
|
local closeButton = _G[dialogName..'CloseButton']
|
|
if info.closeButtonIsHide then
|
|
closeButton:SetNormalTexture([[Interface\Buttons\UI-Panel-HideButton-Up]])
|
|
closeButton:SetPushedTexture([[Interface\Buttons\UI-Panel-HideButton-Down]])
|
|
else
|
|
closeButton:SetNormalTexture([[Interface\Buttons\UI-Panel-MinimizeButton-Up]])
|
|
closeButton:SetPushedTexture([[Interface\Buttons\UI-Panel-MinimizeButton-Down]])
|
|
end
|
|
|
|
closeButton:Show()
|
|
else
|
|
_G[dialogName..'CloseButton']:Hide()
|
|
end
|
|
|
|
-- Set the editbox of the dialog
|
|
local editBox = _G[dialogName..'EditBox']
|
|
if info.hasEditBox then
|
|
editBox:Show()
|
|
editBox:SetText('')
|
|
|
|
if info.maxLetters then
|
|
editBox:SetMaxLetters(info.maxLetters)
|
|
editBox:SetCountInvisibleLetters(info.countInvisibleLetters)
|
|
end
|
|
|
|
if info.maxBytes then
|
|
editBox:SetMaxBytes(info.maxBytes)
|
|
end
|
|
|
|
if info.editBoxWidth then
|
|
editBox:Width(info.editBoxWidth)
|
|
else
|
|
editBox:Width(130)
|
|
end
|
|
else
|
|
editBox:Hide()
|
|
end
|
|
|
|
-- Show or hide money frame
|
|
if info.hasMoneyFrame then
|
|
_G[dialogName..'MoneyFrame']:Show()
|
|
_G[dialogName..'MoneyInputFrame']:Hide()
|
|
elseif info.hasMoneyInputFrame then
|
|
local moneyInputFrame = _G[dialogName..'MoneyInputFrame']
|
|
moneyInputFrame:Show()
|
|
_G[dialogName..'MoneyFrame']:Hide()
|
|
|
|
-- Set OnEnterPress for money input frames
|
|
if info.EditBoxOnEnterPressed then
|
|
moneyInputFrame.gold:SetScript('OnEnterPressed', E.StaticPopup_EditBoxOnEnterPressed)
|
|
moneyInputFrame.silver:SetScript('OnEnterPressed', E.StaticPopup_EditBoxOnEnterPressed)
|
|
moneyInputFrame.copper:SetScript('OnEnterPressed', E.StaticPopup_EditBoxOnEnterPressed)
|
|
else
|
|
moneyInputFrame.gold:SetScript('OnEnterPressed', nil)
|
|
moneyInputFrame.silver:SetScript('OnEnterPressed', nil)
|
|
moneyInputFrame.copper:SetScript('OnEnterPressed', nil)
|
|
end
|
|
else
|
|
_G[dialogName..'MoneyFrame']:Hide()
|
|
_G[dialogName..'MoneyInputFrame']:Hide()
|
|
end
|
|
|
|
-- Show or hide item button
|
|
if info.hasItemFrame then
|
|
_G[dialogName..'ItemFrame']:Show()
|
|
|
|
if data and type(data) == 'table' then
|
|
_G[dialogName..'ItemFrame'].link = data.link
|
|
_G[dialogName..'ItemFrameIconTexture']:SetTexture(data.texture)
|
|
|
|
local nameText = _G[dialogName..'ItemFrameText']
|
|
nameText:SetTextColor(unpack(data.color or {1, 1, 1, 1}))
|
|
nameText:SetText(data.name)
|
|
|
|
if data.count and data.count > 1 then
|
|
_G[dialogName..'ItemFrameCount']:SetText(data.count)
|
|
_G[dialogName..'ItemFrameCount']:Show()
|
|
else
|
|
_G[dialogName..'ItemFrameCount']:Hide()
|
|
end
|
|
end
|
|
else
|
|
_G[dialogName..'ItemFrame']:Hide()
|
|
end
|
|
|
|
-- Set the miscellaneous variables for the dialog
|
|
dialog.which = which
|
|
dialog.timeleft = info.timeout
|
|
dialog.hideOnEscape = info.hideOnEscape
|
|
dialog.exclusive = info.exclusive
|
|
dialog.enterClicksFirstButton = info.enterClicksFirstButton
|
|
|
|
-- Clear out data
|
|
dialog.data = data
|
|
|
|
-- Set the buttons of the dialog
|
|
local button1 = _G[dialogName..'Button1']
|
|
local button2 = _G[dialogName..'Button2']
|
|
local button3 = _G[dialogName..'Button3']
|
|
local button4 = _G[dialogName..'Button4']
|
|
|
|
do --If there is any recursion in this block, we may get errors (tempButtonLocs is static). If you have to recurse, we'll have to create a new table each time.
|
|
assert(#tempButtonLocs == 0) --If this fails, we're recursing. (See the table.wipe at the end of the block)
|
|
|
|
tinsert(tempButtonLocs, button1)
|
|
tinsert(tempButtonLocs, button2)
|
|
tinsert(tempButtonLocs, button3)
|
|
tinsert(tempButtonLocs, button4)
|
|
|
|
for i = #tempButtonLocs, 1, -1 do
|
|
--Do this stuff before we move it. (This is why we go back-to-front)
|
|
tempButtonLocs[i]:SetText(info['button'..i])
|
|
tempButtonLocs[i]:Hide()
|
|
tempButtonLocs[i]:ClearAllPoints()
|
|
|
|
--Now we possibly remove it.
|
|
if not (info['button'..i] and (not info['DisplayButton'..i] or info['DisplayButton'..i](dialog))) then
|
|
tremove(tempButtonLocs, i)
|
|
end
|
|
end
|
|
|
|
--Save off the number of buttons.
|
|
local numButtons = #tempButtonLocs
|
|
dialog.numButtons = numButtons
|
|
|
|
if numButtons == 3 then
|
|
tempButtonLocs[1]:Point('BOTTOMRIGHT', dialog, 'BOTTOM', -72, 16)
|
|
elseif numButtons == 2 then
|
|
tempButtonLocs[1]:Point('BOTTOMRIGHT', dialog, 'BOTTOM', -6, 16)
|
|
elseif numButtons == 1 then
|
|
tempButtonLocs[1]:Point('BOTTOM', dialog, 'BOTTOM', 0, 16)
|
|
end
|
|
|
|
for i = 1, numButtons do
|
|
if i > 1 then
|
|
tempButtonLocs[i]:Point('LEFT', tempButtonLocs[i-1], 'RIGHT', 13, 0)
|
|
end
|
|
|
|
local width = tempButtonLocs[i]:GetTextWidth()
|
|
if width > 110 then
|
|
tempButtonLocs[i]:Width(width + 20)
|
|
else
|
|
tempButtonLocs[i]:Width(120)
|
|
end
|
|
|
|
tempButtonLocs[i]:Enable()
|
|
tempButtonLocs[i]:Show()
|
|
end
|
|
|
|
wipe(tempButtonLocs)
|
|
end
|
|
|
|
-- Show or hide the alert icon
|
|
local alertIcon = _G[dialogName..'AlertIcon']
|
|
if info.showAlert then
|
|
alertIcon:SetTexture(STATICPOPUP_TEXTURE_ALERT)
|
|
if button3:IsShown() then
|
|
alertIcon:Point('LEFT', 24, 10)
|
|
else
|
|
alertIcon:Point('LEFT', 24, 0)
|
|
end
|
|
alertIcon:Show()
|
|
elseif info.showAlertGear then
|
|
alertIcon:SetTexture(STATICPOPUP_TEXTURE_ALERTGEAR)
|
|
if button3:IsShown() then
|
|
alertIcon:Point('LEFT', 24, 0)
|
|
else
|
|
alertIcon:Point('LEFT', 24, 0)
|
|
end
|
|
alertIcon:Show()
|
|
else
|
|
alertIcon:SetTexture()
|
|
alertIcon:Hide()
|
|
end
|
|
|
|
-- Show or hide the checkbox
|
|
local checkButton = _G[dialogName..'CheckButton']
|
|
local checkButtonText = _G[dialogName..'CheckButtonText']
|
|
if info.hasCheckButton then
|
|
checkButton:ClearAllPoints()
|
|
checkButton:Point('BOTTOMLEFT', 24, 20 + button1:GetHeight())
|
|
|
|
if info.checkButtonText then
|
|
checkButtonText:SetText(info.checkButtonText)
|
|
checkButtonText:Show()
|
|
else
|
|
checkButtonText:Hide()
|
|
end
|
|
|
|
checkButton:Show()
|
|
else
|
|
checkButton:Hide()
|
|
end
|
|
|
|
if info.StartDelay then
|
|
dialog.startDelay = info.StartDelay()
|
|
button1:Disable()
|
|
else
|
|
dialog.startDelay = nil
|
|
button1:Enable()
|
|
end
|
|
|
|
if info.acceptDelay then
|
|
dialog.acceptDelay = info.acceptDelay
|
|
button1:Disable()
|
|
else
|
|
dialog.acceptDelay = nil
|
|
button1:Enable()
|
|
end
|
|
|
|
editBox.autoCompleteParams = info.autoCompleteParams
|
|
editBox.autoCompleteRegex = info.autoCompleteRegex
|
|
editBox.autoCompleteFormatRegex = info.autoCompleteFormatRegex
|
|
|
|
editBox.addHighlightedText = true
|
|
|
|
-- Finally size and show the dialog
|
|
E:StaticPopup_SetUpPosition(dialog)
|
|
dialog:Show()
|
|
|
|
E:StaticPopup_Resize(dialog, which)
|
|
|
|
if info.sound then
|
|
PlaySound(info.sound)
|
|
end
|
|
|
|
return dialog
|
|
end
|
|
|
|
function E:StaticPopup_Hide(which, data)
|
|
for index = 1, MAX_STATIC_POPUPS do
|
|
local dialog = _G['ElvUI_StaticPopup'..index]
|
|
if dialog.which == which and (not data or (data == dialog.data)) then
|
|
dialog:Hide()
|
|
end
|
|
end
|
|
end
|
|
|
|
function E:StaticPopup_ButtonOnClick()
|
|
E.StaticPopup_OnClick(self:GetParent(), self:GetID())
|
|
end
|
|
|
|
function E:StaticPopup_CheckButtonOnClick()
|
|
local parent = self:GetParent()
|
|
local which = parent.which
|
|
local info = E.PopupDialogs[which]
|
|
if not info then return end
|
|
|
|
self:SetChecked(self:GetChecked())
|
|
|
|
if info.checkButtonOnClick then
|
|
info.checkButtonOnClick(self)
|
|
end
|
|
end
|
|
|
|
-- Static popup secure buttons
|
|
local SecureButtons = {}
|
|
local SecureOnEnter = function(s) s.text:SetTextColor(1, 1, 1) end
|
|
local SecureOnLeave = function(s) s.text:SetTextColor(1, 0.17, 0.26) end
|
|
function E:StaticPopup_CreateSecureButton(popup, button, text, macro)
|
|
local btn = CreateFrame('Button', nil, popup, 'SecureActionButtonTemplate')
|
|
btn:SetAttribute('type', 'macro')
|
|
btn:SetAttribute('macrotext', macro)
|
|
btn:SetAllPoints(button)
|
|
btn:Size(button:GetSize())
|
|
btn:HookScript('OnEnter', SecureOnEnter)
|
|
btn:HookScript('OnLeave', SecureOnLeave)
|
|
S:HandleButton(btn)
|
|
|
|
local t = btn:CreateFontString(nil, 'OVERLAY', btn)
|
|
t:Point('CENTER', 0, 1)
|
|
t:FontTemplate(nil, nil, 'SHADOW')
|
|
t:SetJustifyH('CENTER')
|
|
t:SetText(text)
|
|
btn.text = t
|
|
|
|
btn:SetFontString(t)
|
|
btn:SetTemplate(nil, true)
|
|
SecureOnLeave(btn)
|
|
|
|
return btn
|
|
end
|
|
|
|
function E:StaticPopup_GetAllSecureButtons()
|
|
return SecureButtons
|
|
end
|
|
|
|
function E:StaticPopup_GetSecureButton(which)
|
|
return SecureButtons[which]
|
|
end
|
|
|
|
function E:StaticPopup_PositionSecureButton(popup, popupButton, secureButton)
|
|
secureButton:SetParent(popup)
|
|
secureButton:SetAllPoints(popupButton)
|
|
secureButton:Size(popupButton:GetSize())
|
|
end
|
|
|
|
function E:StaticPopup_SetSecureButton(which, btn)
|
|
if SecureButtons[which] then
|
|
error('A secure StaticPopup Button called `'..which..'` already exists.')
|
|
end
|
|
|
|
SecureButtons[which] = btn
|
|
end
|
|
|
|
function E:Contruct_StaticPopups()
|
|
E.StaticPopupFrames = {}
|
|
|
|
for index = 1, MAX_STATIC_POPUPS do
|
|
local popup = CreateFrame('Frame', 'ElvUI_StaticPopup'..index, E.UIParent, 'StaticPopupTemplate')
|
|
popup:SetID(index)
|
|
|
|
--Fix Scripts
|
|
popup:SetScript('OnShow', E.StaticPopup_OnShow)
|
|
popup:SetScript('OnHide', E.StaticPopup_OnHide)
|
|
popup:SetScript('OnUpdate', E.StaticPopup_OnUpdate)
|
|
popup:SetScript('OnEvent', E.StaticPopup_OnEvent)
|
|
|
|
local checkbutton = CreateFrame('CheckButton', 'ElvUI_StaticPopup'..index..'CheckButton', _G['ElvUI_StaticPopup'..index], 'UICheckButtonTemplate')
|
|
checkbutton:SetScript('OnClick', E.StaticPopup_CheckButtonOnClick)
|
|
checkbutton:Size(24)
|
|
S:HandleCheckBox(checkbutton)
|
|
|
|
local checkbuttontext = _G['ElvUI_StaticPopup'..index..'CheckButtonText']
|
|
checkbuttontext:FontTemplate(nil, nil, 'SHADOW')
|
|
checkbuttontext:SetTextColor(1,0.17,0.26)
|
|
checkbuttontext:Point('LEFT', checkbutton, 'RIGHT', 4, 1)
|
|
|
|
--Skin
|
|
if E.Retail then
|
|
popup.Border:StripTextures()
|
|
end
|
|
popup:SetTemplate('Transparent')
|
|
|
|
for i = 1, 4 do
|
|
local button = _G['ElvUI_StaticPopup'..index..'Button'..i]
|
|
button:SetFrameLevel(button:GetFrameLevel() + 1)
|
|
button:SetScript('OnClick', E.StaticPopup_ButtonOnClick)
|
|
S:HandleButton(button)
|
|
end
|
|
|
|
local editbox = _G['ElvUI_StaticPopup'..index..'EditBox']
|
|
editbox:SetScript('OnEnterPressed', E.StaticPopup_EditBoxOnEnterPressed)
|
|
editbox:SetScript('OnEscapePressed', E.StaticPopup_EditBoxOnEscapePressed)
|
|
editbox:SetScript('OnTextChanged', E.StaticPopup_EditBoxOnTextChanged)
|
|
editbox:SetFrameLevel(editbox:GetFrameLevel() + 1)
|
|
|
|
S:HandleEditBox(_G['ElvUI_StaticPopup'..index..'MoneyInputFrameGold'])
|
|
S:HandleEditBox(_G['ElvUI_StaticPopup'..index..'MoneyInputFrameSilver'])
|
|
S:HandleEditBox(_G['ElvUI_StaticPopup'..index..'MoneyInputFrameCopper'])
|
|
|
|
S:HandleEditBox(editbox)
|
|
editbox.backdrop:Point('TOPLEFT', -2, -4)
|
|
editbox.backdrop:Point('BOTTOMRIGHT', 2, 4)
|
|
|
|
local nameFrame = _G['ElvUI_StaticPopup'..index..'ItemFrameNameFrame']
|
|
if nameFrame then
|
|
nameFrame:Kill()
|
|
end
|
|
|
|
local itemFrame = _G['ElvUI_StaticPopup'..index..'ItemFrame']
|
|
if itemFrame then
|
|
itemFrame:GetNormalTexture():Kill()
|
|
itemFrame:SetTemplate()
|
|
itemFrame:StyleButton()
|
|
end
|
|
|
|
local iconTexture = _G['ElvUI_StaticPopup'..index..'ItemFrameIconTexture']
|
|
if iconTexture then
|
|
iconTexture:SetTexCoord(unpack(E.TexCoords))
|
|
iconTexture:SetInside()
|
|
end
|
|
|
|
E.StaticPopupFrames[index] = popup
|
|
end
|
|
|
|
E:SecureHook('StaticPopup_SetUpPosition')
|
|
E:SecureHook('StaticPopup_CollapseTable')
|
|
end
|
|
|