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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_ENTRY_HEIGHT = 28
ZO_TRADING_HOUSE_NAME_SEARCH_MAX_ENTRIES = 22
ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_MAX_HEIGHT = ZO_TRADING_HOUSE_NAME_SEARCH_MAX_ENTRIES * ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_ENTRY_HEIGHT
ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_WIDTH = 400
return object
end
end
local MENU_ITEM_DATA = 1
itemControl . itemData = itemData
end
ZO_ScrollList_AddDataType ( self . menuList , MENU_ITEM_DATA , "ZO_TradingHouseNameSearchAutoComplete_MenuItem" , ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_ENTRY_HEIGHT , SetupMenuItem )
end
end
end )
end
end
end )
-- Because the mouse cursor can also change the currently selected item we need to track the "keyboard cursor" independently, which is represented using lastKeyboardSelectedData
-- When performing a keyboard action, we apply the keyboard cursor immediately, then perform the action, and then save the state of the keyboard cursor for the next action.
-- Then we can change the state of the actual selected item as much as we want and it will not affect this code path
else
end
end
end
else
end
end
end
end
end
if selectedData then
local exactSearchText = ZO_TradingHouseNameSearchFeature_Shared . MakeExactSearchText ( selectedData . name )
--Move the cursor to the start to scroll the edit box back for long names so the player can see the start of the name instead of the end
end
end
end
end
return
else
end
for itemIndex = 1 , numResults do
scrollData [ itemIndex ] = dataEntry
end
ZO_ScrollList_SetHeight ( self . menuList , zo_min ( ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_MAX_HEIGHT , numResults * ZO_TRADING_HOUSE_NAME_SEARCH_AUTOCOMPLETE_ENTRY_HEIGHT ) )
end
end
-- Normally, scrollLists track what you're moused over using a highlight, but instead we use a selection. This is why we aren't calling the usual ZO_ScrollList_MouseEnter functions
end
end
-- XML Globals
local autoComplete = menuItemControl . autoCompleteObject
end
local autoComplete = menuItemControl . autoCompleteObject
end
local autoComplete = menuItemControl . autoCompleteObject
end |