jsdoc fix for TabletProxy

This commit is contained in:
Anthony J. Thibault 2017-01-03 11:20:42 -08:00
parent c201b6a7f9
commit 850db0b6b3

View file

@ -57,29 +57,29 @@ public:
void setQmlTabletRoot(QQuickItem* qmlTabletRoot); void setQmlTabletRoot(QQuickItem* qmlTabletRoot);
/**jsdoc /**jsdoc
* @function TabletProxy#gotoHomeScreen
* transition to the home screen * transition to the home screen
* @function TabletProxy#gotoHomeScreen
*/ */
Q_INVOKABLE void gotoHomeScreen(); Q_INVOKABLE void gotoHomeScreen();
/**jsdoc /**jsdoc
* @function TabletProxy#gotoWebScreen
* show the specified web url on the tablet. * show the specified web url on the tablet.
* @function TabletProxy#gotoWebScreen
* @param url {string} * @param url {string}
*/ */
Q_INVOKABLE void gotoWebScreen(const QString& url); Q_INVOKABLE void gotoWebScreen(const QString& url);
/**jsdoc /**jsdoc
* @function TabletProxy#addButton
* Creates a new button, adds it to this and returns it. * 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! * @param properties {Object} button properties UI_TABLET_HACK: enumerate these when we figure out what they should be!
* @returns {TabletButtonProxy} * @returns {TabletButtonProxy}
*/ */
Q_INVOKABLE QObject* addButton(const QVariant& properties); Q_INVOKABLE QObject* addButton(const QVariant& properties);
/**jsdoc /**jsdoc
* @function TabletProxy#removeButton
* removes button from the tablet * removes button from the tablet
* @function TabletProxy.removeButton
* @param tabletButtonProxy {TabletButtonProxy} button to be removed * @param tabletButtonProxy {TabletButtonProxy} button to be removed
*/ */
Q_INVOKABLE void removeButton(QObject* tabletButtonProxy); Q_INVOKABLE void removeButton(QObject* tabletButtonProxy);