Gladdy-TBC/Modules/XiconProfiles.lua

127 lines
3.9 KiB
Lua
Raw Normal View History

2021-05-17 16:49:54 +02:00
local Gladdy = LibStub("Gladdy")
local L = Gladdy.L
local XiconProfiles = Gladdy:NewModule("XiconProfiles", nil, {
})
function XiconProfiles:ApplyKlimp()
2021-05-24 12:41:21 +02:00
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetKlimpProfile())
2021-05-17 18:22:31 +02:00
if deserialized then
2021-05-24 12:41:21 +02:00
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
2021-05-17 18:22:31 +02:00
end
Gladdy:Reset()
Gladdy:HideFrame()
Gladdy:ToggleFrame(3)
2021-05-17 16:49:54 +02:00
end
function XiconProfiles:ApplyKnall()
2021-05-24 12:41:21 +02:00
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetKnallProfile())
2021-05-17 18:22:31 +02:00
if deserialized then
2021-05-24 12:41:21 +02:00
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
2021-05-17 18:22:31 +02:00
end
Gladdy:Reset()
Gladdy:HideFrame()
Gladdy:ToggleFrame(3)
2021-05-17 16:49:54 +02:00
end
function XiconProfiles:ApplyClassic()
2021-05-24 12:41:21 +02:00
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetClassicProfile())
2021-05-17 18:22:31 +02:00
if deserialized then
2021-06-15 09:06:50 +02:00
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
2021-05-17 18:22:31 +02:00
end
Gladdy:Reset()
Gladdy:HideFrame()
Gladdy:ToggleFrame(3)
2021-05-17 16:49:54 +02:00
end
function XiconProfiles:ApplyBlizz()
2021-05-24 12:41:21 +02:00
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetBlizzardProfile())
if deserialized then
2021-05-24 12:41:21 +02:00
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
end
Gladdy:Reset()
Gladdy:HideFrame()
Gladdy:ToggleFrame(3)
end
2021-05-17 16:49:54 +02:00
function XiconProfiles:GetOptions()
return {
headerProfileBlizzard = {
type = "header",
2021-05-24 12:41:21 +02:00
name = "Blizzard " .. L["Profile"],
order = 2,
},
blizzardProfile = {
type = "execute",
func = function()
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
XiconProfiles:ApplyBlizz()
end,
name = " ",
2021-05-24 12:41:21 +02:00
desc = "Blizzard " .. L["Profile"],
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Blizz1.blp",
imageWidth = 350,
imageHeight = 175,
width = "full",
order = 3,
},
2021-05-17 16:49:54 +02:00
headerProfileClassic = {
type = "header",
2021-05-24 12:41:21 +02:00
name = "Classic " .. L["Profile"],
order = 4,
2021-05-17 16:49:54 +02:00
},
classicProfile = {
type = "execute",
func = function()
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
XiconProfiles:ApplyClassic()
end,
name = " ",
2021-05-24 12:41:21 +02:00
desc = "Classic " .. L["Profile"],
2021-05-17 16:49:54 +02:00
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Classic1.blp",
2021-05-20 01:23:55 +02:00
imageWidth = 350,
imageHeight = 175,
2021-05-17 16:49:54 +02:00
width = "full",
order = 5,
2021-05-17 16:49:54 +02:00
},
headerProfileKnall = {
type = "header",
2021-05-24 12:41:21 +02:00
name = "Knall's " .. L["Profile"],
order = 6,
2021-05-17 16:49:54 +02:00
},
knallProfile = {
type = "execute",
func = function()
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
XiconProfiles:ApplyKnall()
end,
name = " ",
2021-05-24 12:41:21 +02:00
desc = "Knall's " .. L["Profile"],
2021-05-17 16:49:54 +02:00
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Knall1.blp",
2021-05-20 01:23:55 +02:00
imageWidth = 350,
imageHeight = 175,
2021-05-17 16:49:54 +02:00
width = "full",
order = 7,
2021-05-17 16:49:54 +02:00
},
headerProfileKlimp = {
type = "header",
2021-05-24 12:41:21 +02:00
name = "Klimp's " .. L["Profile"],
order = 8,
2021-05-17 16:49:54 +02:00
},
klimpProfiles = {
type = "execute",
func = function()
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
XiconProfiles:ApplyKlimp()
end,
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Klimp1.blp",
2021-05-20 01:23:55 +02:00
imageWidth = 350,
imageHeight = 175,
2021-05-17 16:49:54 +02:00
name = " ",
2021-05-24 12:41:21 +02:00
desc = "Klimp's " .. L["Profile"],
2021-05-17 16:49:54 +02:00
width = "full",
order = 9,
2021-05-17 16:49:54 +02:00
},
2021-05-17 16:49:54 +02:00
}
end