Back to Home

ESO Lua File v100018

ingame/dyeing/keyboard/dyeing_keyboard.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
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
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
local ZO_Dyeing = ZO_Object:Subclass()
local SWATCHES_LAYOUT_OPTIONS = {
        padding = 6,
        leftMargin = 27,
        topMargin = 18,
        rightMargin = 0,
        bottomMargin = 0,
        selectionScale = ZO_DYEING_SWATCH_SELECTION_SCALE,
    }
function ZO_Dyeing:New(...)
    local dyeing = ZO_Object.New(self)
    dyeing:Initialize(...)
    return dyeing
end
function ZO_Dyeing:Initialize(control)
    self.control = control
    self.pane = self.control:GetNamedChild("Pane")
    self.noDyesLabel = self.pane:GetNamedChild("NoDyesLabel")
    self.paneScrollChild = self.control:GetNamedChild("Pane"):GetNamedChild("ScrollChild")
    self.sharedHighlight = self.control:GetNamedChild("SharedHighlight")
    self.sharedHighlight:SetParent(self.paneScrollChild)
    self.mode = DYE_MODE_EQUIPMENT
    self.savedSetInterpolator = ZO_SimpleControlScaleInterpolator:New(.9, 1.0)
    self:InitializeTabs()
    local function OnBlockingSceneActivated()
        self:AttemptExit()
    end
    DYEING_SCENE = ZO_InteractScene:New("dyeing", SCENE_MANAGER, ZO_DYEING_STATION_INTERACTION)
    SYSTEMS:RegisterKeyboardRootScene("dyeing", DYEING_SCENE)
    DYEING_SCENE:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_SHOWING then
            MAIN_MENU_MANAGER:SetBlockingScene("dyeing", OnBlockingSceneActivated)
            TriggerTutorial(TUTORIAL_TRIGGER_DYEING_OPENED)
            local selectedTabType = ZO_MenuBar_GetSelectedDescriptor(self.tabs)
            self:UpdateOptionControls()
            InitializePendingDyes(self.mode)
            KEYBIND_STRIP:RemoveDefaultExit()
            KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
            if self.dyeLayoutDirty then
                self:LayoutDyes()
            end
            self:RefreshSavedSets()
            self.equipmentSheet:MarkViewDirty()
            self.collectibleSheet:MarkViewDirty()
            if not ZO_MenuBar_GetSelectedDescriptor(self.toolsTabs) then
                self.suppressSounds = true
                ZO_MenuBar_SelectDescriptor(self.toolsTabs, self.dyeTool)
                self.suppressSounds = false
            end
            local IS_ENABLED = true
            if CanUseCollectibleDyeing() then
                ZO_MenuBar_SetDescriptorEnabled(self.tabs, DYE_MODE_COLLECTIBLE, IS_ENABLED)
            else
                ZO_MenuBar_SetDescriptorEnabled(self.tabs, DYE_MODE_COLLECTIBLE, not IS_ENABLED)
            end
        elseif newState == SCENE_HIDDEN then
            KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
            KEYBIND_STRIP:RestoreDefaultExit()
            MAIN_MENU_MANAGER:ClearBlockingScene(OnBlockingSceneActivated)
        end
    end)
    local function UpdateDyeLayout()
        self:DirtyDyeLayout()
    end
    self.control:RegisterForEvent(EVENT_UNLOCKED_DYES_UPDATED, UpdateDyeLayout)
    ZO_DYEING_MANAGER:RegisterForDyeListUpdates(UpdateDyeLayout)
    local function OnAddOnLoaded(event, name)
        if name == "ZO_Ingame" then
            self.savedVars = ZO_SavedVars:New("ZO_Ingame_SavedVariables", 1, "Dyeing", ZO_DYEING_SAVED_VARIABLES_DEFAULTS)
            self:UpdateOptionControls()
            self.control:UnregisterForEvent(EVENT_ADD_ON_LOADED)
        end
    end
    self.control:RegisterForEvent(EVENT_ADD_ON_LOADED, OnAddOnLoaded)
    self:DirtyDyeLayout()
end
function ZO_Dyeing:OnTabFilterChanged(tabData)
    self.activeTab:SetText(GetString(tabData.activeTabText))
end
function ZO_Dyeing:SetMode(mode)
    if self.mode ~= mode then
        self.mode = mode
        self.equipmentSheet.control:SetHidden(mode ~= DYE_MODE_EQUIPMENT)
        self.collectibleSheet.control:SetHidden(mode ~= DYE_MODE_COLLECTIBLE)
        -- make sure the current sheet has the latest dye data for its slots
        InitializePendingDyes(mode)
        local currentSheet = self:GetCurrentSheet()
        currentSheet:MarkViewDirty()
    end
end
function ZO_Dyeing:HandleTabChange(tabData, nextMode)
    if ZO_Dyeing_AreTherePendingDyes(self.mode) then
        self.pendingTabData = tabData
        self.pendingMode = nextMode
        if ZO_Dyeing_AreAllItemsBound(self.mode) then
            ZO_Dialogs_ShowDialog("SWTICH_DYE_MODE")
        else
            ZO_Dialogs_ShowDialog("SWTICH_DYE_MODE_BIND")
        end
    else
        self:OnTabFilterChanged(tabData)
        self:SetMode(nextMode)
    end
