| 1533 | } |
| 1534 | |
| 1535 | void OverlayController::showKeyboard( QString existingText, |
| 1536 | unsigned long userValue ) |
| 1537 | { |
| 1538 | vr::VROverlay()->ShowKeyboardForOverlay( |
| 1539 | m_ulOverlayHandle, |
| 1540 | vr::k_EGamepadTextInputModeNormal, |
| 1541 | vr::k_EGamepadTextInputLineModeSingleLine, |
| 1542 | 0, |
| 1543 | "Advanced Settings Overlay", |
| 1544 | 1024, |
| 1545 | existingText.toStdString().c_str(), |
| 1546 | userValue ); |
| 1547 | setKeyboardPos(); |
| 1548 | } |
| 1549 | |
| 1550 | void OverlayController::setKeyboardPos() |
| 1551 | { |
nothing calls this directly
no test coverage detected