Home | History | Annotate | Download | only in DisplayEngineDxe

Lines Matching refs:HotKey

1315   Find the registered HotKey based on KeyData.

1320 @return The registered HotKey context. If no found, NULL will return.
1328 BROWSER_HOT_KEY *HotKey;
1332 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
1334 if (HotKey->KeyData->ScanCode == KeyData->ScanCode) {
1335 return HotKey;
2575 BROWSER_HOT_KEY *HotKey;
2616 HotKey = NULL;
2821 // No menu option, just update the hotkey filed.
3232 HotKey = NULL;
3233 HotKey = GetHotKeyFromRegisterList (&Key);
3234 if (HotKey != NULL) {
3323 ASSERT (HotKey != NULL);
3325 if (FxConfirmPopup(HotKey->Action)) {
3326 gUserInput->Action = HotKey->Action;
3327 if ((HotKey->Action & BROWSER_ACTION_DEFAULT) == BROWSER_ACTION_DEFAULT) {
3328 gUserInput->DefaultId = HotKey->DefaultId;
4061 EFI_INPUT_KEY HotKey;
4093 // Use BrowserEx2 protocol to register HotKey.
4098 // Register the default HotKey F9 and F10 again.
4100 HotKey.UnicodeChar = CHAR_NULL;
4101 HotKey.ScanCode = SCAN_F10;
4104 FormBrowserEx2->RegisterHotKey (&HotKey, BROWSER_ACTION_SUBMIT, 0, NewString);
4106 HotKey.ScanCode = SCAN_F9;
4109 FormBrowserEx2->RegisterHotKey (&HotKey, BROWSER_ACTION_DEFAULT, EFI_HII_DEFAULT_CLASS_STANDARD, NewString);