end
function ZO_Dyeing:InitializeTabs()
    local function GenerateTab(name, mode, normal, pressed, highlight, disabled, customTooltip)
        return {
            activeTabText = name,
            categoryName = name,
            descriptor = mode,
            normal = normal,
            pressed = pressed,
            highlight = highlight,
            disabled = disabled,
            CustomTooltipFunction = customTooltip,
            alwaysShowTooltip = true,
            callback = function(tabData, playerDriven) 
                            if playerDriven then 
                                self:HandleTabChange(tabData, mode) 
                            end 
                       end,
        }
    end
    self.tabs = self.control:GetNamedChild("Tabs")
    self.activeTab = self.control:GetNamedChild("TabsLabel")
    ZO_MenuBar_AddButton(self.tabs, GenerateTab(SI_DYEING_DYE_EQUIPMENT_TAB, DYE_MODE_EQUIPMENT, "EsoUI/Art/Dye/dyes_tabIcon_dye_up.dds", "EsoUI/Art/Dye/dyes_tabIcon_dye_down.dds", "EsoUI/Art/Dye/dyes_tabIcon_dye_over.dds", "EsoUI/Art/Dye/dyes_tabIcon_dye_disabled.dds"))
    ZO_MenuBar_AddButton(self.tabs, GenerateTab(SI_DYEING_DYE_COLLECTIBLE_TAB, DYE_MODE_COLLECTIBLE, "EsoUI/Art/Dye/dyes_tabIcon_costumeDye_up.dds", "EsoUI/Art/Dye/dyes_tabIcon_costumeDye_down.dds", "EsoUI/Art/Dye/dyes_tabIcon_costumeDye_over.dds", "EsoUI/Art/Dye/dyes_tabIcon_costumeDye_disabled.dds", function(...) self:LayoutCollectionAppearanceTooltip(...) end))
    ZO_MenuBar_SelectDescriptor(self.tabs, DYE_MODE_EQUIPMENT)
    self.activeTab:SetText(GetString(SI_DYEING_DYE_EQUIPMENT_TAB))
end
function ZO_Dyeing:LayoutCollectionAppearanceTooltip(tooltip)
    local description
    local title
    if CanUseCollectibleDyeing() then
        title = zo_strformat(SI_DYEING_COLLECTIBLE_STATUS, ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_UNLOCKED)))
        description = GetString(SI_DYEING_COLLECTIBLE_TAB_DESCRIPTION_UNLOCKED)
    else
        title = zo_strformat(SI_DYEING_COLLECTIBLE_STATUS, ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_LOCKED)))
        description = GetString(SI_DYEING_COLLECTIBLE_TAB_DESCRIPTION_LOCKED)
    end
    SetTooltipText(tooltip, title)
    local r, g, b = ZO_TOOLTIP_DEFAULT_COLOR:UnpackRGB()
    tooltip:AddLine(description, "", r, g, b)
end
function ZO_Dyeing:OnToolChanged(tool)
    local currentSheet = self:GetCurrentSheet()
    local mousedOverDyeableSlot, mousedOverDyeChannel = currentSheet:GetMousedOverDyeableSlotInfo()
    local mousedOverSavedSetIndex
    if not mousedOverDyeableSlot then
        mousedOverSavedSetIndex, mousedOverDyeChannel = self:GetMousedOverSavedSetInfo()
    end
    local lastTool = self.activeTool
    if self.activeTool then
        if mousedOverDyeableSlot and mousedOverDyeChannel then
            self:OnDyeSlotExit(mousedOverDyeableSlot, mousedOverDyeChannel)
        elseif mousedOverSavedSetIndex and mousedOverDyeChannel then
            self:OnSavedSetDyeSlotExit(mousedOverSavedSetIndex, mousedOverDyeChannel)
        end
        self.activeTool:Deactivate(self.suppressSounds)
    end
    self.activeTool = tool
    if self.activeTool then
        self.activeTool:Activate(lastTool, self.suppressSounds)
        if mousedOverDyeableSlot and mousedOverDyeChannel then
            self:OnDyeSlotEnter(mousedOverDyeableSlot, mousedOverDyeChannel)
        elseif mousedOverSavedSetIndex and mousedOverDyeChannel then
            self:OnSavedSetDyeSlotEnter(mousedOverSavedSetIndex, mousedOverDyeChannel)
        end
        if self.activeTool:HasSwatchSelection() then
            local TOOL_CHANGE = true
            self:SetSelectedDyeId(self.selectedDyeId or self.lastSelectedDyeId or self.unlockedDyeIds[1], nil, TOOL_CHANGE)
        else
            self:SetSelectedDyeId(nil)
        end
        if self.activeTool:HasSavedSetSelection() then
            self:SetSelectedSavedSetIndex(self.selectedSavedSetIndex or self.lastSelectedSavedSetIndex)
        else
            self:SetSelectedSavedSetIndex(nil)
        end
    end
