3
|
1 |
// This file contains additional documentation for classes defined
|
|
2 |
// in common code. It can be used to describe how those classes
|
|
3 |
// are used by Ginebra.
|
|
4 |
|
|
5 |
/*! \ingroup JavascriptAPI
|
|
6 |
* \class WebPageController
|
|
7 |
*
|
|
8 |
* Javascript object name: "pageController"
|
|
9 |
* Example javascript code to connect to the page controller's pageLoadStarted signal and print
|
|
10 |
* the current URL to debug output.
|
|
11 |
* \code
|
|
12 |
* window.pageController.pageLoadStarted.connect(
|
|
13 |
* function() {
|
|
14 |
* app.debug("Load start" + window.pageController.currentRequestedUrl);
|
|
15 |
* }
|
|
16 |
* );
|
|
17 |
* \endcode
|
|
18 |
*/
|
|
19 |
|
|
20 |
/*! \ingroup JavascriptAPI
|
|
21 |
* \class WRT::BookmarksManager
|
|
22 |
*
|
|
23 |
* Javascript object name: "bookmarksManager"
|
|
24 |
* Example javascript code to get bookmarks data in JSON format.
|
|
25 |
* \code
|
|
26 |
* var bookmarkData = bookmarksManager.getBookmarksJSON();
|
|
27 |
* \endcode
|
|
28 |
*/
|
|
29 |
|
|
30 |
/*! \ingroup JavascriptAPI
|
|
31 |
* \class ViewEventContext
|
|
32 |
*/
|
|
33 |
|
|
34 |
/*! \ingroup JavascriptAPI
|
|
35 |
* \brief Javascript wrapper for QActions.
|
|
36 |
*/
|