Back to Home

ESO Lua File v101041

ingame/guild/keyboard/guildroster_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
-----------------
--Guild Roster
-----------------
local ZO_KeyboardGuildRosterManager = ZO_SocialListKeyboard:Subclass()
function ZO_KeyboardGuildRosterManager:New(...)
    return ZO_SocialListKeyboard.New(self, ...)
end
function ZO_KeyboardGuildRosterManager:Initialize(control)
    ZO_SocialListKeyboard.Initialize(self, control)
    control:SetHandler("OnEffectivelyHidden", function() self:OnEffectivelyHidden() end)
    self:SetEmptyText(GetString(SI_SORT_FILTER_LIST_NO_RESULTS))
    
    ZO_ScrollList_AddDataType(self.list, GUILD_MEMBER_DATA, "ZO_KeyboardGuildRosterRow", 30, function(rowControl, data) self:SetupRow(rowControl, data) end)
    ZO_ScrollList_EnableHighlight(self.list, "ZO_ThinListHighlight")
    self.searchBox = GetControl(control, "SearchBox")
    self.searchBox:SetHandler("OnTextChanged", function() self:OnSearchTextChanged() end)
    self.sortFunction = function(listEntry1, listEntry2) return self:CompareGuildMembers(listEntry1, listEntry2) end
    self.sortHeaderGroup:SelectHeaderByKey("status")
    self.hideOfflineCheckBox = GetControl(control, "HideOffline")
    GUILD_ROSTER_SCENE = ZO_Scene:New("guildRoster", SCENE_MANAGER)
    GUILD_ROSTER_SCENE:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_SHOWING then
            self:PerformDeferredInitialization()
            KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
            self:UpdateHideOfflineCheckBox(self.hideOfflineCheckBox)
        elseif newState == SCENE_HIDDEN then
            KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
        end
    end)
    GUILD_ROSTER_FRAGMENT = ZO_FadeSceneFragment:New(control)
    self:InitializeDirtyLogic(GUILD_ROSTER_FRAGMENT)
    GUILD_ROSTER_MANAGER:AddList(self)
end
function ZO_KeyboardGuildRosterManager:PerformDeferredInitialization()
    if self.keybindStripDescriptor then return end
    self:RefreshData()
