- Timestamp:
- May 17, 2023 12:35:01 PM (21 months ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/Common/VBoxKeyboard/keyboard.c
r62063 r99825 386 386 } 387 387 keyc2scan[keyc] = scan; 388 printf("%d %u = %u\n", keyc, keyc2scan[keyc], scan); 388 389 } /* for */ 389 390 /* Did we find a match for all keys in the layout? Count them first. -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r99623 r99825 3028 3028 return VBGHDisplayServerTypeIsXAvailable(m_enmDisplayServerType); 3029 3029 } 3030 #endif 3030 3031 VBGHDISPLAYSERVERTYPE UICommon::displayServerType() const 3032 { 3033 return m_enmDisplayServerType; 3034 } 3035 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.h
r99623 r99825 217 217 /** Returns true if the detected display server type is either xorg or xwayland. */ 218 218 bool X11ServerAvailable() const; 219 /** Returns display server type. */ 220 VBGHDISPLAYSERVERTYPE displayServerType() const; 219 221 #endif 220 222 /** @} */ -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/XKeyboard-new.cpp
r98103 r99825 246 246 LogRel3(("VBoxKeyboard: converting keycode %d to scancode %s0x%x\n", 247 247 iDetail, iKey > 0x100 ? "0xe0 " : "", iKey & 0xff)); 248 printf("detail %d iKey %u\n", iDetail, iKey); 248 249 return iKey; 249 250 }
Note:
See TracChangeset
for help on using the changeset viewer.