Merge pull request #1046 from overte-org/fix/offscreen_ui_keyboard

Allow events from VR keyboard to overlay UI
This commit is contained in:
Dale Glass 2024-06-29 21:16:25 +02:00 committed by GitHub
commit a91ae5aea4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 32 additions and 4 deletions

View file

@ -8594,6 +8594,14 @@ SharedSoundPointer Application::getSampleSound() const {
return _sampleSound;
}
void Application::showVRKeyboardForHudUI(bool show) {
if (show) {
DependencyManager::get<Keyboard>()->setRaised(true, true);
} else {
DependencyManager::get<Keyboard>()->setRaised(false);
}
}
void Application::loadLODToolsDialog() {
auto tabletScriptingInterface = DependencyManager::get<TabletScriptingInterface>();
auto tablet = dynamic_cast<TabletProxy*>(tabletScriptingInterface->getTablet(SYSTEM_TABLET));

View file

@ -431,6 +431,16 @@ public slots:
Q_INVOKABLE void loadAddAvatarBookmarkDialog() const;
Q_INVOKABLE void loadAvatarBrowser() const;
Q_INVOKABLE SharedSoundPointer getSampleSound() const;
/**
* @brief Shows/hides VR keyboard input for Overlay windows
*
* This is used by QML scripts to show and hide VR keyboard. Unlike JS API Keyboard.raised = true,
* with showVRKeyboardForHudUI the input is passed to the active window on the overlay first.
*
* @param show
* If set to true, then keyboard is shown, for false it's hidden.
*/
Q_INVOKABLE void showVRKeyboardForHudUI(bool show);
void showDialog(const QUrl& widgetUrl, const QUrl& tabletUrl, const QString& name) const;

View file

@ -303,10 +303,13 @@ bool Keyboard::isRaised() const {
return resultWithReadLock<bool>([&] { return _raised; });
}
void Keyboard::setRaised(bool raised) {
void Keyboard::setRaised(bool raised, bool inputToHudUI) {
bool isRaised;
withReadLock([&] { isRaised = _raised; });
_inputToHudUI = inputToHudUI;
if (isRaised != raised) {
raiseKeyboardAnchor(raised);
raiseKeyboard(raised);
@ -585,8 +588,13 @@ void Keyboard::handleTriggerBegin(const QUuid& id, const PointerEvent& event) {
QKeyEvent* pressEvent = new QKeyEvent(QEvent::KeyPress, scanCode, Qt::NoModifier, keyString);
QKeyEvent* releaseEvent = new QKeyEvent(QEvent::KeyRelease, scanCode, Qt::NoModifier, keyString);
QCoreApplication::postEvent(QCoreApplication::instance(), pressEvent);
QCoreApplication::postEvent(QCoreApplication::instance(), releaseEvent);
if (_inputToHudUI) {
QCoreApplication::postEvent(qApp->getPrimaryWidget(), pressEvent);
QCoreApplication::postEvent(qApp->getPrimaryWidget(), releaseEvent);
} else {
QCoreApplication::postEvent(QCoreApplication::instance(), pressEvent);
QCoreApplication::postEvent(QCoreApplication::instance(), releaseEvent);
}
if (!getPreferMalletsOverLasers()) {
key.startTimer(KEY_PRESS_TIMEOUT_MS);

View file

@ -93,7 +93,7 @@ public:
void createKeyboard();
void registerKeyboardHighlighting();
bool isRaised() const;
void setRaised(bool raised);
void setRaised(bool raised, bool inputToHudUI = false);
void setResetKeyboardPositionOnRaise(bool reset);
bool isPassword() const;
void setPassword(bool password);
@ -190,6 +190,8 @@ private:
QSet<QUuid> _itemsToIgnore;
std::vector<QHash<QUuid, Key>> _keyboardLayers;
// Send keyboard events to hud UI if true
std::atomic<bool> _inputToHudUI { false };
bool _created { false };
};