end
function ZO_KeyboardGuildRosterManager:InitializeKeybindDescriptor()
    self.keybindStripDescriptor =
    {
        -- Invite
        {
            alignment = KEYBIND_STRIP_ALIGN_CENTER,
            name = GetString(SI_GUILD_INVITE_ACTION),
            keybind = "UI_SHORTCUT_PRIMARY",
        
            callback = function()
                local guildId = GUILD_ROSTER_MANAGER:GetGuildId()
                local name = GetGuildName(guildId)
                ZO_Dialogs_ShowDialog("GUILD_INVITE", guildId, {mainTextParams = {name}})
            end,
            enabled = function()
                local numMembers, _, _, numInvitees = GetGuildInfo(GUILD_ROSTER_MANAGER:GetGuildId())
                local totalPlayers = numMembers + numInvitees
                if totalPlayers >= MAX_GUILD_MEMBERS then
                    return false, GetString("SI_SOCIALACTIONRESULT", SOCIAL_RESULT_GUILD_IS_FULL)
                end
                return true
            end,
            visible = function()
                return DoesPlayerHaveGuildPermission(GUILD_ROSTER_MANAGER:GetGuildId(), GUILD_PERMISSION_INVITE)
            end
        },
        
        -- Whisper
        {
            alignment = KEYBIND_STRIP_ALIGN_RIGHT,
            name = GetString(SI_SOCIAL_LIST_PANEL_WHISPER),
            keybind = "UI_SHORTCUT_SECONDARY",
        
            callback = function()
                local data = ZO_ScrollList_GetData(self.mouseOverRow)
                StartChatInput("", CHAT_CHANNEL_WHISPER, data.displayName)
            end,
            visible = function()
                if(self.mouseOverRow and IsChatSystemAvailableForCurrentPlatform()) then
                    local data = ZO_ScrollList_GetData(self.mouseOverRow)
                    return data and data.hasCharacter and data.online and not data.isLocalPlayer
                end
                return false
            end
        },
        -- Invite to Group
        {
            alignment = KEYBIND_STRIP_ALIGN_RIGHT,
            name = GetString(SI_FRIENDS_LIST_PANEL_INVITE),
            keybind = "UI_SHORTCUT_TERTIARY",
        
            callback = function()
                local data = ZO_ScrollList_GetData(self.mouseOverRow)
                local NOT_SENT_FROM_CHAT = false
                local DISPLAY_INVITED_MESSAGE = true
                TryGroupInviteByName(data.characterName, NOT_SENT_FROM_CHAT, DISPLAY_INVITED_MESSAGE)
            end,
            visible = function()
                if IsGroupModificationAvailable() and self.mouseOverRow then
                    local data = ZO_ScrollList_GetData(self.mouseOverRow)
                    if data and data.hasCharacter and data.online and not data.isLocalPlayer and data.rankId ~= DEFAULT_INVITED_RANK then
                        return true
                    end
                end
                return false
            end
        },
        -- Set Rank
        {
            alignment = KEYBIND_STRIP_ALIGN_LEFT,
            name = GetString(SI_GUILD_SET_RANK),
            keybind = "UI_SHORTCUT_QUATERNARY",
        
            callback = function()
                local data = ZO_ScrollList_GetData(self.mouseOverRow)
                local guildId = GUILD_ROSTER_MANAGER:GetGuildId()
                local masterList = GUILD_ROSTER_MANAGER:GetMasterList()
                local playerIndex = GetPlayerGuildMemberIndex(guildId)
                local playerData = masterList[playerIndex]
                ZO_Dialogs_ShowDialog("GUILD_SET_RANK_KEYBOARD", { guildId = guildId, targetData = data, playerData = playerData })
            end,
            visible = function()
                if self.mouseOverRow then
                    local data = ZO_ScrollList_GetData(self.mouseOverRow)
                    if data then
                        local guildId = GUILD_ROSTER_MANAGER:GetGuildId()
                        local masterList = GUILD_ROSTER_MANAGER:GetMasterList()
                        local playerIndex = GetPlayerGuildMemberIndex(guildId)
                        local playerData = masterList[playerIndex]
                        return ZO_GuildRosterManager.CanSetPlayerRank(guildId, playerData.rankIndex, data.rankIndex, data.rankId)
                    end
                end
                return false
            end
        },
    }
end
function ZO_KeyboardGuildRosterManager:OnGuildIdChanged(guildId)
    self.searchBox:SetText("")
    self.searchBox:LoseFocus()
    self:UpdateKeybinds()
end
function ZO_KeyboardGuildRosterManager:BuildMasterList()
     -- The master list lives in the GUILD_ROSTER_MANAGER and is built there
end
function ZO_KeyboardGuildRosterManager:FilterScrollList()
    local scrollData = ZO_ScrollList_GetDataList(self.list)
    ZO_ClearNumericallyIndexedTable(scrollData)
    local searchTerm = self.searchBox:GetText()
    local hideOffline = GetSetting_Bool(SETTING_TYPE_UI, UI_SETTING_SOCIAL_LIST_HIDE_OFFLINE)
    local masterList = GUILD_ROSTER_MANAGER:GetMasterList()
    for i = 1, #masterList do
        local data = masterList[i]
        if searchTerm == "" or GUILD_ROSTER_MANAGER:IsMatch(searchTerm, data) then
            if not hideOffline or data.online or data.rankId == DEFAULT_INVITED_RANK then
                table.insert(scrollData, ZO_ScrollList_CreateDataEntry(GUILD_MEMBER_DATA, data))
            end
        end
    end
