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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 |
local mouseUpRefCounts = { }
local selectedIndex = nil
local lastCommandWasFromMenu = true
local DEFAULT_TEXT_COLOR = ZO_ColorDef : New ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_TEXT_COLORS , INTERFACE_TEXT_COLOR_NORMAL ) )
local DEFAULT_TEXT_HIGHLIGHT = ZO_ColorDef : New ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_TEXT_COLORS , INTERFACE_TEXT_COLOR_CONTEXT_HIGHLIGHT ) )
MENU_ADD_OPTION_LABEL = 1
MENU_ADD_OPTION_CHECKBOX = 2
MENU_TYPE_DEFAULT = 1
MENU_TYPE_COMBO_BOX = 2
MENU_TYPE_TEXT_ENTRY_DROP_DOWN = 3
MENU_TYPE_MULTISELECT_COMBO_BOX = 4
local menuInfo =
{
[ MENU_TYPE_DEFAULT ] =
{
backdropEdge = "EsoUI/Art/Tooltips/UI-Border.dds" ,
backdropCenter = "EsoUI/Art/Tooltips/UI-TooltipCenter.dds" ,
backdropInsets = { 16 , 16 , - 16 , - 16 } ,
backdropEdgeWidth = 128 ,
backdropEdgeHeight = 16 ,
} ,
[ MENU_TYPE_COMBO_BOX ] =
{
backdropEdge = "EsoUI/Art/Miscellaneous/dropDown_edge.dds" ,
backdropCenter = "EsoUI/Art/Miscellaneous/dropDown_center.dds" ,
backdropInsets = { 16 , 16 , - 16 , - 16 } ,
backdropEdgeWidth = 128 ,
backdropEdgeHeight = 16 ,
} ,
[ MENU_TYPE_TEXT_ENTRY_DROP_DOWN ] =
{
backdropEdge = "EsoUI/Art/Miscellaneous/textEntry_dropDown_edge.dds" ,
backdropCenter = "EsoUI/Art/Miscellaneous/textEntry_dropDown_center.dds" ,
backdropInsets = { 8 , 8 , - 8 , - 8 } ,
backdropEdgeWidth = 64 ,
backdropEdgeHeight = 8 ,
hideMunge = true ,
} ,
[ MENU_TYPE_MULTISELECT_COMBO_BOX ] =
{
backdropEdge = "EsoUI/Art/Miscellaneous/dropDown_edge.dds" ,
backdropCenter = "EsoUI/Art/Miscellaneous/dropDown_center.dds" ,
backdropInsets = { 16 , 16 , - 16 , - 16 } ,
backdropEdgeWidth = 128 ,
backdropEdgeHeight = 16 ,
} ,
}
local right = true
if x + ZO_Menu . width > width then
right = false
end
local bottom = true
if y + ZO_Menu . height > height then
bottom = false
end
if right then
if bottom then
else
end
else
if bottom then
else
end
end
end
if ZO_Menu . currentIndex > 0 then
local checkboxWidth , checkboxHeight = 0 , 0
checkboxWidth , checkboxHeight = menuEntry . checkbox : GetDesiredWidth ( ) , menuEntry . checkbox : GetDesiredHeight ( )
end
local entryWidth = textWidth + checkboxWidth + ZO_Menu . menuPad * 2
if entryWidth > ZO_Menu . width then
ZO_Menu . width = entryWidth
end
ZO_Menu . height = ZO_Menu . height + entryHeight + menuEntry . itemYPad
-- More adjustments will come later...this just needs to set the height
-- HACK: Because anchor processing doesn't happen right away, and because GetDimensions
-- does NOT return desired dimensions...this will actually need to remember the height
-- that the label was set to. And to remember it, we need to find the menu item in the
-- appropriate menu...
menuEntry . item . storedHeight = entryHeight
end
end
local owner = ZO_Menu . owner
if ZO_Menu . itemPool then
end
if ZO_Menu . checkBoxPool then
end
ZO_Menu . nextAnchor = ZO_Menu
ZO_Menu . currentIndex = 1
ZO_Menu . width = 0
ZO_Menu . height = 0
ZO_Menu . items = { }
ZO_Menu . spacing = 0
ZO_Menu . menuPad = 8
ZO_Menu . owner = nil
end
end
return mouseUpRefCounts [ ZO_Menu ] ~= nil
end
ZO_Menu . width = minWidth
end
ZO_Menu . spacing = spacing
end
ZO_Menu . menuPad = menuPad
end
end
ZO_Menu . owner = owner
end
local menu = menu or ZO_Menu
return ZO_Menu . owner
end
end
end
-- NOTE: If owner is a valid control, the menu system will use this to install an OnEffectivelyHidden handler
-- so that if the control is hidden for any reason, the menu will properly close. The handler is currently
-- overwritten/removed, so make sure that you account for that if your controls need to have their own
-- effectively hidden handlers.
return false
end
menuType = menuType or MENU_TYPE_DEFAULT
ZO_Menu : SetDimensions ( ( ZO_Menu . menuPad * 2 ) + ZO_Menu . width , ( ZO_Menu . menuPad * 2 ) + ZO_Menu . height + ZO_Menu . spacing * ( # ZO_Menu . items - 1 ) )
-- Force the control that contains this label to the same size as the label
-- so that mouse over and item click behavior works on each line without
-- needing to mouse over the actual text of the label.
-- Keep the height the same as it was...
-- HACK: See note below about storing the height...
end
if ZO_Menu . menuType ~= menuType then
local menuInfo = menuInfo [ menuType ]
ZO_MenuBG : SetEdgeTexture ( menuInfo . backdropEdge , menuInfo . backdropEdgeWidth , menuInfo . backdropEdgeHeight )
end
ZO_Menu . menuType = menuType
-- Combobox will set this to two so that the first mouse up doesn't close the menu
-- Otherwise, the first mouse up will close the menu.
mouseUpRefCounts [ ZO_Menu ] = initialRefCount or 2
-- The menu has been shown, get rid of the add item callback; it will be set again for other menus.
return true
end
-- By default, the menu is shown where the mouse cursor is...
-- but if valid anchor data is passed in, that's used instead.
-- The menu must properly contain its contents, but if "control" is
-- larger than the contents' widths, use "control" to size the menu.
-- NOTE: Not using padding on purpose since I don't want to redo all the options dropdowns. If something else breaks this, fix those by increasing their min width
end
end
else
end
end
else
end
end
return ZO_Menu . menuPad
end
--onSelect is a required field
function AddMenuItem ( labelText , onSelect , itemType , labelFont , normalColor , highlightColor , itemYPad , horizontalAlignment , isHighlighted , onEnter , onExit , enabled )
-- ESO-804925
return
end
-- Evaluate nil to be equivalent to true for backwards compatibility.
end
menuItemControl . menuIndex = ZO_Menu . currentIndex
local checkboxItemControl
if itemType == MENU_ADD_OPTION_CHECKBOX then
checkboxItemControl . menuIndex = ZO_Menu . currentIndex
end
local addedItemIndex = ZO_Menu . currentIndex
ZO_Menu . currentIndex = ZO_Menu . currentIndex + 1
itemYPad = itemYPad or 0
table . insert ( ZO_Menu . items , { item = menuItemControl , checkbox = checkboxItemControl , itemYPad = itemYPad } )
local nameLabel = menuItemControl . nameLabel
-- We need to reset these anchors first so the label can get it's proper size for the parent to reference
if checkboxItemControl then
end
if ZO_Menu . nextAnchor == ZO_Menu then
if checkboxItemControl then
checkboxItemControl : SetAnchor ( TOPLEFT , ZO_Menu . nextAnchor , TOPLEFT , ZO_Menu . menuPad , ZO_Menu . menuPad + itemYPad )
else
menuItemControl : SetAnchor ( TOPLEFT , ZO_Menu . nextAnchor , TOPLEFT , ZO_Menu . menuPad , ZO_Menu . menuPad + itemYPad )
end
else
if checkboxItemControl then
checkboxItemControl : SetAnchor ( TOPLEFT , ZO_Menu . nextAnchor , BOTTOMLEFT , 0 , ZO_Menu . spacing + itemYPad )
else
end
end
ZO_Menu . nextAnchor = checkboxItemControl or menuItemControl
if labelFont == nil then
labelFont = "ZoFontGame"
else
labelFont = "ZoFontGamepad22"
end
end
nameLabel . normalColor = normalColor or DEFAULT_TEXT_COLOR
nameLabel . highlightColor = highlightColor or DEFAULT_TEXT_HIGHLIGHT
-- NOTE: Must set text AFTER the current index has been incremented.
-- Now that we know how the label wil size, finish the anchors if we need the label to be right aligned
-- Right align won't work if the label has no width
horizontalAlignment = horizontalAlignment or TEXT_ALIGN_LEFT
if horizontalAlignment == TEXT_ALIGN_RIGHT then
end
if isHighlighted then
menuItemControl . isHighlighted = isHighlighted
end
end
return addedItemIndex
end
local menuEntry = ZO_Menu . items [ item ]
end
end
end
end
end
end
if not ZO_Menu . items then
return
end
if index then
end
if selectedIndex ~= index then
if selectedIndex then
local entry = ZO_Menu . items [ selectedIndex ]
if entry then
end
end
end
selectedIndex = index
if selectedIndex then
local entry = ZO_Menu . items [ selectedIndex ]
if entry then
end
end
end
end
end
return # ZO_Menu . items
end
return selectedIndex
end
end
end
end
end
end
end
end
-- Treat this like the checkbox was clicked.
else
-- Treat it like the label was clicked
else
-- ESO-804925
internalassert ( false , string . format ( "Attempting to click menu entry [%s] but it has no OnSelect behavior defined." , control . nameLabel : GetText ( ) ) )
end
if ZO_Menu . menuType == MENU_TYPE_MULTISELECT_COMBO_BOX then
else
end
else
end
end
end
end
end
mouseUpRefCounts [ ZO_Menu ] = nil
ZO_Menu . useUnderlay = false
end
end
highlight . key = key
end
end
local refCount = mouseUpRefCounts [ ZO_Menu ]
if refCount ~= nil then
refCount = refCount - 1
mouseUpRefCounts [ ZO_Menu ] = refCount
if refCount <= 0 then
end
end
end
end
end
end
end
end
end
end
--Pre-allocate these so the control closures (for OnMouseUp) are created as secure code and add-ons can use them.
for i = 1 , 30 do
end
for i = 1 , 30 do
end
end
return lastCommandWasFromMenu
end
lastCommandWasFromMenu = menuCommand
end
ZO_Menu . useUnderlay = useUnderlay
end |