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 |
------------------
-- Guild Finder --
------------------
ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COMBOBOX_WIDTH = ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COLUMN_WIDTH - 20
ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COMBOBOX_HEIGHT = 60
ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COLUMN_LONG_WIDTH = ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COMBOBOX_WIDTH * 2 - 20
ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COMBOBOX_TALL_HEIGHT = ZO_GUILD_RECRUITMENT_GUILD_LISTING_KEYBOARD_COMBOBOX_HEIGHT + 10
-- Primary logic class must be subclassed after the platform class so that platform specific functions will have priority over the logic class functionality
ZO_GuildRecruitment_AttributeSelectionTile_Keyboard = ZO_Object . MultiSubclass ( ZO_Tile_Keyboard , ZO_Tile )
end
end
local function OnComboBoxSelection ( comboBox , selectedDataName , selectedData , selectionChanged , oldData )
end
end
if attributeData . isTimeSelection then
ZO_PopulateHoursSinceMidnightPerHourComboBox ( self . comboBox , OnComboBoxSelection , attributeData . currentValue )
else
GUILD_RECRUITMENT_MANAGER . PopulateDropdown ( self . comboBox , attributeData . iterBegin , attributeData . iterEnd , attributeData . stringPrefix , OnComboBoxSelection , attributeData , attributeData . omittedIndex )
end
end
-- XML functions
----------------
end |