/Tukui/modules/skins/achievementpopup.lua
http://github.com/Asphyxia/Tukui · Lua · 94 lines · 72 code · 17 blank · 5 comment · 13 complexity · 10c711c8580fefa4efdf9901bcbe811a MD5 · raw file
- local T, C, L = unpack(select(2, ...))
- local function LoadSkin()
- local function SkinAchievePopUp()
- for i = 1, MAX_ACHIEVEMENT_ALERTS do
- local frame = _G["AchievementAlertFrame"..i]
-
- if frame then
- frame:SetAlpha(1)
- frame.SetAlpha = T.dummy
- if not frame.backdrop then
- frame:CreateBackdrop("Transparent")
- frame.backdrop:Point("TOPLEFT", _G[frame:GetName().."Background"], "TOPLEFT", -2, -6)
- frame.backdrop:Point("BOTTOMRIGHT", _G[frame:GetName().."Background"], "BOTTOMRIGHT", -2, 6)
- end
-
- -- Background
- _G["AchievementAlertFrame"..i.."Background"]:SetTexture(nil)
- _G["AchievementAlertFrame"..i.."Glow"]:Kill()
- _G["AchievementAlertFrame"..i.."Shine"]:Kill()
-
- -- Text
- _G["AchievementAlertFrame"..i.."Unlocked"]:SetFont(C.media.font, 12)
- _G["AchievementAlertFrame"..i.."Unlocked"]:SetTextColor(1, 1, 1)
- _G["AchievementAlertFrame"..i.."Name"]:SetFont(C.media.font, 14)
- -- Icon
- _G["AchievementAlertFrame"..i.."IconTexture"]:SetTexCoord(0.08, 0.92, 0.08, 0.92)
- _G["AchievementAlertFrame"..i.."IconOverlay"]:Kill()
-
- _G["AchievementAlertFrame"..i.."IconTexture"]:ClearAllPoints()
- _G["AchievementAlertFrame"..i.."IconTexture"]:Point("LEFT", frame, 7, 0)
-
- if not _G["AchievementAlertFrame"..i.."IconTexture"].b then
- _G["AchievementAlertFrame"..i.."IconTexture"].b = CreateFrame("Frame", nil, _G["AchievementAlertFrame"..i])
- _G["AchievementAlertFrame"..i.."IconTexture"].b:SetFrameLevel(0)
- _G["AchievementAlertFrame"..i.."IconTexture"].b:SetTemplate("Transparent")
- _G["AchievementAlertFrame"..i.."IconTexture"].b:Point("TOPLEFT", _G["AchievementAlertFrame"..i.."IconTexture"], "TOPLEFT", -2, 2)
- _G["AchievementAlertFrame"..i.."IconTexture"].b:Point("BOTTOMRIGHT", _G["AchievementAlertFrame"..i.."IconTexture"], "BOTTOMRIGHT", 2, -2)
- end
- end
- end
- end
- hooksecurefunc("AchievementAlertFrame_FixAnchors", SkinAchievePopUp)
- function SkinDungeonPopUP()
- for i = 1, DUNGEON_COMPLETION_MAX_REWARDS do
- local frame = _G["DungeonCompletionAlertFrame"..i]
- if frame then
- frame:SetAlpha(1)
- frame.SetAlpha = T.dummy
- if not frame.backdrop then
- frame:CreateBackdrop("Transparent")
- frame.backdrop:Point("TOPLEFT", frame, "TOPLEFT", -2, -6)
- frame.backdrop:Point("BOTTOMRIGHT", frame, "BOTTOMRIGHT", -2, 6)
- end
-
- -- Background
- for i=1, frame:GetNumRegions() do
- local region = select(i, frame:GetRegions())
- if region:GetObjectType() == "Texture" then
- if region:GetTexture() == "Interface\\LFGFrame\\UI-LFG-DUNGEONTOAST" then
- region:Kill()
- end
- end
- end
-
- _G["DungeonCompletionAlertFrame"..i.."Shine"]:Kill()
-
- _G["DungeonCompletionAlertFrame"..i.."GlowFrame"]:Kill()
- _G["DungeonCompletionAlertFrame"..i.."GlowFrame"].glow:Kill()
-
- -- Icon
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"]:SetTexCoord(0.08, 0.92, 0.08, 0.92)
-
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"]:ClearAllPoints()
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"]:Point("LEFT", frame, 7, 0)
-
- if not _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b then
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b = CreateFrame("Frame", nil, _G["DungeonCompletionAlertFrame"..i])
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b:SetFrameLevel(0)
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b:SetTemplate("Transparent")
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b:Point("TOPLEFT", _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"], "TOPLEFT", -2, 2)
- _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"].b:Point("BOTTOMRIGHT", _G["DungeonCompletionAlertFrame"..i.."DungeonTexture"], "BOTTOMRIGHT", 2, -2)
- end
- end
- end
- end
- hooksecurefunc("DungeonCompletionAlertFrame_FixAnchors", SkinDungeonPopUP)
- end
- tinsert(T.SkinFuncs["Tukui"], LoadSkin)