Changeset 99826 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 17, 2023 12:36:44 PM (21 months ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/Common/VBoxKeyboard/keyboard.c
r99825 r99826 386 386 } 387 387 keyc2scan[keyc] = scan; 388 printf("%d %u = %u\n", keyc, keyc2scan[keyc], scan);389 388 } /* for */ 390 389 /* Did we find a match for all keys in the layout? Count them first. -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r99825 r99826 3028 3028 return VBGHDisplayServerTypeIsXAvailable(m_enmDisplayServerType); 3029 3029 } 3030 3031 VBGHDISPLAYSERVERTYPE UICommon::displayServerType() const 3032 { 3033 return m_enmDisplayServerType; 3034 } 3035 #endif 3030 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.h
r99825 r99826 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;221 219 #endif 222 220 /** @} */ -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/XKeyboard-new.cpp
r99825 r99826 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);249 248 return iKey; 250 249 }
Note:
See TracChangeset
for help on using the changeset viewer.