end
function ZO_Dyeing:InitializeTools()
    local function GenerateTab(tool, tooltip, normal, pressed, highlight, disabled)
        return {
            descriptor = tool,
            tooltip = tooltip,
            normal = normal,
            pressed = pressed,
            highlight = highlight,
            disabled = disabled,
            callback = function(tabData) self:OnToolChanged(tool) end,
        }
    end
    self.toolsTabs = self.control:GetNamedChild("Tools")
    self.dyeTool = ZO_DyeingToolDye:New(self)
    self.fillTool = ZO_DyeingToolFill:New(self)
    self.eraseTool = ZO_DyeingToolErase:New(self)
    self.sampleTool = ZO_DyeingToolSample:New(self)
    self.setFillTool = ZO_DyeingToolSetFill:New(self)
    ZO_MenuBar_AddButton(self.toolsTabs, GenerateTab(self.dyeTool, SI_DYEING_TOOL_DYE_TOOLTIP, "EsoUI/Art/Dye/dyes_toolIcon_paint_up.dds", "EsoUI/Art/Dye/dyes_toolIcon_paint_down.dds", "EsoUI/Art/Dye/dyes_toolIcon_paint_over.dds"))
    ZO_MenuBar_AddButton(self.toolsTabs, GenerateTab(self.fillTool, SI_DYEING_TOOL_DYE_ALL_TOOLTIP, "EsoUI/Art/Dye/dyes_toolIcon_fill_up.dds", "EsoUI/Art/Dye/dyes_toolIcon_fill_down.dds", "EsoUI/Art/Dye/dyes_toolIcon_fill_over.dds"))
    ZO_MenuBar_AddButton(self.toolsTabs, GenerateTab(self.eraseTool, SI_DYEING_TOOL_ERASE_TOOLTIP, "EsoUI/Art/Dye/dyes_toolIcon_erase_up.dds", "EsoUI/Art/Dye/dyes_toolIcon_erase_down.dds", "EsoUI/Art/Dye/dyes_toolIcon_erase_over.dds"))
    ZO_MenuBar_AddButton(self.toolsTabs, GenerateTab(self.sampleTool, SI_DYEING_TOOL_SAMPLE_TOOLTIP, "EsoUI/Art/Dye/dyes_toolIcon_sample_up.dds", "EsoUI/Art/Dye/dyes_toolIcon_sample_down.dds", "EsoUI/Art/Dye/dyes_toolIcon_sample_over.dds"))
    ZO_MenuBar_AddButton(self.toolsTabs, GenerateTab(self.setFillTool, SI_DYEING_TOOL_SET_FILL, "EsoUI/Art/Dye/dyes_toolIcon_setFill_up.dds", "EsoUI/Art/Dye/dyes_toolIcon_setFill_down.dds", "EsoUI/Art/Dye/dyes_toolIcon_setFill_over.dds"))
    ZO_MenuBar_ClearClickSound(self.toolsTabs)
