elderscrolls-addon-achievem.../Libs/LibAddonMenu-2.0/controls/custom.lua

36 lignes
1.2 KiB
Lua
Brut Vue normale Historique

2016-10-10 19:48:47 +00:00
--[[customData = {
type = "custom",
2019-10-26 20:14:39 +00:00
reference = "MyAddonCustomControl", -- unique name for your control to use as reference (optional)
refreshFunc = function(customControl) end, -- function to call when panel/controls refresh (optional)
width = "full", -- or "half" (optional)
} ]]
2016-10-10 19:48:47 +00:00
local widgetVersion = 7
2016-10-10 19:48:47 +00:00
local LAM = LibStub("LibAddonMenu-2.0")
if not LAM:RegisterWidget("custom", widgetVersion) then return end
local function UpdateValue(control)
if control.data.refreshFunc then
control.data.refreshFunc(control)
end
2016-10-10 19:48:47 +00:00
end
local MIN_HEIGHT = 26
function LAMCreateControl.custom(parent, customData, controlName)
local control = LAM.util.CreateBaseControl(parent, customData, controlName)
local width = control:GetWidth()
control:SetResizeToFitDescendents(true)
2016-10-10 19:48:47 +00:00
if control.isHalfWidth then --note these restrictions
control:SetDimensionConstraints(width / 2, MIN_HEIGHT, width / 2, MIN_HEIGHT * 4)
else
control:SetDimensionConstraints(width, MIN_HEIGHT, width, MIN_HEIGHT * 4)
end
2016-10-10 19:48:47 +00:00
control.UpdateValue = UpdateValue
2016-10-10 19:48:47 +00:00
LAM.util.RegisterForRefreshIfNeeded(control)
2016-10-10 19:48:47 +00:00
return control
end