Back to Home

ESO Lua File v101041

ingame/guild/guildrankiconpicker_shared.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---------------------------
--Guild Rank Icon Picker --
---------------------------
ZO_GuildRankIconPicker_Shared = ZO_InitializingObject:Subclass()
function ZO_GuildRankIconPicker_Shared:Initialize(control, templateData)
    self.control = control
    -- This is platform specific data that needs to be overridden by the inheriting classes as it
    -- specifies the platform specific data to use.
    --[[ Expected Attributes for Icon Picker
gridListClass - The class object from which self.rankIconPickerGridList will be created,
entryTemplate - The name of the template control to be used for an icon in the view that allows a guild rank to select its icon,
entryWidth - The width to be used for the the entryTemplate,
entryHeight - The height to be used for the entryTemplate,
entryPaddingX - The padding in pixels between icons horizontally,
entryPaddingY - The padding in pixels between icons vertically,
narrationText - Optional: The text used to narrate the entry when using screen narration. Can be a function or a string,
]]
    self.templateData = templateData
end
function ZO_GuildRankIconPicker_Shared:OnRankIconPickerEntrySetup(control, data)
    assert(false) -- override in derived function
end
function ZO_GuildRankIconPicker_Shared:InitializeRankIconPickerGridList()
    local templateData = self.templateData
    self.rankIconPickerGridList = templateData.gridListClass:New(self.control)
    local function rankIconPickerEntrySetup(control, data)
    end
    local HIDE_CALLBACK = nil
    self.rankIconPickerGridList:AddEntryTemplate(templateData.entryTemplate, templateData.entryWidth, templateData.entryHeight, rankIconPickerEntrySetup, HIDE_CALLBACK, nil, templateData.entryPaddingX, templateData.entryPaddingY)
end
function ZO_GuildRankIconPicker_Shared:OnRankIconPickerGridListEntryClicked()
    assert(false) -- override in derived function
end
function ZO_GuildRankIconPicker_Shared:SetGetSelectedRankFunction(func)
end
function ZO_GuildRankIconPicker_Shared:SetRankIconPickedCallback(callback)
end
function ZO_GuildRankIconPicker_Shared:CreateRankIconPickerDataObject(index)
    local data =
    {
        iconIndex = index,
        isCurrent = function()
            local selectedRank = self.getSelectedRankFunc and self.getSelectedRankFunc()
            return selectedRank and selectedRank:GetIconIndex() == index or false
        end,
        narrationText = self.templateData.narrationText,
    }
    return data
end
function ZO_GuildRankIconPicker_Shared:BuildRankIconPickerGridList()
    self.rankIconPickerGridList:ClearGridList()
    local templateData = self.templateData
    for i = 1, GetNumGuildRankIcons() do
        local data = self:CreateRankIconPickerDataObject(i)
        self.rankIconPickerGridList:AddEntry(data, templateData.entryTemplate)
    end
    self.rankIconPickerGridList:CommitGridList()
end
function ZO_GuildRankIconPicker_Shared:RefreshGridList()
    self.rankIconPickerGridList:RefreshGridList()
end