end
local SKIP_ANIM = true
function ZO_Dyeing:InitializeSavedSets()
    local function UpdateSelectedState(savedSet)
        if savedSet.mousedOver or savedSet.selected then
            self.savedSetInterpolator:ScaleUp(savedSet)
        else
            self.savedSetInterpolator:ScaleDown(savedSet)
        end
    end
    local function SetSelected(savedSet, selected)
        if savedSet.selected ~= selected then
            for i, control in ipairs(savedSet.dyeControls) do
                control.highlightTexture:SetHidden(not selected)
            end
            savedSet.selected = selected
            savedSet:UpdateSelectedState()
        end
    end
    local function OnMouseEnter(savedSet)
        savedSet.mousedOver = true
        savedSet:UpdateSelectedState()
    end
    local function OnMouseExit(savedSet)
        savedSet.mousedOver = false
        savedSet:UpdateSelectedState()
    end
    self.savedSets = {}
    self.lastSelectedSavedSetIndex = 1
    local header = self.control:GetNamedChild("SavedSetsHeader")
    for dyeSetIndex = 1, GetNumSavedDyeSets() do
        local savedSetSwatch = CreateControlFromVirtual("$(parent)SavedSet", self.control, "ZO_DyeingSwatchSlotDyes", dyeSetIndex)
        savedSetSwatch.SetSelected = SetSelected
        savedSetSwatch.UpdateSelectedState = UpdateSelectedState
        savedSetSwatch.OnMouseEnter = OnMouseEnter
        savedSetSwatch.OnMouseExit = OnMouseExit
        self.savedSetInterpolator:ResetToMin(savedSetSwatch)
        for dyeChannel, dyeControl in ipairs(savedSetSwatch.dyeControls) do
            dyeControl.frameTexture:SetPixelRoundingEnabled(false)
            dyeControl.swatchTexture:SetPixelRoundingEnabled(false)
            dyeControl.highlightTexture:SetPixelRoundingEnabled(false)
            dyeControl:SetHandler("OnMouseUp", function(dyeControl, button, upInside)
                if upInside then
                    self:OnSavedSetDyeSlotClicked(dyeSetIndex, dyeChannel, button)
                end
            end)
            dyeControl:SetHandler("OnMouseEnter", function(dyeControl)
                self.mousedOverSavedSetIndex = dyeSetIndex
                self.mousedOverSavedSetDyeChannel = dyeChannel
                self:OnSavedSetDyeSlotEnter(dyeSetIndex, dyeChannel, dyeControl)
            end)
            dyeControl:SetHandler("OnMouseExit", function(dyeControl)
                self.mousedOverSavedSetIndex = nil
                self.mousedOverSavedSetDyeChannel = nil
                self:OnSavedSetDyeSlotExit(dyeSetIndex, dyeChannel)
            end)
        end
        savedSetSwatch:SetAnchor(CENTER, header, BOTTOMLEFT, 47 + 124 * (dyeSetIndex - 1), 37)
        self.savedSets[#self.savedSets + 1] = savedSetSwatch
    end
end
local HIGHLIGHT_DIMENSIONS = 5
function ZO_Dyeing:InitializeSwatchPool()
    local CANNOT_SELECT_LOCKED = false
    self.swatchPool = ZO_Dyeing_InitializeSwatchPool(self, self.sharedHighlight, self.paneScrollChild, "ZO_DyeingSwatch", CANNOT_SELECT_LOCKED, HIGHLIGHT_DIMENSIONS)
end
function ZO_Dyeing:InitializeHeaderPool()
    self.headerPool = ZO_ControlPool:New("ZO_DyeingHeader", self.paneScrollChild)
end
function ZO_Dyeing:InitializeEquipmentSheet()
    local function OnEquipmentDyeSlotClicked(...)
        self:OnDyeSlotClicked(...)
    end
    local function OnEquipmentDyeSlotEnter(...)
        self:OnDyeSlotEnter(...)
    end
    local function OnEquipmentDyeSlotExit(...)
        self:OnDyeSlotExit(...)
    end
    self.equipmentSheet = ZO_DyeingSlotsSheet:New(self.control:GetNamedChild("EquipmentSheet"), OnEquipmentDyeSlotClicked, OnEquipmentDyeSlotEnter, OnEquipmentDyeSlotExit)
end
function ZO_Dyeing:InitializeCollectibleSheet()
    local function OnCollectibleDyeSlotClicked(...)
        self:OnDyeSlotClicked(...)
    end
    local function OnCollectibleDyeSlotEnter(...)
        self:OnDyeSlotEnter(...)
    end
    local function OnCollectibleDyeSlotExit(...)
        self:OnDyeSlotExit(...)
    end
    self.collectibleSheet = ZO_DyeingSlotsSheet:New(self.control:GetNamedChild("CollectibleSheet"), OnCollectibleDyeSlotClicked, OnCollectibleDyeSlotEnter, OnCollectibleDyeSlotExit)
end
function ZO_Dyeing:InitializeSortsAndFilters()
    self.showLockedCheckBox = self.control:GetNamedChild("ShowLocked")
    local function OnFilterChanged(checkButton, isChecked)
        if self.savedVars.showLocked ~= isChecked then
            self.savedVars.showLocked = isChecked
            ZO_DYEING_MANAGER:UpdateAllDyeLists()
        end
    end
    ZO_CheckButton_SetLabelText(self.showLockedCheckBox, GetString(SI_DYEING_SHOW_LOCKED))
     ZO_CheckButton_SetLabelWrapMode(self.showLockedCheckBox, TEXT_WRAP_MODE_ELLIPSIS, self.control:GetRight() - self.showLockedCheckBox:GetRight())
    local function SetSortStyle(_, _, entry)
        if entry.sortStyleType ~= self.savedVars.sortStyle then
            self.savedVars.sortStyle = entry.sortStyleType
            ZO_DYEING_MANAGER:UpdateAllDyeLists()
        end
    end
    self.sortDropDown = ZO_ComboBox_ObjectFromContainer(self.control:GetNamedChild("SortBy"))
    self.sortDropDown:SetSortsItems(false)
    self.sortByRarityEntry = ZO_ComboBox:CreateItemEntry(GetString(SI_DYEING_SORT_BY_RARITY), SetSortStyle)
    self.sortByRarityEntry.sortStyleType = ZO_DYEING_SORT_STYLE_RARITY
    self.sortDropDown:AddItem(self.sortByRarityEntry, ZO_COMBOBOX_SUPRESS_UPDATE)
    self.sortByHueEntry = ZO_ComboBox:CreateItemEntry(GetString(SI_DYEING_SORT_BY_HUE), SetSortStyle)
    self.sortByHueEntry.sortStyleType = ZO_DYEING_SORT_STYLE_HUE
    self.sortDropDown:AddItem(self.sortByHueEntry, ZO_COMBOBOX_SUPRESS_UPDATE)
    self.sortDropDown:UpdateItems()
end
function ZO_Dyeing:UpdateOptionControls()
    self.sortDropDown:SelectItem(self.savedVars.sortStyle == ZO_DYEING_SORT_STYLE_RARITY and self.sortByRarityEntry or self.sortByHueEntry)
    ZO_CheckButton_SetCheckState(self.showLockedCheckBox, self.savedVars.showLocked)
end
function ZO_Dyeing:InitializeKeybindStripDescriptors()
    self.keybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        -- Apply dye
        {
            name = GetString(SI_DYEING_COMMIT),
            keybind = "UI_SHORTCUT_SECONDARY",
            visible = function() return ZO_Dyeing_AreTherePendingDyes(self.mode) end,
            callback = function() self:CommitSelection() end,
        },
        -- Uniform Randomize
        {
            name = GetString(SI_DYEING_RANDOMIZE),
            keybind = "UI_SHORTCUT_TERTIARY",
            callback = function() self:UniformRandomize() end,
        },
        -- Undo
        {
            name = GetString(SI_DYEING_UNDO),
            keybind = "UI_SHORTCUT_NEGATIVE",
            visible = function() return ZO_Dyeing_AreTherePendingDyes(self.mode) end,
            callback = function() self:UndoPendingChanges() end,
        },
        -- Special exit button
        {
            alignment = KEYBIND_STRIP_ALIGN_RIGHT,
            name = GetString(SI_EXIT_BUTTON),
            keybind = "UI_SHORTCUT_EXIT",
            callback = function() self:AttemptExit() end,
        },
    }
