mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
jsdoc fix for TabletProxy
This commit is contained in:
parent
c201b6a7f9
commit
850db0b6b3
1 changed files with 4 additions and 4 deletions
|
@ -57,29 +57,29 @@ public:
|
|||
void setQmlTabletRoot(QQuickItem* qmlTabletRoot);
|
||||
|
||||
/**jsdoc
|
||||
* @function TabletProxy#gotoHomeScreen
|
||||
* transition to the home screen
|
||||
* @function TabletProxy#gotoHomeScreen
|
||||
*/
|
||||
Q_INVOKABLE void gotoHomeScreen();
|
||||
|
||||
/**jsdoc
|
||||
* @function TabletProxy#gotoWebScreen
|
||||
* show the specified web url on the tablet.
|
||||
* @function TabletProxy#gotoWebScreen
|
||||
* @param url {string}
|
||||
*/
|
||||
Q_INVOKABLE void gotoWebScreen(const QString& url);
|
||||
|
||||
/**jsdoc
|
||||
* @function TabletProxy#addButton
|
||||
* Creates a new button, adds it to this and returns it.
|
||||
* @function TabletProxy#addButton
|
||||
* @param properties {Object} button properties UI_TABLET_HACK: enumerate these when we figure out what they should be!
|
||||
* @returns {TabletButtonProxy}
|
||||
*/
|
||||
Q_INVOKABLE QObject* addButton(const QVariant& properties);
|
||||
|
||||
/**jsdoc
|
||||
* @function TabletProxy#removeButton
|
||||
* removes button from the tablet
|
||||
* @function TabletProxy.removeButton
|
||||
* @param tabletButtonProxy {TabletButtonProxy} button to be removed
|
||||
*/
|
||||
Q_INVOKABLE void removeButton(QObject* tabletButtonProxy);
|
||||
|
|
Loading…
Reference in a new issue