end
function ZO_KeyboardGuildRosterManager:CompareGuildMembers(listEntry1, listEntry2)
    return ZO_TableOrderingFunction(listEntry1.data, listEntry2.data, self.currentSortKey, GUILD_ROSTER_ENTRY_SORT_KEYS, self.currentSortOrder)
end
function ZO_KeyboardGuildRosterManager:SortScrollList()
    if(self.currentSortKey ~= nil and self.currentSortOrder ~= nil) then
        local scrollData = ZO_ScrollList_GetDataList(self.list)
        table.sort(scrollData, self.sortFunction)
    end
end
function ZO_KeyboardGuildRosterManager:ColorRow(control, data, selected)
    local textColor, iconColor = self:GetRowColors(data, selected)
    GUILD_ROSTER_MANAGER:ColorRow(control, data, textColor, iconColor, textColor)
end
function ZO_KeyboardGuildRosterManager:SetupRow(control, data)
    ZO_SortFilterList.SetupRow(self, control, data)
    GUILD_ROSTER_MANAGER:SetupEntry(control, data) 
end
function ZO_KeyboardGuildRosterManager:UnlockSelection()
    ZO_SortFilterList.UnlockSelection(self)
    self:RefreshVisible()
end
function ZO_KeyboardGuildRosterManager:ShowPromoteToGuildMasterDialog(guildId, currentRankIndex, targetDisplayName)
    local guildAlliance = GUILD_ROSTER_MANAGER:GetGuildAlliance()
    local guildName = GUILD_ROSTER_MANAGER:GetGuildName()
    local allianceIcon = zo_iconFormat(ZO_GetAllianceSymbolIcon(guildAlliance), "100%", "100%")
    local rankName = GetFinalGuildRankName(guildId, currentRankIndex)
    ZO_Dialogs_ShowDialog("PROMOTE_TO_GUILDMASTER", { guildId = guildId, displayName = targetDisplayName}, { mainTextParams = { targetDisplayName, allianceIcon, guildName, rankName }})
end
--Events
---------
function ZO_KeyboardGuildRosterManager:OnEffectivelyHidden()
    ClearMenu()
end
function ZO_KeyboardGuildRosterManager:OnSearchTextChanged()
    self:RefreshFilters()
