Changeset 79520 in vbox
- Timestamp:
- Jul 4, 2019 9:21:00 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131803
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/softkeyboard/UISoftKeyboard.cpp
r79516 r79520 81 81 /** Can be in UIKeyState_NotPressed and UIKeyState_Pressed states. */ 82 82 UIKeyType_Ordinary, 83 /** e.g. CapsLock . Can be only in UIKeyState_NotPressed, UIKeyState_Locked */84 UIKeyType_ Toggleable,83 /** e.g. CapsLock, NumLock. Can be only in UIKeyState_NotPressed, UIKeyState_Locked */ 84 UIKeyType_Lock, 85 85 /** e.g. Shift Can be in all 3 states*/ 86 86 UIKeyType_Modifier, … … 1541 1541 } 1542 1542 } 1543 else if (m_enmType == UIKeyType_ Toggleable)1543 else if (m_enmType == UIKeyType_Lock) 1544 1544 { 1545 1545 if (fPressed) … … 2840 2840 if (strType == "modifier") 2841 2841 key.setType(UIKeyType_Modifier); 2842 else if (strType == " toggleable")2843 key.setType(UIKeyType_ Toggleable);2842 else if (strType == "lock") 2843 key.setType(UIKeyType_Lock); 2844 2844 } 2845 2845 else if (m_xmlReader.name() == "osmenukey") -
trunk/src/VBox/Frontends/VirtualBox/xml/101_ansi.xml
r79356 r79520 256 256 <width>100</width> 257 257 258 <type> toggleable</type>258 <type>lock</type> 259 259 <position>30</position> 260 260 <scancode>0x3a</scancode> -
trunk/src/VBox/Frontends/VirtualBox/xml/102_iso.xml
r79508 r79520 260 260 <width>100</width> 261 261 262 <type> toggleable</type>262 <type>lock</type> 263 263 <position>30</position> 264 264 <scancode>0x3a</scancode> -
trunk/src/VBox/Frontends/VirtualBox/xml/103_iso.xml
r79508 r79520 258 258 <key> 259 259 <width>100</width> 260 261 <type>toggleable</type> 260 <type>lock</type> 262 261 <position>30</position> 263 262 <scancode>0x3a</scancode> -
trunk/src/VBox/Frontends/VirtualBox/xml/106_japanese.xml
r79517 r79520 263 263 <key> 264 264 <width>100</width> 265 <type> toggleable</type>265 <type>lock</type> 266 266 <position>30</position> 267 267 <scancode>0x3a</scancode> -
trunk/src/VBox/Frontends/VirtualBox/xml/numpad.xml
r79517 r79520 7 7 <key> 8 8 <position>90</position> 9 <type> toggleable</type>9 <type>lock</type> 10 10 <scancode>0x45</scancode> 11 11 </key>
Note:
See TracChangeset
for help on using the changeset viewer.