mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-08 23:12:16 +02:00
OffscreenFlags API JSDoc stubs
This commit is contained in:
parent
841161068c
commit
11f984f05b
2 changed files with 20 additions and 0 deletions
|
@ -30,6 +30,15 @@
|
|||
|
||||
#include <PointerManager.h>
|
||||
|
||||
/**jsdoc
|
||||
* @namespace OffscreenFlags
|
||||
*
|
||||
* @hifi-interface
|
||||
* @hifi-client-entity
|
||||
* @property {boolean} navigationFocused
|
||||
* @property {boolean} navigationFocusDisabled
|
||||
*/
|
||||
|
||||
// Needs to match the constants in resources/qml/Global.js
|
||||
class OffscreenFlags : public QObject {
|
||||
Q_OBJECT
|
||||
|
@ -58,7 +67,17 @@ public:
|
|||
}
|
||||
|
||||
signals:
|
||||
|
||||
/**jsdoc
|
||||
* @function OffscreenFlags.navigationFocusedChanged
|
||||
* @returns {Signal}
|
||||
*/
|
||||
void navigationFocusedChanged();
|
||||
|
||||
/**jsdoc
|
||||
* @function OffscreenFlags.navigationFocusDisabledChanged
|
||||
* @returns {Signal}
|
||||
*/
|
||||
void navigationFocusDisabledChanged();
|
||||
|
||||
private:
|
||||
|
|
|
@ -57,6 +57,7 @@ exports.handlers = {
|
|||
'../../libraries/shared/src',
|
||||
'../../libraries/shared/src/shared',
|
||||
'../../libraries/trackers/src/trackers',
|
||||
'../../libraries/ui/src',
|
||||
'../../libraries/ui/src/ui',
|
||||
'../../plugins/oculus/src',
|
||||
'../../plugins/openvr/src'
|
||||
|
|
Loading…
Reference in a new issue