end
function ZO_KeyboardGuildRosterManager:GuildRosterRow_OnMouseUp(control, button, upInside)
    if button == MOUSE_BUTTON_INDEX_RIGHT and upInside then
        ClearMenu()
        local data = ZO_ScrollList_GetData(control)
        if data then
            local guildId = GUILD_ROSTER_MANAGER:GetGuildId()
            local guildName = GUILD_ROSTER_MANAGER:GetGuildName()
            local guildAlliance = GUILD_ROSTER_MANAGER:GetGuildAlliance()
            local dataIndex = data.index
            local playerIndex = GetPlayerGuildMemberIndex(guildId)
            local masterList = GUILD_ROSTER_MANAGER:GetMasterList()
            local playerData = masterList[playerIndex]
            local playerHasHigherRank = playerData.rankIndex < data.rankIndex
            local playerIsPendingInvite = data.rankId == DEFAULT_INVITED_RANK
            if ZO_GuildRosterManager.CanPromotePlayer(guildId, playerData.rankIndex, data.rankIndex, data.rankId) then
                local newRankIndex = data.rankIndex - 1
                if playerData.rankIndex < newRankIndex then
                    AddMenuItem(GetString(SI_GUILD_PROMOTE),
                                function()
                                    GuildPromote(guildId, data.displayName)
                                    PlaySound(SOUNDS.GUILD_ROSTER_PROMOTE)
                                end)
                elseif IsGuildRankGuildMaster(guildId, playerData.rankIndex) then
                    AddMenuItem(GetString(SI_GUILD_PROMOTE),
                                function()
                                    local allianceIcon = zo_iconFormat(ZO_GetAllianceSymbolIcon(guildAlliance), ALLIANCE_ICON_SIZE, ALLIANCE_ICON_SIZE)
                                    local rankName = GetFinalGuildRankName(guildId, 2)
                                    ZO_Dialogs_ShowDialog("PROMOTE_TO_GUILDMASTER", { guildId = guildId, displayName = data.displayName}, { mainTextParams = { data.displayName, allianceIcon, guildName, rankName }})
                                end)
                end 
            end
            if ZO_GuildRosterManager.CanDemotePlayer(guildId, playerData.rankIndex, data.rankIndex, data.rankId) then
                    AddMenuItem(GetString(SI_GUILD_DEMOTE),
                                    function()
                                        GuildDemote(guildId, data.displayName)
                                        PlaySound(SOUNDS.GUILD_ROSTER_DEMOTE)
                                    end)
            end
            if ZO_GuildRosterManager.CanSetPlayerRank(guildId, playerData.rankIndex, data.rankIndex, data.rankId) then
                AddMenuItem(GetString(SI_GUILD_SET_RANK),
                            function()
                                ZO_Dialogs_ShowDialog("GUILD_SET_RANK_KEYBOARD", { guildId = guildId, targetData = data, playerData = playerData })
                            end)
            end
            if DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_REMOVE) then
                if playerIsPendingInvite then
                    local allianceIcon = zo_iconFormat(ZO_GetAllianceSymbolIcon(guildAlliance), "100%", "100%")
                        AddMenuItem(GetString(SI_GUILD_UNINVITE), function()
                                                                    ZO_Dialogs_ShowDialog("UNINVITE_GUILD_PLAYER", { guildId = guildId,  displayName = data.displayName }, { mainTextParams = { data.displayName, allianceIcon, guildName } })
                                                                end)
                else
                    if playerHasHigherRank and playerIndex ~= dataIndex then
                        AddMenuItem(GetString(SI_GUILD_REMOVE), function()
                                                                    ZO_Dialogs_ShowDialog("GUILD_REMOVE_MEMBER_KEYBOARD", { guildId = guildId,  displayName = data.displayName }, { mainTextParams = { data.displayName } })
                                                                end)
                    end
                end
            end
            if DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_NOTE_EDIT) and not playerIsPendingInvite then
                AddMenuItem(GetString(SI_SOCIAL_MENU_EDIT_NOTE),    function()
                                                                        ZO_Dialogs_ShowDialog("EDIT_NOTE", {displayName = data.displayName, note = data.note, changedCallback = GUILD_ROSTER_MANAGER:GetNoteEditedFunction()})
                                                                    end)
            end
            if dataIndex == playerIndex then
                ZO_AddLeaveGuildMenuItem(guildId)
            elseif not playerIsPendingInvite then
                if data.hasCharacter and data.online then
                    if IsChatSystemAvailableForCurrentPlatform() then
                        AddMenuItem(GetString(SI_SOCIAL_LIST_SEND_MESSAGE), function() StartChatInput("", CHAT_CHANNEL_WHISPER, data.displayName) end)
                    end
                    if IsGroupModificationAvailable() then
                        AddMenuItem(GetString(SI_SOCIAL_MENU_INVITE), function() 
                            local NOT_SENT_FROM_CHAT = false
                            local DISPLAY_INVITED_MESSAGE = true
                            TryGroupInviteByName(data.characterName, NOT_SENT_FROM_CHAT, DISPLAY_INVITED_MESSAGE) 
                        end)
                    end
                    AddMenuItem(GetString(SI_SOCIAL_MENU_JUMP_TO_PLAYER), function() JumpToGuildMember(data.displayName) end)
                end
                AddMenuItem(GetString(SI_SOCIAL_MENU_VISIT_HOUSE), function() JumpToHouse(data.displayName) end)
                if not ZO_IsTributeLocked() and data.hasCharacter and data.online then
                    AddMenuItem(GetString(SI_SOCIAL_MENU_TRIBUTE_INVITE), function() InviteToTributeByDisplayName(data.displayName) end)
                end
                AddMenuItem(GetString(SI_SOCIAL_MENU_SEND_MAIL), function() MAIL_SEND:ComposeMailTo(data.displayName) end)
                if not IsFriend(data.displayName) then
                    AddMenuItem(GetString(SI_SOCIAL_MENU_ADD_FRIEND), function() ZO_Dialogs_ShowDialog("REQUEST_FRIEND", {name = data.displayName}) end)
                end
            end
            self:ShowMenu(control)
        end
    end