end
function ZO_Dyeing:DirtyDyeLayout()
    if SCENE_MANAGER:IsShowing("dyeing") then
        self:LayoutDyes()
    else
        self.dyeLayoutDirty = true
    end
end
function ZO_Dyeing:OnDyeSlotClicked(dyeableSlot, dyeChannel, button)
    if self.activeTool then
        self.activeTool:OnClicked(dyeableSlot, dyeChannel, button)
    end
end
function ZO_Dyeing:OnSavedSetDyeSlotClicked(dyeSetIndex, dyeChannel, button)
    if self.activeTool then
        self.activeTool:OnSavedSetClicked(dyeSetIndex, dyeChannel, button)
    end
end
do
    local NON_PLAYER_DYE_NOT_KNOWN = false
    local IS_NON_PLAYER_DYE = true
    function ZO_Dyeing:OnDyeSlotEnter(dyeableSlot, dyeChannel, dyeControl)
        if self.activeTool then
            local highlightSlot, highlightDyeChannel = self.activeTool:GetHighlightRules(dyeableSlot, dyeChannel)
            self:GetCurrentSheet():ToggleDyeableSlotHightlight(highlightSlot, true, highlightDyeChannel)
            WINDOW_MANAGER:SetMouseCursor(self.activeTool:GetCursorType(dyeableSlot, dyeChannel))
        end
        local dyeId = select(dyeChannel, GetPendingSlotDyes(dyeableSlot))
        local swatch = self.dyeIdToSwatch[dyeId]
        if swatch then
            ZO_Dyeing_CreateTooltipOnMouseEnter(swatch, swatch.dyeName, swatch.known, swatch.achievementId)
        else
            local dyeName, _, _, _, achievementId = GetDyeInfoById(dyeId)
            if dyeName ~= "" then
                ZO_Dyeing_CreateTooltipOnMouseEnter(dyeControl, dyeName, NON_PLAYER_DYE_NOT_KNOWN, achievementId, IS_NON_PLAYER_DYE)
            end
        end
    end
    function ZO_Dyeing:OnDyeSlotExit(dyeableSlot, dyeChannel)
        self:GetCurrentSheet():ToggleDyeableSlotHightlight(nil, false, nil)
        WINDOW_MANAGER:SetMouseCursor(MOUSE_CURSOR_DO_NOT_CARE)
    end
    function ZO_Dyeing:OnSavedSetDyeSlotEnter(dyeSetIndex, dyeChannel, dyeControl)
        if self.activeTool then
            if self.activeTool:HasSavedSetSelection() then
                self.savedSets[dyeSetIndex]:OnMouseEnter()
            else
                local highlightSlot, highlightDyeChannel = self.activeTool:GetHighlightRules(dyeSetIndex, dyeChannel)
                self:ToggleSavedSetHightlight(highlightSlot, true, highlightDyeChannel)
                WINDOW_MANAGER:SetMouseCursor(self.activeTool:GetCursorType(dyeSetIndex, dyeChannel))
            end
        end
        local dyeId = select(dyeChannel, GetSavedDyeSetDyes(dyeSetIndex))
        local swatch = self.dyeIdToSwatch[dyeId]
        if swatch then
            ZO_Dyeing_CreateTooltipOnMouseEnter(swatch, swatch.dyeName, swatch.known, swatch.achievementId)
        else
            -- Technically should never be able to get here, but you never know
            local dyeName, _, _, _, achievementId = GetDyeInfoById(dyeId)
            ZO_Dyeing_CreateTooltipOnMouseEnter(dyeControl, dyeName, NON_PLAYER_DYE_NOT_KNOWN, achievementId, IS_NON_PLAYER_DYE)
        end
    end
