// // Created by Sam Gondelman on 1/9/19. // Copyright 2019 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef hifi_WebInputMode_h #define hifi_WebInputMode_h #include "QString" /**jsdoc *

Specifies how a web surface processes events.

* * * * * * * * *
ValueDescription
"touch"Events are processed as touch events.
"mouse"Events are processed as mouse events.
* @typedef {string} WebInputMode */ enum class WebInputMode { TOUCH = 0, MOUSE, }; class WebInputModeHelpers { public: static QString getNameForWebInputMode(WebInputMode mode); }; #endif // hifi_WebInputMode_h