Back to Home

ESO Lua File v101041

ingame/guild/keyboard/zo_guildranks_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
local PLAY_SELECT_RANK_SOUND = true
local ADD_RANK_DIALOG_NAME = "GUILD_ADD_RANK"
ZO_GUILD_RANK_HEADER_TEMPLATE_KEYBOARD_HEIGHT = 35
--Guild Rank
----------------
local PLAY_SELECT_RANK_SOUND = true
ZO_GuildRank_Keyboard = ZO_GuildRank_Shared:Subclass()
function ZO_GuildRank_Keyboard:New(control, poolKey, guildId, index, customName)
    local rank = ZO_GuildRank_Shared.New(self, GUILD_RANKS, guildId, index, customName)
    rank.control = control
    rank.poolKey = poolKey
    control.rank = rank
    rank.nameLabel = GetControl(control, "Text")
    rank.nameLabel:SetText(rank.name)
    rank:SetSelected(false)
    return rank
end
function ZO_GuildRank_Keyboard:SetIconIndex(iconIndex)
    if self:GetIconIndex() ~= iconIndex then
        ZO_GuildRank_Shared.SetIconIndex(self, iconIndex)
        self:SetSelected(GUILD_RANKS:GetSelectedRankId() == self.id)
    end
end
function ZO_GuildRank_Keyboard:GetHeaderControl()
    return self.control
end
function ZO_GuildRank_Keyboard:RefreshAnchor(prevRank)
    if prevRank then
        self.control:SetAnchor(TOPLEFT, prevRank:GetHeaderControl(), BOTTOMLEFT, 0, -10)
    else
        self.control:SetAnchor(TOPLEFT, nil, TOPLEFT, 0, 0)
    end
end
function ZO_GuildRank_Keyboard:SetSelected(selected)
    if selected then
        GetControl(self.control, "Icon"):SetTexture(GetGuildRankListDownIcon(self.iconIndex))
    else
        GetControl(self.control, "Icon"):SetTexture(GetGuildRankListUpIcon(self.iconIndex))
    end
    GetControl(self.control, "IconHighlight"):SetTexture(GetGuildRankListHighlightIcon(self.iconIndex))
    ZO_IconHeader_Setup(self.control, selected)
end
function ZO_GuildRank_Keyboard:SetName(name)
    self.nameLabel:SetText(name)
    ZO_GuildRank_Shared.SetName(self, name)
end
--Guild Ranks
---------------
local ZO_GuildRanks_Keyboard = ZO_GuildRanks_Shared:Subclass()
function ZO_GuildRanks_Keyboard:New(...)
    local guildRanks = ZO_GuildRanks_Shared.New(self, ...)
    guildRanks:Initialize(...)
    return guildRanks
