--[[ This file is part of 'Masque', an add-on for World of Warcraft. For bug reports, suggestions and license information, please visit https://github.com/SFX-WoW/Masque. * File...: Options\About.lua * Author.: StormFX 'About Masque' Group/Panel ]] local _, Core = ... ---------------------------------------- -- Lua --- local tostring = tostring ---------------------------------------- -- Locals --- -- @ Options\Core local Setup = Core.Setup ---------------------------------------- -- Setup --- -- Creates the 'About Masque' options group/panel. function Setup.About(self) -- @ Locales\enUS local L = self.Locale -- @ Masque local CRLF = Core.CRLF local Desc = L["Masque is a skinning engine for button-based add-ons."].." ".. L["You must have an add-on that supports Masque installed to use it."].." ".. L["For more information, please visit one of the sites listed below."]..CRLF local Options = { type = "group", name = L["About Masque"], desc = "|cffffffff"..L["Select to view."].."|r", order = 3, args = { Head = { type = "description", name = "|cffffcc00"..L["About Masque"].."|r"..CRLF, fontSize = "medium", order = 1, }, Desc = { type = "description", name = Desc, fontSize = "medium", order = 2, }, Info = { type = "group", name = "", order = 3, inline = true, get = self.GetArg, set = self.NoOp, args = { Version = { type = "input", name = L["Version"], arg = tostring(self.Version), order = 1, disabled = true, dialogControl = "SFX-Info", }, API = { type = "input", name = L["API"], arg = tostring(self.API_VERSION), order = 2, disabled = true, dialogControl = "SFX-Info", }, SPC0 = { type = "description", name = " ", order = 3, }, }, }, }, } local args = Options.args.Info.args local Authors = self.Authors local Websites = self.Websites local Order = 4 local Count -- Populate the Author fields. Count = #Authors if Count > 0 then for i = 1, Count do local Name = (i == 1 and L["Authors"]) or "" local Key = "Author"..i args[Key] = { type = "input", name = Name, arg = Authors[i], order = Order, disabled = true, dialogControl = "SFX-Info", } Order = Order + 1 end args["SPC"..Order] = { type = "description", name = " ", order = Order, } Order = Order + 1 end -- Populate the Website fields. Count = #Websites if Count > 0 then for i = 1, Count do local Name = (i == 1 and L["Websites"]) or "" local Key = "Website"..i args[Key] = { type = "input", name = Name, arg = Websites[i], order = Order, dialogControl = "SFX-Info-URL", } Order = Order + 1 end args["SPC"..Order] = { type = "description", name = " ", order = Order, } end self.Options.args.Core.args.About = Options -- GC Setup.About = nil end