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 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
DEFAULT_BUTTON_HEIGHT = 28
ZO_TREE_BUTTON_STATE_EXPANDED = true
ZO_TREE_BUTTON_STATE_COLLAPSED = false
TOGGLE_BUTTON_OPEN = true
TOGGLE_BUTTON_CLOSED = false
TOGGLE_BUTTON_TYPE_BLADE = 1
TOGGLE_BUTTON_TYPE_TREE = 2
TOGGLE_BUTTON_TYPE_MIN_MAX = 3
TOGGLE_BUTTON_TYPE_LEFT_RIGHT = 4
TOGGLE_BUTTON_TYPE_MINIMAP = 5
TOGGLE_BUTTON_TYPE_PADLOCK = 6
TOGGLE_BUTTON_TYPE_PADLOCK_GAMEPAD = 7
TIMED_CONFIRMATION_BUTTON_INTERVAL_MS = 3000
local NORMAL = 1
local OVER = 2
local PRESSED = 3
local DISABLED = 4
local TOGGLE_BUTTON_TEXTURES =
{
[ TOGGLE_BUTTON_TYPE_BLADE ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/blade_open_up.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/blade_open_down.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/blade_mouseOver.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/blade_closed_up.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/blade_closed_down.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/blade_mouseOver.dds" ,
}
} ,
[ TOGGLE_BUTTON_TYPE_TREE ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/tree_open_up.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/tree_open_over.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/tree_open_down.dds" ,
[ DISABLED ] = "EsoUI/Art/Buttons/tree_open_disabled.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/tree_closed_up.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/tree_closed_over.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/tree_closed_down.dds" ,
[ DISABLED ] = "EsoUI/Art/Buttons/tree_closed_disabled.dds" ,
} ,
} ,
[ TOGGLE_BUTTON_TYPE_MIN_MAX ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/minimize_normal.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/minimize_mouseDown.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/maximize_normal.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/maximize_mouseDown.dds" ,
} ,
} ,
[ TOGGLE_BUTTON_TYPE_LEFT_RIGHT ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/right_normal.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/right_mouseDown.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Buttons/left_normal.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Buttons/left_mouseDown.dds" ,
} ,
} ,
[ TOGGLE_BUTTON_TYPE_MINIMAP ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Minimap/minimap_minimize_up.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Minimap/minimap_minimize_down.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Minimap/minimap_maximize_up.dds" ,
[ OVER ] = "EsoUI/Art/Buttons/minmax_mouseOver.dds" ,
[ PRESSED ] = "EsoUI/Art/Minimap/minimap_maximize_down.dds" ,
} ,
} ,
[ TOGGLE_BUTTON_TYPE_PADLOCK ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
[ NORMAL ] = "EsoUI/Art/Miscellaneous/unlocked_up.dds" ,
[ OVER ] = "EsoUI/Art/Miscellaneous/unlocked_over.dds" ,
[ PRESSED ] = "EsoUI/Art/Miscellaneous/unlocked_down.dds" ,
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Miscellaneous/locked_up.dds" ,
[ OVER ] = "EsoUI/Art/Miscellaneous/locked_over.dds" ,
[ PRESSED ] = "EsoUI/Art/Miscellaneous/locked_down.dds" ,
} ,
} ,
[ TOGGLE_BUTTON_TYPE_PADLOCK_GAMEPAD ] =
{
[ TOGGLE_BUTTON_OPEN ] =
{
-- Show nothing
} ,
[ TOGGLE_BUTTON_CLOSED ] =
{
[ NORMAL ] = "EsoUI/Art/Miscellaneous/Gamepad/gp_icon_locked32.dds" ,
} ,
} ,
}
if textureTable [ NORMAL ] then
else
end
if textureTable [ OVER ] then
end
if textureTable [ PRESSED ] then
end
if textureTable [ DISABLED ] then
end
end
if initialState == nil then
initialState = TOGGLE_BUTTON_OPEN
end
toggleButton . state = initialState
end
toggleButton . state = not toggleButton . state
end
toggleButton . state = state
end
return toggleButton . state
end
------------------------
-- ZO_CheckButton
------------------------
function ZO_CheckButtonLabel_SetDefaultColors ( label , defaultNormalColor , defaultHighlightColor , defaultDisabledColor )
label . defaultNormalColor = defaultNormalColor
label . defaultHighlightColor = defaultHighlightColor
label . defaultDisabledColor = defaultDisabledColor
end
local normalColor = label . defaultNormalColor or ZO_NORMAL_TEXT
local highlightColor = label . defaultHighlightColor or ZO_HIGHLIGHT_TEXT
if over then
else
end
else
local disabledColor = label . defaultDisabledColor or ZO_DISABLED_TEXT
end
end
end
end
local MOUSED_OVER = true
end
local NOT_MOUSED_OVER = false
end
end
end
end
end
end
end
end
local callToggleFunc = true
if bState == BSTATE_NORMAL then
elseif bState == BSTATE_PRESSED then
else
callToggleFunc = false
end
end
end
end
return currentState ~= BSTATE_DISABLED and currentState ~= BSTATE_DISABLED_PRESSED
end
return buttonControl . tooltipEnabled == nil or buttonControl . tooltipEnabled
end
else
end
end
if currentState == BSTATE_PRESSED then
elseif currentState == BSTATE_NORMAL then
end
if buttonControl . label then
end
end
if currentState == BSTATE_DISABLED_PRESSED then
elseif currentState == BSTATE_DISABLED then
end
if buttonControl . label then
end
end
end
buttonControl . tooltipAnchorControl = anchorControl
buttonControl . tooltipAnchorDirection = anchorDirection
end
end
end
if buttonControl . checkedText then
end
end
if buttonControl . uncheckedText then
end
end
return currentState == BSTATE_PRESSED or currentState == BSTATE_DISABLED_PRESSED
end
if checkStateType == "boolean" then
elseif checkStateType == "string" then
isChecked = ( checkState == "true" ) or ( checkState == "t" ) or ( checkState == "1" ) or ( checkState == "y" )
elseif checkStateType == "number" then
end
else
end
end
end
TRISTATE_CHECK_BUTTON_CHECKED = 1
TRISTATE_CHECK_BUTTON_UNCHECKED = 2
TRISTATE_CHECK_BUTTON_INDETERMINATE = 3
if checkState == TRISTATE_CHECK_BUTTON_CHECKED then
elseif checkState == TRISTATE_CHECK_BUTTON_UNCHECKED then
elseif checkState == TRISTATE_CHECK_BUTTON_INDETERMINATE then
end
buttonControl . checkState = checkState
end
end
return buttonControl . checkState
end
local CALL_STATE_CHANGE_FUNCTION = true
local checkState = buttonControl . checkState
if checkState == TRISTATE_CHECK_BUTTON_CHECKED then
ZO_TriStateCheckButton_SetState ( buttonControl , TRISTATE_CHECK_BUTTON_UNCHECKED , CALL_STATE_CHANGE_FUNCTION )
elseif checkState == TRISTATE_CHECK_BUTTON_UNCHECKED then
ZO_TriStateCheckButton_SetState ( buttonControl , TRISTATE_CHECK_BUTTON_CHECKED , CALL_STATE_CHANGE_FUNCTION )
elseif checkState == TRISTATE_CHECK_BUTTON_INDETERMINATE then
ZO_TriStateCheckButton_SetState ( buttonControl , TRISTATE_CHECK_BUTTON_CHECKED , CALL_STATE_CHANGE_FUNCTION )
end
end
end
if selected then
if buttonControl . selectedFont then
end
else
if buttonControl . unselectedFont then
end
end
end
end
else
end
end
if ( unitTag == "player" ) then
end
end
end
end
if ( unitTag == "player" ) then
end
end
end
--Initialize these here since platform style depends on it
end
anchorPoint = anchorPoint or LEFT
xOffset = xOffset or 5
yOffset = yOffset or 0
InformationTooltip : AddLine ( GetString ( SI_WEAPON_SWAP_TOOLTIP ) , "" , ZO_TOOLTIP_DEFAULT_COLOR : UnpackRGB ( ) )
InformationTooltip : AddLine ( zo_strformat ( SI_WEAPON_SWAP_UNEARNED_TOOLTIP , unlockLevel ) , "" , ZO_ERROR_COLOR : UnpackRGB ( ) )
InformationTooltip : AddLine ( GetString ( SI_WEAPON_SWAP_TOOLTIP ) , "" , ZO_TOOLTIP_DEFAULT_COLOR : UnpackRGB ( ) )
InformationTooltip : AddLine ( GetString ( SI_WEAPON_SWAP_DISABLED_TOOLTIP ) , "" , ZO_ERROR_COLOR : UnpackRGB ( ) )
else
end
end
end
end
end
end
end
end
------------------------
-- ZO_TimedConfirmationButton
------------------------
do
if endTimeMS and confirmText then
if timeRemainingS > 0 then
local buttonText = zo_strformat ( SI_TIMED_CONFIRMATION_BUTTON_COOLDOWN_FORMAT , confirmText , timeRemainingS )
end
return
end
end
end
end
end
end
local toggleState = true
if isConfirmationHidden then
local UNCONFIRMED = false
-- Suppress the confirmation state if the handler did not require confirmation.
toggleState = false
end
else
local CONFIRMED = true
end
if toggleState then
end
end
end
function ZO_TimedConfirmationButton_Setup ( control , buttonLabelText , confirmLabelText , clickHandlerCallback )
end
end |