MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / SubMenuGUI

Function SubMenuGUI

rEFIt_UEFI/refit/menu.cpp:2364–2383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2362}
2363
2364REFIT_ABSTRACT_MENU_ENTRY* SubMenuGUI()
2365{
2366 // init
2367 REFIT_MENU_ITEM_OPTIONS *Entry;
2368 REFIT_MENU_SCREEN *SubScreen;
2369
2370 // create the entry in the options menu
2371 Entry = newREFIT_MENU_ITEM_OPTIONS(&SubScreen, ActionEnter, SCREEN_GUI, "GUI tuning->"_XS8);
2372
2373 // submenu description
2374 SubScreen->AddMenuInfoLine_f("Choose options to tune the Interface");
2375
2376 SubScreen->AddMenuItemInput(70, "Pointer Speed:", TRUE);
2377 SubScreen->AddMenuItemInput(72, "Mirror Move", FALSE);
2378
2379 SubScreen->AddMenuEntry(SubMenuThemes(), true);
2380
2381 SubScreen->AddMenuEntry(&MenuEntryReturn, false);
2382 return Entry;
2383}
2384
2385
2386/*

Callers 1

OptionsMenuFunction · 0.85

Calls 5

SubMenuThemesFunction · 0.85
AddMenuInfoLine_fMethod · 0.80
AddMenuItemInputMethod · 0.80
AddMenuEntryMethod · 0.80

Tested by

no test coverage detected