end
function ZO_GuildRanks_Keyboard:Initialize(control)
    local templateData =
    {
        gridListClass = ZO_GridScrollList_Keyboard,
        entryTemplate = "ZO_GuildRank_PermissionCheckboxTile_Keyboard_Control",
        entryWidth = ZO_GUILD_RANK_PERMISSON_CHECKBOX_KEYBOARD_WIDTH,
        entryHeight = ZO_GUILD_RANK_PERMISSON_CHECKBOX_KEYBOARD_HEIGHT,
        headerTemplate = "ZO_GuildRanks_Keyboard_Header_Template",
        headerHeight = ZO_GUILD_RANK_HEADER_TEMPLATE_KEYBOARD_HEIGHT,
    }
    ZO_GuildRanks_Shared.Initialize(self, control, templateData)
    self.rankIconButtonContainer = self.control:GetNamedChild("RankIconButtonIconContainer")
    self.rankIconDisplayControl = self.control:GetNamedChild("RankIcon")
    -- Initialize grid list object
    self.rankIconPickerButton = self.rankIconButtonContainer:GetNamedChild("Frame")
    self.rankIconIconControl = self.rankIconButtonContainer:GetNamedChild("Icon")
    local function OnRankIconPickerClicked()
        self:OnRankIconPickerClicked()
    end
    ZO_CheckButton_SetCheckState(self.rankIconPickerButton, true)
    ZO_CheckButton_Enable(self.rankIconPickerButton)
    self.rankIconPickerButton:SetHandler("OnClicked", OnRankIconPickerClicked)
    self.rankNameEditBG = GetControl(control, "RankNameEditBG")
    self.rankNameDisplay = GetControl(control, "RankNameDisplay")
    self.rankNameEdit = GetControl(control, "RankNameEdit")
    self.rankNameEdit:SetMaxInputChars(MAX_GUILD_RANK_NAME_LENGTH)
    self.headerPool = ZO_ControlPool:New("ZO_RankHeader", control:GetNamedChild("List"), "Header")
    self.headerPool:SetCustomFactoryBehavior(function(header)
                                                    for i = 1, header:GetNumChildren() do
                                                        local child = header:GetChild(i)
                                                        child:SetHandler("OnDragStart", ZO_GuildRankHeaderChild_OnDragStart)
                                                    end
                                                    header.OnMouseEnter = ZO_GuildRankHeader_OnMouseEnter
                                                    header.OnMouseExit = ZO_GuildRankHeader_OnMouseExit
                                                    header.OnMouseUp = ZO_GuildRankHeader_OnMouseUp
                                                    header.OnMouseDown = ZO_GuildRankHeader_OnMouseDown
                                                    ZO_IconHeader_SetMaxLines(header, 1)
                                                    ZO_IconHeader_SetAnimation(header, "RankHeaderAnimation")
                                                end)
    self.addRankHeader = GetControl(control, "AddRank")
    self.addRankHeader:GetNamedChild("Text"):SetText(GetString(SI_GUILD_RANKS_ADD_RANK))
    self.addRankHeader:GetNamedChild("Icon"):SetTexture("EsoUI/Art/Progression/addPoints_up.dds")
    self.addRankHeader:GetNamedChild("IconHighlight"):SetTexture("EsoUI/Art/Progression/addPoints_over.dds")
    ZO_IconHeader_Setup(self.addRankHeader, false)
    self.addRankHeader.OnMouseUp = function()
        self:ShowAddRankDialog(ADD_RANK_DIALOG_NAME)
    end
        
    self.updateRankOrderCallback = function() self:UpdateRankOrder() end
    control:RegisterForEvent(EVENT_GUILD_DATA_LOADED, function() self:OnGuildDataLoaded() end)
    control:RegisterForEvent(EVENT_GUILD_RANKS_CHANGED, function(_, guildId) self:OnGuildRanksChanged(guildId) end)
    control:RegisterForEvent(EVENT_GUILD_RANK_CHANGED, function(_, guildId, rankIndex) self:OnGuildRankChanged(rankIndex, guildId) end)
    control:RegisterForEvent(EVENT_GUILD_MEMBER_RANK_CHANGED, function(_, guildId, displayName) if(self:MatchesGuild(guildId)) then self:OnGuildMemberRankChanged(displayName) end end)
    control:RegisterForEvent(EVENT_SAVE_GUILD_RANKS_RESPONSE, function(_, guildId, result) self:OnSaveGuildRanksResponse(result, guildId) end)
    self:InitializeAddRankDialog(ADD_RANK_DIALOG_NAME)
    GUILD_RANKS_SCENE = ZO_Scene:New("guildRanks", SCENE_MANAGER)
    GUILD_RANKS_SCENE:RegisterCallback("StateChange",   function(oldState, newState)
                                                            if newState == SCENE_SHOWING then
                                                                KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
                                                            elseif newState == SCENE_HIDING then
                                                                self:StopDragging()
                                                            elseif newState == SCENE_HIDDEN then
                                                                self:Save()
                                                                KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
                                                            end
                                                        end)