end
function ZO_KeyboardGuildRosterManager:GuildRosterRowRank_OnMouseEnter(control)
    local row = control:GetParent()
    local data = ZO_ScrollList_GetData(row)
    if(data.rankIndex) then
        InitializeTooltip(InformationTooltip, control, BOTTOM, 0, 0)
        SetTooltipText(InformationTooltip, GetFinalGuildRankName(GUILD_ROSTER_MANAGER:GetGuildId(), data.rankIndex))
    end
    self:EnterRow(row)
end
function ZO_KeyboardGuildRosterManager:GuildRosterRowRank_OnMouseExit(control)
    ClearTooltip(InformationTooltip)
end
function ZO_KeyboardGuildRosterManager:SetRankDialogRank(rankIndex)
    local rank = self.setRankDialogRankControlPool:GetActiveObject(rankIndex)
    if rank then
        self.setRankDialogRadioButtonGroup:SetClickedButton(rank:GetNamedChild("Button"))
    end
end
function ZO_KeyboardGuildRosterManager:OnSetRankDialogInitialized(control)
    local SELECTED_BIND_ALPHA = 1
    local DESELECTED_BIND_ALPHA = 0.5
    local radioButtonContainer = control:GetNamedChild("Buttons")
    self.setRankDialogRankControlPool = ZO_ControlPool:New("ZO_GuildSetRankDialogRank_Keyboard", radioButtonContainer)
    self.setRankDialogRadioButtonGroup = ZO_RadioButtonGroup:New()
    self.setRankDialogRadioButtonGroup:SetSelectionChangedCallback(function(group, control, previousControl)
        if control then
            control:GetParent():GetNamedChild("Bind"):SetAlpha(SELECTED_BIND_ALPHA)
        end
        if previousControl then
            previousControl:GetParent():GetNamedChild("Bind"):SetAlpha(DESELECTED_BIND_ALPHA)
        end
    end)
    ZO_PostHookHandler(control, "OnEffectivelyShown", function() PushActionLayerByName("SetGuildRankDialog") end)
    ZO_PreHookHandler(control, "OnEffectivelyHidden", function() RemoveActionLayerByName("SetGuildRankDialog") end)
    ZO_Dialogs_RegisterCustomDialog("GUILD_SET_RANK_KEYBOARD",
    {
        title =
        {
            text = SI_GUILD_SET_RANK_DIALOG_TITLE,
        },
        mainText =
        {
            text = function(dialog)
                return dialog.data.targetData.displayName
            end
        },
        customControl = control,
        setup = function(dialog, data)
            EVENT_MANAGER:RegisterForEvent("SetRankDialogKeyboard", EVENT_GUILD_MEMBER_RANK_CHANGED, function(_, guildId, displayName)
                if guildId == data.guildId and displayName == data.targetData.displayName or displayName == data.playerData.displayName then
                    ZO_Dialogs_ReleaseDialog("GUILD_SET_RANK_KEYBOARD")
                end
            end)
            EVENT_MANAGER:RegisterForEvent("SetRankDialogKeyboard", EVENT_GUILD_RANK_CHANGED, function(_, guildId)
                if guildId == data.guildId then
                    ZO_Dialogs_ReleaseDialog("GUILD_SET_RANK_KEYBOARD")
                end
            end)
            self.setRankDialogRadioButtonGroup:Clear()
            self.setRankDialogRankControlPool:ReleaseAllObjects()
            local targetRankIndex = data.targetData.rankIndex
            local IS_KEYBOARD = false
            local entries = ZO_GuildRosterManager.ComputeSetRankEntries(data.guildId, data.playerData.rankIndex, targetRankIndex, IS_KEYBOARD)
            local previousControl
            local INHERIT_COLOR = true
            for rankIndex, entry in ipairs(entries) do
                local rank = self.setRankDialogRankControlPool:AcquireObject()
                local rankButton = rank:GetNamedChild("Button")
                rankButton.rankIndex = rankIndex
                rankButton.label:SetText(zo_iconTextFormat(entry.rankIcon, "100%", "100%", entry.rankName, INHERIT_COLOR))
                local rankBind = rank:GetNamedChild("Bind")
                ZO_KeyMarkupLabel_SetCustomOffsets(rankBind, -5, 5, -2, 3)
                local keyMarkup = ZO_Keybindings_GetBindingStringFromAction("SET_GUILD_RANK_"..rankIndex, KEYBIND_TEXT_OPTIONS_FULL_NAME, KEYBIND_TEXTURE_OPTIONS_EMBED_MARKUP)
                rankBind:SetText(keyMarkup)
                if previousControl then
                    rank:SetAnchor(TOPLEFT, previousControl, BOTTOMLEFT, 0, 5)
                else
                    rank:SetAnchor(TOPLEFT, nil, TOPLEFT, 0, 0)
                end
                self.setRankDialogRadioButtonGroup:Add(rankButton)
                self.setRankDialogRadioButtonGroup:SetButtonIsValidOption(rankButton, entry.enabled)
                previousControl = rank
                if rankIndex == targetRankIndex then
                    self.setRankDialogRadioButtonGroup:SetClickedButton(rankButton)
                    rankBind:SetAlpha(SELECTED_BIND_ALPHA)
                else
                    rankBind:SetAlpha(DESELECTED_BIND_ALPHA)
                end
            end
        end,
        finishedCallback = function(dialog)
            EVENT_MANAGER:UnregisterForEvent("SetRankDialogKeyboard", EVENT_GUILD_MEMBER_RANK_CHANGED)
            EVENT_MANAGER:UnregisterForEvent("SetRankDialogKeyboard", EVENT_GUILD_RANK_CHANGED)
        end,
        buttons =
        {
            -- Confirm Button
            {
                control = control:GetNamedChild("Confirm"),
                keybind = "DIALOG_PRIMARY",
                text = GetString(SI_DIALOG_ACCEPT),
                callback = function(dialog)
                    local data = dialog.data
                    local newRankIndex = self.setRankDialogRadioButtonGroup:GetClickedButton().rankIndex
                    if newRankIndex ~= data.targetData.rankIndex then
                        if newRankIndex == 1 then
                            self:ShowPromoteToGuildMasterDialog(data.guildId, data.targetData.rankIndex, data.targetData.displayName)
                        else
                            if newRankIndex < data.targetData.rankIndex then
                                PlaySound(SOUNDS.GUILD_ROSTER_PROMOTE)
                            else
                                PlaySound(SOUNDS.GUILD_ROSTER_DEMOTE)
                            end
                            GuildSetRank(data.guildId, data.targetData.displayName, newRankIndex)
                        end
                    end
                end,
            },
            -- Cancel Button
            {
                control = control:GetNamedChild("Cancel"),
                keybind = "DIALOG_NEGATIVE",
                text = GetString(SI_DIALOG_CANCEL),
            },
        },
    })