end
function ZO_Dyeing:OnSavedSetDyeSlotExit(dyeSetIndex, dyeChannel)
    if self.activeTool == nil or not self.activeTool:HasSavedSetSelection() then
        self:ToggleSavedSetHightlight(nil, false, nil)
    end
    self.savedSets[dyeSetIndex]:OnMouseExit()
    WINDOW_MANAGER:SetMouseCursor(MOUSE_CURSOR_DO_NOT_CARE)
end
function ZO_Dyeing:GetSelectedDyeId()
    return self.selectedDyeId
end
function ZO_Dyeing:GetSelectedSavedSetIndex()
    return self.selectedSavedSetIndex
end
function ZO_Dyeing:GetMousedOverSavedSetInfo()
    return self.mousedOverSavedSetIndex, self.mousedOverSavedSetDyeChannel
end
function ZO_Dyeing:OnPendingDyesChanged(dyeableSlot)
    local currentSheet = self:GetCurrentSheet()
    if dyeableSlot then
        currentSheet:RefreshDyeableSlotDyes(dyeableSlot)
    else
        currentSheet:MarkViewDirty()
    end
    if SCENE_MANAGER:IsShowing("dyeing") then
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    end
end
function ZO_Dyeing:OnSavedSetSlotChanged(dyeSetIndex)
    if dyeSetIndex then
        self:RefreshSavedSet(dyeSetIndex)
    else
        self:RefreshSavedSets()
    end
end
function ZO_Dyeing:AttemptExit(exitingToAchievementId)
    self.exitingToAchievementId = exitingToAchievementId
    if ZO_Dyeing_AreTherePendingDyes(self.mode) then
        if ZO_Dyeing_AreAllItemsBound(self.mode) then
            if self.exitingToAchievementId then
                ZO_Dialogs_ShowDialog("EXIT_DYE_UI_TO_ACHIEVEMENT")
            else
                ZO_Dialogs_ShowDialog("EXIT_DYE_UI")
            end
        else
            if self.exitingToAchievementId then
                ZO_Dialogs_ShowDialog("EXIT_DYE_UI_TO_ACHIEVEMENT_BIND")
            else
                ZO_Dialogs_ShowDialog("EXIT_DYE_UI_BIND")
            end
        end
    else
        self:ConfirmExit()
    end
end
function ZO_Dyeing:ConfirmExit(applyChanges)
    if applyChanges then
        self:ConfirmCommitSelection()
        PlaySound(SOUNDS.DYEING_APPLY_CHANGES_FROM_DIALOGUE)
    end
    if self.exitingToAchievementId then
        SYSTEMS:GetObject("achievements"):ShowAchievement(self.exitingToAchievementId)
        self.exitingToAchievementId = nil
    else
        SCENE_MANAGER:ShowBaseScene()
    end
end
function ZO_Dyeing:ConfirmSwitchMode(applyChanges)
    if applyChanges then
        self:ConfirmCommitSelection()
        PlaySound(SOUNDS.DYEING_APPLY_CHANGES_FROM_DIALOGUE)
    else
        self:UndoPendingChanges()
    end
    self:OnTabFilterChanged(self.pendingTabData)
    self:SetMode(self.pendingMode)
    self.pendingTabData = nil
    self.pendingMode = nil
end
function ZO_Dyeing:CommitSelection()
    if ZO_Dyeing_AreAllItemsBound(self.mode) then
        self:ConfirmCommitSelection()
        PlaySound(SOUNDS.DYEING_APPLY_CHANGES)
    else
        ZO_Dialogs_ShowDialog("CONFIRM_APPLY_DYE")
    end
end
function ZO_Dyeing:ConfirmCommitSelection()
    ApplyPendingDyes()
end
function ZO_Dyeing:CancelExitToAchievements()
    self.exitingToAchievementId = nil
end
function ZO_Dyeing:CancelExit()
    MAIN_MENU_MANAGER:CancelBlockingSceneNextScene()
end
function ZO_Dyeing:UniformRandomize()
    ZO_Dyeing_UniformRandomize(self.mode, function() return self:GetRandomUnlockedDyeId() end)