end
function ZO_GuildRanks_Keyboard:InitializePermissionsGridListControl()
    self.permissionsContainer = self.control:GetNamedChild("PermissionsContainer")
    self.permissionsGridListControl = self.permissionsContainer:GetNamedChild("PermissionsPanel")
end
function ZO_GuildRanks_Keyboard:OnRankIconPickerClicked()
    ZO_Dialogs_ShowDialog("RankIconPicker")
end
function ZO_GuildRanks_Keyboard:InitializeKeybindDescriptor()
    self.keybindStripDescriptor =
    {
        --Add Rank
        {
            alignment = KEYBIND_STRIP_ALIGN_CENTER,
            name = GetString(SI_GUILD_RANKS_ADD_RANK),
            keybind = "UI_SHORTCUT_SECONDARY",
            callback = function()
                self:ShowAddRankDialog(ADD_RANK_DIALOG_NAME)
            end,
            visible = function()
                return self.addRankEnabled
            end,
        },
        --Remove Rank
        {
            alignment = KEYBIND_STRIP_ALIGN_CENTER,
            name = GetString(SI_GUILD_RANKS_REMOVE_RANK),
            keybind = "UI_SHORTCUT_TERTIARY",
            callback = function()
                local selectedRank = self:GetRankById(self.selectedRankId)
                if self:IsRankOccupied(selectedRank) then
                    ZO_Dialogs_ShowDialog("GUILD_REMOVE_RANK_WARNING", { rankId = self.selectedRankId })
                else
                    self:RemoveRank(self.selectedRankId)
                end
            end,
            visible = function()
                return self.removeRankEnabled
            end,
        },
    }
end
function ZO_GuildRanks_Keyboard:Save()
    if self:CanSave() then
        if ZO_GuildRanks_Shared.Save(self) then
            self.savePending = true
            self.savePendingGuildId = self.guildId
            PlaySound(SOUNDS.GUILD_RANK_SAVED)
        end
    end
end
function ZO_GuildRanks_Keyboard:OnPermissionGridListEntryToggle(...)
    self:GetRankById(self.selectedRankId):SetPermission(...)
    self.permissionsGridList:RefreshGridList()
end
function ZO_GuildRanks_Keyboard:GetSelectedRank()
    return self:GetRankById(self.selectedRankId)
end
function ZO_GuildRanks_Keyboard:CreatePermissionDataObject(index, permission)
    local data = ZO_GuildRanks_Shared.CreatePermissionDataObject(self, index, permission)
    data.mousedOverRank = function()
        return self.mousedOverRank
    end
    return data
end
function ZO_GuildRanks_Keyboard:SetGuildId(guildId)
    ZO_GuildRanks_Shared.SetGuildId(self, guildId)
end
function ZO_GuildRanks_Keyboard:RefreshRanksFromGuildData()
    if self.guildId then
        self.headerPool:ReleaseAllObjects()
        self.ranks = {}
        local firstRankId
        for i = 1, GetNumGuildRanks(self.guildId) do
            local header, key = self.headerPool:AcquireObject()
            local rank = ZO_GuildRank_Keyboard:New(header, key, self.guildId, i)
            self.ranks[i] = rank
            rank:SetSelected(false)
            if not firstRankId then
                firstRankId = rank.id
            end
        end
        self:RefreshRankHeaderLayout()
        self:RefreshAddRank()
        local lastSelectedRankId = self.selectedRankId
        self.selectedRankId = nil
        if not lastSelectedRankId or not self:SelectRank(lastSelectedRankId) then
            self:SelectRank(firstRankId)
        end
        self.permissionsGridList:RefreshGridList()
    end
end
function ZO_GuildRanks_Keyboard:RefreshRankIndices()
    for i = 1, #self.ranks do
        local rank = self.ranks[i]
        for j = 1, GetNumGuildRanks(self.guildId) do
            local rankId = GetGuildRankId(self.guildId, j)
            if rank.id == rankId then
                rank.index = j
                break
            end
        end
    end
