213 lines
6.7 KiB
Lua
213 lines
6.7 KiB
Lua
local Gladdy = LibStub("Gladdy")
|
|
local L = Gladdy.L
|
|
|
|
local XiconProfiles = Gladdy:NewModule("XiconProfiles", nil, {
|
|
})
|
|
|
|
function XiconProfiles:ApplyKlimp()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetKlimpProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyKnall()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetKnallProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyClassic()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetClassicProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyClassicNoPet()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetClassicProfileNoPet())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyBlizz()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetBlizzardProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyRukk()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetRukkProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:ApplyMir()
|
|
local deserialized = Gladdy.modules["Export Import"]:Decode(Gladdy:GetMirProfile())
|
|
if deserialized then
|
|
Gladdy.modules["Export Import"]:ApplyImport(deserialized, Gladdy.db)
|
|
end
|
|
Gladdy:Reset()
|
|
Gladdy:HideFrame()
|
|
Gladdy:ToggleFrame(3)
|
|
end
|
|
|
|
function XiconProfiles:GetOptions()
|
|
return {
|
|
headerProfileBlizzard = {
|
|
type = "header",
|
|
name = "Blizzard " .. L["Profile"],
|
|
order = 2,
|
|
},
|
|
blizzardProfile = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyBlizz()
|
|
end,
|
|
name = " ",
|
|
desc = "Blizzard " .. L["Profile"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Blizz1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 3,
|
|
},
|
|
headerProfileClassic = {
|
|
type = "header",
|
|
name = "Classic " .. L["Profile"],
|
|
order = 4,
|
|
},
|
|
classicProfile = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyClassic()
|
|
end,
|
|
name = " ",
|
|
desc = "Classic " .. L["Profile"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Classic1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 5,
|
|
},
|
|
headerProfileClassicNoPet = {
|
|
type = "header",
|
|
name = "Classic " .. L["Profile"] .. L[" No Pet"],
|
|
order = 6,
|
|
},
|
|
classicProfileNoPet = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyClassicNoPet()
|
|
end,
|
|
name = " ",
|
|
desc = "Classic " .. L["Profile"] .. L[" No Pet"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Classic2.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 7,
|
|
},
|
|
headerProfileKnall = {
|
|
type = "header",
|
|
name = "Knall's " .. L["Profile"],
|
|
order = 8,
|
|
},
|
|
knallProfile = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyKnall()
|
|
end,
|
|
name = " ",
|
|
desc = "Knall's " .. L["Profile"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Knall1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 9,
|
|
},
|
|
headerProfileKlimp = {
|
|
type = "header",
|
|
name = "Klimp's " .. L["Profile"],
|
|
order = 10,
|
|
},
|
|
klimpProfiles = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyKlimp()
|
|
end,
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Klimp1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
name = " ",
|
|
desc = "Klimp's " .. L["Profile"],
|
|
width = "full",
|
|
order = 11,
|
|
},
|
|
headerProfileRukk = {
|
|
type = "header",
|
|
name = "Rukk1's " .. L["Profile"],
|
|
order = 12,
|
|
},
|
|
rukkProfile = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyRukk()
|
|
end,
|
|
name = " ",
|
|
desc = "Rukk1's " .. L["Profile"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Rukk1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 13,
|
|
},
|
|
headerProfileMir = {
|
|
type = "header",
|
|
name = "Mir's " .. L["Profile"],
|
|
order = 14,
|
|
},
|
|
mirProfile = {
|
|
type = "execute",
|
|
func = function()
|
|
Gladdy.dbi:ResetProfile(Gladdy.dbi:GetCurrentProfile())
|
|
XiconProfiles:ApplyMir()
|
|
end,
|
|
name = " ",
|
|
desc = "Mir's " .. L["Profile"],
|
|
image = "Interface\\AddOns\\Gladdy\\Images\\BasicProfiles\\Mir1.blp",
|
|
imageWidth = 350,
|
|
imageHeight = 175,
|
|
width = "full",
|
|
order = 15,
|
|
},
|
|
}
|
|
end |