end
--Global XML
---------------
    GUILD_ROSTER_KEYBOARD:Row_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Row_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:GuildRosterRow_OnMouseUp(control, button, upInside)
end
    GUILD_ROSTER_KEYBOARD:Note_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Note_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:Note_OnClicked(control, GUILD_ROSTER_MANAGER:GetNoteEditedFunction())
end
    GUILD_ROSTER_KEYBOARD:DisplayName_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:DisplayName_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:Alliance_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Alliance_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:Status_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Status_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:Class_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Class_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:Champion_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:Champion_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD:GuildRosterRowRank_OnMouseEnter(control)
end
    GUILD_ROSTER_KEYBOARD:GuildRosterRowRank_OnMouseExit(control)
end
    GUILD_ROSTER_KEYBOARD = ZO_KeyboardGuildRosterManager:New(control)
end
    GUILD_ROSTER_KEYBOARD:HideOffline_OnClicked()
end
    ZO_Dialogs_RegisterCustomDialog("GUILD_REMOVE_MEMBER_KEYBOARD",
    {
        title =
        {
            text = SI_PROMPT_TITLE_GUILD_REMOVE_MEMBER,
        },
        mainText =
        {
            text = SI_GUILD_REMOVE_MEMBER_WARNING,
        },
        canQueue = true,
        customControl = self,
        setup = function(dialog)
            local checkboxControl = dialog:GetNamedChild("Check")
            local blacklistMessageControl = dialog:GetNamedChild("BlacklistMessage")
            local blacklistMessageEdit = blacklistMessageControl:GetNamedChild("Edit")
            -- Setup checkbox
            ZO_CheckButton_SetUnchecked(checkboxControl)
            ZO_CheckButton_SetLabelText(checkboxControl, GetString(SI_GUILD_RECRUITMENT_ADD_TO_BLACKLIST_ACTION))
            ZO_CheckButton_SetToggleFunction(checkboxControl, function() blacklistMessageControl:SetHidden(not ZO_CheckButton_IsChecked(checkboxControl)) end)
            if DoesPlayerHaveGuildPermission(dialog.data.guildId, GUILD_PERMISSION_MANAGE_BLACKLIST) then
                ZO_CheckButton_Enable(checkboxControl)
                ZO_CheckButton_SetTooltipEnabledState(checkboxControl, false)
            else
                ZO_CheckButton_SetTooltipEnabledState(checkboxControl, true)
                ZO_CheckButton_SetTooltipAnchor(checkboxControl, RIGHT, checkboxControl.label)
                ZO_CheckButton_SetTooltipText(checkboxControl, GetString(SI_GUILD_RECRUITMENT_NO_BLACKLIST_PERMISSION))
                ZO_CheckButton_Disable(checkboxControl)
            end
            -- Set to default values each time dialog is opened
            blacklistMessageControl:SetHidden(true)
            blacklistMessageEdit:SetText("")
        end,
        buttons =
        {
            -- Yes Button
            {
                control = self:GetNamedChild("Confirm"),
                keybind = "DIALOG_PRIMARY",
                text = GetString(SI_DIALOG_REMOVE),
                callback = function(dialog)
                    local isChecked = ZO_CheckButton_IsChecked(dialog:GetNamedChild("Check"))
                    if isChecked then
                        local blacklistMessageControl = dialog:GetNamedChild("BlacklistMessageEdit")
                        local blacklistMessage = blacklistMessageControl:GetText()
                        local blacklistResult = AddToGuildBlacklistByDisplayName(dialog.data.guildId, dialog.data.displayName, blacklistMessage)
                        if not ZO_GuildRecruitment_Manager.IsAddedToBlacklistSuccessful(blacklistResult) then
                            ZO_Dialogs_ShowPlatformDialog("GUILD_FINDER_BLACKLIST_FAILED", nil, { mainTextParams = { blacklistResult } })
                        end
                    else
                        GuildRemove(dialog.data.guildId, dialog.data.displayName)
                    end
                end,
            },
            -- No Button
            {
                control = self:GetNamedChild("Cancel"),
                keybind = "DIALOG_NEGATIVE",
                text = GetString(SI_DIALOG_CANCEL),
            },
        },
    })
end
    GUILD_ROSTER_KEYBOARD:OnSetRankDialogInitialized(self)
end