end
function ZO_GuildRanks_Keyboard:AddRank(rankName, copyPermissionsFromRankIndex)
    local header, key = self.headerPool:AcquireObject()
    local rank = ZO_GuildRank_Keyboard:New(header, key, self.guildId, nil, rankName)
    self:InsertRank(rank, copyPermissionsFromRankIndex)
    self:RefreshAddRank()
    self:SelectRank(rank.id)
end
function ZO_GuildRanks_Keyboard:RemoveRank(rankId)
    local rank, rankIndex = self:GetRankById(rankId)
    if rank then
        if self.selectedRankId == rankId then
            self:SelectRank(nil)
        end
        self.headerPool:ReleaseObject(rank.poolKey)
        table.remove(self.ranks, rankIndex)
        local selectNextIndex = zo_clamp(rankIndex, 1, #self.ranks)
        self:SelectRank(self.ranks[selectNextIndex].id)
        self:RefreshRankHeaderLayout()
        self:RefreshAddRank()
        PlaySound(SOUNDS.GUILD_RANK_DELETED)
    end
end
function ZO_GuildRanks_Keyboard:StartDragging(rank)
    if DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_PERMISSION_EDIT) then
        if rank:IsNewRank() or not IsGuildRankGuildMaster(self.guildId, rank.index) then
            self.draggingRankId = rank.id
            WINDOW_MANAGER:SetMouseCursor(MOUSE_CURSOR_RESIZE_NS)
            self.control:SetHandler("OnUpdate", self.updateRankOrderCallback)
        end
    end
end
function ZO_GuildRanks_Keyboard:UpdateRankOrder()
    local nX, nY = NormalizeMousePositionToControl(self.control:GetNamedChild("List"))
    local numRanks = #self.ranks
    local targetIndex = zo_floor(nY * numRanks) + 1
    targetIndex = zo_clamp(targetIndex, 2, numRanks)
    local rank, rankIndex = self:GetRankById(self.draggingRankId)
    if rank and rankIndex and targetIndex ~= rankIndex then
        local tempRank = self.ranks[targetIndex]
        self.ranks[targetIndex] = rank
        self.ranks[rankIndex] = tempRank
        self:RefreshRankHeaderLayout()
        PlaySound(SOUNDS.GUILD_RANK_REORDERED)
    end
end
function ZO_GuildRanks_Keyboard:StopDragging()
    if self.draggingRankId then
        self.control:SetHandler("OnUpdate", nil)
        self.draggingRankId = nil
        WINDOW_MANAGER:SetMouseCursor(MOUSE_CURSOR_DO_NOT_CARE)
    end
end
function ZO_GuildRanks_Keyboard:RefreshRankHeaderLayout()
    local prevRank
    for i = 1, #self.ranks do
        local rank = self.ranks[i]
        rank:RefreshAnchor(prevRank)
        prevRank = rank
    end
end
function ZO_GuildRanks_Keyboard:SelectRank(rankId, playSound)
    if self.selectedRankId ~= rankId then
        if self.selectedRankId then
            local unselectRank = self:GetRankById(self.selectedRankId)
            if unselectRank then
                unselectRank:SetSelected(false)
                if unselectRank.name == "" then
                    unselectRank:SetName(unselectRank.lastGoodName)
                end
            end
        end
        self.selectedRankId = rankId
        local selectRank = self:GetRankById(rankId)
        if selectRank then
            selectRank:SetSelected(true)
            -- Play sound if as a result of a click
            if playSound then
                PlaySound(SOUNDS.GUILD_RANK_SELECTED)
            end
            self:RefreshRankInfo()
            self:RefreshRemoveRank()
            self.permissionsGridList:RefreshGridList()
            return true
        end
    end
    return false