end
function ZO_Dyeing:GetRandomUnlockedDyeId()
    if #self.unlockedDyeIds > 0 then
        return self.unlockedDyeIds[zo_random(1, #self.unlockedDyeIds)]
    end
    return nil
end
function ZO_Dyeing:UndoPendingChanges()
    PlaySound(SOUNDS.DYEING_UNDO_CHANGES)
end
function ZO_Dyeing:SwitchToDyeingWithDyeId(dyeId, suppressSounds)
    local swatch = self.dyeIdToSwatch[dyeId]
    if swatch then -- super edge case check (most likely only an internal issue) for having a non-player dye in your saved sets
        self.suppressSounds = suppressSounds
        local toolChanged = false
        if not self.activeTool:HasSwatchSelection() then
            ZO_MenuBar_SelectDescriptor(self.toolsTabs, self.dyeTool)
            toolChanged = true
        end
        self:SetSelectedDyeId(dyeId, nil, toolChanged)
        ZO_Scroll_ScrollControlIntoCentralView(self.pane, self.dyeIdToSwatch[dyeId])
        self.suppressSounds = false
    end
end
function ZO_Dyeing:DoesDyeIdExistInPlayerDyes(dyeId)
    return self.dyeIdToSwatch[dyeId] ~= nil
end
function ZO_Dyeing:SetSelectedDyeId(dyeId, becauseOfRebuild, becauseToolChange)
    if self.selectedDyeId ~= dyeId or becauseOfRebuild then
        if not becauseOfRebuild then
            local oldSwatch = self.dyeIdToSwatch[self.selectedDyeId]
            if oldSwatch then
                oldSwatch:SetSelected(false)
            end
        end
        if self.selectedDyeId then
            self.lastSelectedDyeId = self.selectedDyeId
        end
        self.selectedDyeId = dyeId
        local newSwatch = self.activeTool:HasSwatchSelection() and self.dyeIdToSwatch[self.selectedDyeId]
        if newSwatch then
            local skipAnim = becauseOfRebuild
            local skipSound = becauseOfRebuild or becauseToolChange
            newSwatch:SetSelected(true, skipAnim, skipSound)
        else
            self.sharedHighlight:SetHidden(true)
        end
    end
end
function ZO_Dyeing:SetSelectedSavedSetIndex(dyeSetIndex)
    if self.selectedSavedSetIndex ~= dyeSetIndex then
        if self.selectedSavedSetIndex then
            self.savedSets[self.selectedSavedSetIndex]:SetSelected(false)
        end
        self.lastSelectedSavedSetIndex = self.selectedSavedSetIndex
        self.selectedSavedSetIndex = dyeSetIndex
        if self.selectedSavedSetIndex then
            self.savedSets[self.selectedSavedSetIndex]:SetSelected(true)
            if self.lastSelectedSavedSetIndex then
                PlaySound(SOUNDS.DYEING_SAVED_SET_SELECTED)
            end
        end
    end
end
function ZO_Dyeing:ToggleSavedSetHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
    if dyeChannel ~= nil then
        slotControl.dyeControls[dyeChannel].highlightTexture:SetHidden(not isHighlighted)
    else
        for dyeChannel, dyeControl in ipairs(slotControl.dyeControls) do
            dyeControl.highlightTexture:SetHidden(not isHighlighted)
        end
    end
end
function ZO_Dyeing:ToggleSavedSetHightlight(dyeSetIndex, isHighlighted, dyeChannel)
    if dyeSetIndex ~= nil then
        local slotControl = self.savedSets[dyeSetIndex]
        self:ToggleSavedSetHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
    else
        for _, slotControl in ipairs(self.savedSets) do
            self:ToggleSavedSetHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
        end
    end
end
function ZO_Dyeing:LayoutDyes()
    self.dyeLayoutDirty = false
    local _, _, unlockedDyeIds, dyeIdToSwatch = ZO_Dyeing_LayoutSwatches(self.savedVars.showLocked, self.savedVars.sortStyle, self.swatchPool, self.headerPool, SWATCHES_LAYOUT_OPTIONS, self.pane)
    self.unlockedDyeIds = unlockedDyeIds
    self.dyeIdToSwatch = dyeIdToSwatch
    local anyDyesToSwatch = (next(dyeIdToSwatch) ~= nil)
    self.noDyesLabel:SetHidden(anyDyesToSwatch)
    if self.selectedDyeId then
        self:SetSelectedDyeId(self.selectedDyeId, true)
    end
end
function ZO_Dyeing:RefreshSavedSet(dyeSetIndex)
    local savedSetSwatch = self.savedSets[dyeSetIndex]
    for dyeChannel, dyeControl in ipairs(savedSetSwatch.dyeControls) do
        local currentDyeId = select(dyeChannel, GetSavedDyeSetDyes(dyeSetIndex))
        ZO_DyeingUtils_SetSlotDyeSwatchDyeId(dyeChannel, dyeControl, currentDyeId)
    end
end
function ZO_Dyeing:RefreshSavedSets()
    for dyeSetIndex in ipairs(self.savedSets) do
        self:RefreshSavedSet(dyeSetIndex)
    end
end
function ZO_Dyeing:GetCurrentSheet()
    local selectedTabType = self.mode
    if selectedTabType == DYE_MODE_EQUIPMENT then
        return self.equipmentSheet
    elseif selectedTabType == DYE_MODE_COLLECTIBLE then
        return self.collectibleSheet
    end
end
function ZO_Dyeing:GetMode()
    return self.mode
end
ZO_DyeingSlotsSheet = ZO_Object:Subclass()
function ZO_DyeingSlotsSheet:New(...)
    local dyeingSlotsSheet = ZO_Object.New(self)
    dyeingSlotsSheet:Initialize(...)
    return dyeingSlotsSheet
end
    self.control = control
    self.slots = self.control.slots
    local function OnFullInventoryUpdated()
        self:MarkViewDirty()
    end
    --Filtered on bagId == BAG_WORN
    local function OnInventorySlotUpdated(eventCode, bagId, slotIndex)
        self:MarkViewDirty()
    end
    control:RegisterForEvent(EVENT_INVENTORY_FULL_UPDATE, OnFullInventoryUpdated)
    control:RegisterForEvent(EVENT_INVENTORY_SINGLE_SLOT_UPDATE, OnInventorySlotUpdated)
    control:AddFilterForEvent(EVENT_INVENTORY_SINGLE_SLOT_UPDATE, REGISTER_FILTER_BAG_ID, BAG_WORN)
    self:MarkViewDirty()
end
    for dyeableSlot, slotControl in pairs(self.control.slots) do
        for i, dyeControl in ipairs(slotControl.dyeControls) do
            dyeControl:SetHandler("OnMouseUp", function(dyeControl, button, upInside)
                if upInside then
                    onSlotClickedCallback(dyeableSlot, i, button)
                end
            end)
            dyeControl:SetHandler("OnMouseEnter", function(dyeControl)
                self.mousedOverDyeableSlot = dyeableSlot
                self.mousedOverDyeChannel = i
                onSlotEnterCallback(dyeableSlot, i, dyeControl)
            end)
            dyeControl:SetHandler("OnMouseExit", function(dyeControl)
                self.mousedOverDyeableSlot = nil
                self.mousedOverDyeChannel = nil
                onSlotExitCallback(dyeableSlot, i)
            end)
        end
    end
end
function ZO_DyeingSlotsSheet:GetMousedOverDyeableSlotInfo()
    return self.mousedOverDyeableSlot, self.mousedOverDyeChannel
end
function ZO_DyeingSlotsSheet:MarkViewDirty()
    if SCENE_MANAGER:IsShowing("dyeing") then
        self:RefreshView()
    else
        self.dirty = true
    end
end
function ZO_DyeingSlotsSheet:RefreshView()
    self.dirty = false
    for dyeableSlot, slotControl in pairs(self.slots) do
        ZO_Dyeing_SetupDyeableSlotControl(slotControl.slot, dyeableSlot)
        self:RefreshDyeableSlotDyes(dyeableSlot)
    end
end
function ZO_DyeingSlotsSheet:RefreshDyeableSlotDyes(dyeableSlot)
    local slotControl = self.slots[dyeableSlot]
    ZO_Dyeing_RefreshDyeableSlotControlDyes(slotControl, dyeableSlot)
    if dyeableSlot == DYEABLE_SLOT_OFF_HAND or dyeableSlot == DYEABLE_SLOT_BACKUP_OFF then
        local activeDyeableSlot = ZO_Dyeing_GetActiveOffhandDyeableSlot()
        slotControl:SetHidden(dyeableSlot ~= activeDyeableSlot)
    end
end
function ZO_DyeingSlotsSheet:ToggleDyeableSlotHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
    if dyeChannel ~= nil then
        slotControl.dyeControls[dyeChannel].highlightTexture:SetHidden(not isHighlighted)
    else
        for dyeChannel, dyeControl in ipairs(slotControl.dyeControls) do
            dyeControl.highlightTexture:SetHidden(not isHighlighted)
        end
    end
end
function ZO_DyeingSlotsSheet:ToggleDyeableSlotHightlight(dyeableSlot, isHighlighted, dyeChannel)
    if dyeableSlot ~= nil then
        local slotControl = self.slots[dyeableSlot]
        self:ToggleDyeableSlotHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
    else
        for _, slotControl in pairs(self.slots) do
            self:ToggleDyeableSlotHightlightBySlotControl(slotControl, isHighlighted, dyeChannel)
        end
    end
end
    DYEING = ZO_Dyeing:New(control)
    SYSTEMS:RegisterKeyboardObject("dyeing", DYEING)
end
local SHOW_NICKNAME, SHOW_HINT, SHOW_BLOCK_REASON = true, true, true
    local equipSlot = GetEquipSlotFromDyeableSlot(control.dyeableSlot)
    local collectibleCategoryType = GetCollectibleCategoryFromDyeableSlot(control.dyeableSlot)
    if equipSlot ~= EQUIP_SLOT_NONE then
    elseif collectibleCategoryType ~= COLLECTIBLE_CATEGORY_TYPE_INVALID then
        local collectibleId = GetDyeableSlotId(control.dyeableSlot)
        if collectibleId > 0 then
            InitializeTooltip(ItemTooltip, control, LEFT, 5, 0, RIGHT)
            ItemTooltip:SetCollectible(collectibleId, SHOW_NICKNAME, SHOW_HINT, SHOW_BLOCK_REASON)
        else
            InitializeTooltip(InformationTooltip, control, LEFT, 5, 0, RIGHT)
            SetTooltipText(InformationTooltip, zo_strformat(SI_CHARACTER_EQUIP_SLOT_FORMAT, GetString("SI_DYEABLESLOT", control.dyeableSlot)))
        end
    end
end
    local equipSlot = GetEquipSlotFromDyeableSlot(control.dyeableSlot)
    local collectibleCategoryType = GetCollectibleCategoryFromDyeableSlot(control.dyeableSlot)
    if equipSlot ~= EQUIP_SLOT_NONE then
    elseif collectibleCategoryType ~= COLLECTIBLE_CATEGORY_TYPE_INVALID then
        ClearTooltip(ItemTooltip)
        ClearTooltip(InformationTooltip)
    end
end