@@ -769,16 +769,29 @@ function E:ClickGameMenu()
769
769
end
770
770
end
771
771
772
+ GameMenuFrame .ElvUIButtons = {} -- Table for keeping game menu buttons frome ElvUI itself and plugins
772
773
function E :SetupGameMenu ()
773
- local button = CreateFrame (' Button' , nil , GameMenuFrame , ' GameMenuButtonTemplate' )
774
- button :SetScript (' OnClick' , E .ClickGameMenu )
775
- GameMenuFrame .ElvUI = button
774
+ local dataTable = {
775
+ text = format (' %sElvUI|r' , E .media .hexvaluecolor ),
776
+ callback = E .ClickGameMenu ,
777
+ disabled = false -- If set to true will make button disabled. Can be set as a fucn to return true/false dynamically if needed
778
+ }
779
+ tinsert (GameMenuFrame .ElvUIButtons , dataTable ) -- Add ElvUI's button so it will be first
776
780
777
781
if not E :IsAddOnEnabled (' ConsolePortUI_Menu' ) then
778
- button :Size (100 , 30 )
779
- button :Point (' TOPLEFT' , GameMenuFrame , ' BOTTOMLEFT' , 0 , - 1 )
780
- -- FIX ME 11.0
781
- -- hooksecurefunc('GameMenuFrame_UpdateVisibleButtons', E.PositionGameMenuButton)
782
+ -- hooking to blizz button add function for game menu, since the list of those is reset every time menu is opened
783
+ hooksecurefunc (GameMenuFrame , " AddButton" ,
784
+ function (self , text , callback , disabled )
785
+ if text == MACROS then -- check for text "Macros". That button is the last before logout in default so we insert our stuff in between
786
+ GameMenuFrame :AddSection (); -- spacer
787
+
788
+ for i = 1 , # GameMenuFrame .ElvUIButtons do -- Go through buttons in the tabe and adding them based on data provided
789
+ local data = GameMenuFrame .ElvUIButtons [i ]
790
+ if i == 1 then data .text = format (' %sElvUI|r' , E .media .hexvaluecolor ) end -- to account for ElvUI value color change
791
+ GameMenuFrame :AddButton (data .text , data .callback , data .disabled );
792
+ end
793
+ end
794
+ end )
782
795
end
783
796
end
784
797
@@ -905,8 +918,7 @@ function E:LoadAPI()
905
918
E :RegisterEvent (' PLAYER_REGEN_DISABLED' )
906
919
E :RegisterEvent (' UI_SCALE_CHANGED' , ' PixelScaleChanged' )
907
920
908
- -- FIX ME 11.0
909
- -- E:SetupGameMenu()
921
+ E :SetupGameMenu ()
910
922
911
923
if E .Retail then
912
924
for _ , mountID in next , C_MountJournal_GetMountIDs () do
0 commit comments