end
function ZO_GuildRanks_Keyboard:RefreshEditPermissions()
    local enabled = DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_PERMISSION_EDIT)
    self:RefreshAddRank()
    self.rankNameEditBG:SetHidden(not enabled)
    self.rankNameDisplay:SetHidden(enabled)
    if enabled then
        self.rankIconButtonContainer:SetHidden(false)
        self.rankIconDisplayControl:SetHidden(true)
    else
        self.rankIconButtonContainer:SetHidden(true)
        self.rankIconDisplayControl:SetHidden(false)
        if self:NeedsSave() then
            self:Reset()
        end
        ZO_Dialogs_ReleaseDialog("GUILD_ADD_RANK")
    end
    self.permissionsGridList:CommitGridList()
end
function ZO_GuildRanks_Keyboard:RefreshAddRank()
    self.addRankEnabled = #self.ranks < MAX_GUILD_RANKS and DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_PERMISSION_EDIT)
    self.addRankHeader:SetHidden(not self.addRankEnabled)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRanks_Keyboard:RefreshRemoveRank()
    self.removeRankEnabled = false
    if DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_PERMISSION_EDIT) then
        local selectedRank = self:GetRankById(self.selectedRankId)
        --cant remove the guild rank
        self.removeRankEnabled = not (selectedRank.index ~= nil and IsGuildRankGuildMaster(self.guildId, selectedRank.index))
        --cant drop below 2 ranks
        self.removeRankEnabled = self.removeRankEnabled and #self.ranks > 2
    end
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRanks_Keyboard:RefreshRankInfo()
    local rank = self:GetRankById(self.selectedRankId)
    self.rankNameDisplay:SetText(rank.name)
    self.rankNameEdit:SetText(rank.name)
end
function ZO_GuildRanks_Keyboard:RefreshRankIcon()
    local rank = self:GetRankById(self.selectedRankId)
    local texture = GetGuildRankLargeIcon(rank.iconIndex)
    self.rankIconIconControl:SetTexture(texture)
    self.rankIconDisplayControl:SetTexture(texture)
end
function ZO_GuildRanks_Keyboard:GetSelectedRankId()
    return self.selectedRankId
end
function ZO_GuildRanks_Keyboard:DoAllRanksHaveAName()
    for i = 1, #self.ranks do
        local rank = self.ranks[i]
        if rank.name == "" then
            return false
        end
    end
    return true
end
function ZO_GuildRanks_Keyboard:Reset()
end
function ZO_GuildRanks_Keyboard:CanSave()
    return not self.savePending and DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_PERMISSION_EDIT) and self:DoAllRanksHaveAName() and self:NeedsSave()
end
function ZO_GuildRanks_Keyboard:ChangeSelectedGuild(dialogCallback, dialogParams)
    if dialogCallback and self.guildId ~= dialogParams.entry.guildId then
        self:Save()
        dialogCallback(dialogParams)
    end
end
function ZO_GuildRanks_Keyboard:IsGuildPendingChanges(guildId)
    return guildId == self.savePendingGuildId
end
function ZO_GuildRanks_Keyboard:ClearSavePending()
    self.savePending = false
    self.savePendingGuildId = nil
end
--Events
function ZO_GuildRanks_Keyboard:OnGuildDataLoaded()
end
function ZO_GuildRanks_Keyboard:OnSaveGuildRanksResponse(result, guildId)
    if self:IsGuildPendingChanges(guildId) then
        if result ~= SOCIAL_RESULT_NO_ERROR then
            self:Reset()
        end
    end
end
function ZO_GuildRanks_Keyboard:OnGuildRanksChanged(guildId)
    if self:IsGuildPendingChanges(guildId) and self.savePending then
        self:ClearSavePending()
        self:RefreshRankIndices()
    elseif self:MatchesGuild(guildId) then
        self:RefreshRanksFromGuildData()
    end
end
function ZO_GuildRanks_Keyboard:OnGuildRankChanged(rankIndex, guildId)
    if self:IsGuildPendingChanges(guildId) and self.savePending then
        self:ClearSavePending()
    elseif self:MatchesGuild(guildId) then
        self:RefreshRanksFromGuildData()
    end
end
function ZO_GuildRanks_Keyboard:OnGuildMemberRankChanged(displayName)
    if displayName == GetDisplayName() then
        self:RefreshRankInfo()
        self:RefreshEditPermissions()
    end
end
function ZO_GuildRanks_Keyboard:OnRankNameEdited(name)
    local rank = self:GetRankById(self.selectedRankId)
    rank:SetName(name)
end
--Local XML
function ZO_GuildRanks_Keyboard:GuildRankHeader_OnMouseEnter(header)
    self.mousedOverRank = header.rank
    self.permissionsGridList:RefreshGridList()
end
function ZO_GuildRanks_Keyboard:GuildRankHeader_OnMouseExit(header)
    self.mousedOverRank = nil
    self.permissionsGridList:RefreshGridList()
end
function ZO_GuildRanks_Keyboard:GuildRankHeader_OnMouseDown(header)
    local rankId = header.rank.id
    self:Save()
    self:SelectRank(rankId, PLAY_SELECT_RANK_SOUND)
end
function ZO_GuildRanks_Keyboard:GuildRankHeader_OnMouseUp(header)
    self:StopDragging()
end
function ZO_GuildRanks_Keyboard:GuildRankHeader_OnDragStart(header)
    self:StartDragging(header.rank)
end
function ZO_GuildRanks_Keyboard:GuildRankNameEdit_OnTextChanged(control)
    local selectedRank = self:GetRankById(self.selectedRankId)
    if selectedRank then
        selectedRank:SetName(control:GetText())
    end
end
--Global XML
end
    if ZO_CheckButton_IsEnabled(self:GetNamedChild("IconContainerFrame")) then
        self:GetNamedChild("Highlight"):SetHidden(false)
    end
end
    self:GetNamedChild("Highlight"):SetHidden(true)
end
    local header = self:GetParent()
    GUILD_RANKS:GuildRankHeader_OnDragStart(header)
end
    GUILD_RANKS:GuildRankHeader_OnMouseDown(self)
end
function ZO_GuildRankHeader_OnMouseUp(self, upInside)
    GUILD_RANKS:GuildRankHeader_OnMouseUp(self)
end
    GUILD_RANKS:GuildRankHeader_OnMouseEnter(self)
end
    GUILD_RANKS:GuildRankHeader_OnMouseExit(self)
end
    GUILD_RANKS = ZO_GuildRanks_Keyboard:New(self)
end
    self.rankIconPickerGridListControl = self:GetNamedChild("RankIconPickerContainerPanel")
    local function OnRankIconPickedCallback(newIconIndex)
        local selectedRank = GUILD_RANKS:GetRankById(GUILD_RANKS.selectedRankId)
        if selectedRank then
            selectedRank:SetIconIndex(newIconIndex)
            self.rankIconPicker:RefreshGridList()
            GUILD_RANKS:RefreshRankIcon()
            PlaySound(SOUNDS.GUILD_RANK_LOGO_SELECTED)
        end
    end
    self.rankIconPicker = ZO_GuildRankIconPicker_Keyboard:New(self.rankIconPickerGridListControl)
    self.rankIconPicker:SetGetSelectedRankFunction(function() return GUILD_RANKS:GetRankById(GUILD_RANKS.selectedRankId) end)
    ZO_Dialogs_RegisterCustomDialog("RankIconPicker",
    {
        title =
        {
            text = SI_GUILD_RANK_ICONS_DIALOG_HEADER,
        },
        mainText =
        {
            text = "",
        },
        setup = function()
            self.rankIconPicker:RefreshGridList()
        end,
        customControl = self,
        buttons =
        {
            [1] =
            {
                control = self:GetNamedChild("Close"),
                text = SI_DIALOG_CLOSE,
            },
        }
    })
end