Functions | |
| int | WebNavigatorCbOnNavStateChange (mmachine m) |
| WebNavigatorCbOnNavStateChange : Called when the navigation state has changed. | |
| int | WebNavigatorCbOnAddressChange (mmachine m) |
| WebNavigatorCbOnAddressChange : Called when a frame's address has changed. | |
| int | WebNavigatorCbOnTitleChange (mmachine m) |
| WebNavigatorCbOnTitleChange : Called when the page title changes. | |
| int | WebNavigatorCbOnTooltip (mmachine m) |
| WebNavigatorCbOnTooltip : Called when the browser is about to display a tooltip. |text| contains the text that will be displayed in the tooltip. To handle the display of the tooltip yourself return true. Otherwise, you can optionally modify |text| and then return false to allow the browser to display the tooltip. | |
| int | WebNavigatorCbOnStatusMessage (mmachine m) |
| WebNavigatorCbOnStatusMessage : Called when the browser receives a status message. |text| contains the text that will be displayed in the status message and |type| indicates the status message type. | |
| int | WebNavigatorCbOnConsoleMessage (mmachine m) |
| WebNavigatorCbOnConsoleMessage : Called to display a console message. Return true to stop the message from being output to the console. | |
Callbacks related to browser display state
| int WebNavigatorCbOnAddressChange | ( | mmachine | m | ) |
WebNavigatorCbOnAddressChange : Called when a frame's address has changed.
Prototype: fun [ObjWebNavigator fun [ObjWebNavigator u0 S S] u1 u0] ObjWebNavigator
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0 S S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : The name of the frame on which the address changed | |
| S | : The new url |
| int WebNavigatorCbOnConsoleMessage | ( | mmachine | m | ) |
WebNavigatorCbOnConsoleMessage : Called to display a console message. Return true to stop the message from being output to the console.
Prototype: fun [ObjWebNavigator fun [ObjWebNavigator u0 S S I] u1 u0] ObjWebNavigator
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0 S S I] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : Message | |
| S | : Source file | |
| I | : File line |
| int WebNavigatorCbOnNavStateChange | ( | mmachine | m | ) |
WebNavigatorCbOnNavStateChange : Called when the navigation state has changed.
Prototype: fun [ObjWebNavigator fun [ObjWebNavigator u0 I I] u1 u0] ObjWebNavigator
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0] u1 : Scol function to call | |
| u0 | : Optionnal user parameter |
| int WebNavigatorCbOnStatusMessage | ( | mmachine | m | ) |
WebNavigatorCbOnStatusMessage : Called when the browser receives a status message. |text| contains the text that will be displayed in the status message and |type| indicates the status message type.
Prototype: TODO OBJWEBNAVIGATORSCOL
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0] u1 : Scol function to call | |
| u0 | : Optionnal user parameter |
| int WebNavigatorCbOnTitleChange | ( | mmachine | m | ) |
WebNavigatorCbOnTitleChange : Called when the page title changes.
Prototype: fun [ObjWebNavigator fun [ObjWebNavigator u0 S] u1 u0] ObjWebNavigator
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0 S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : The new title |
| int WebNavigatorCbOnTooltip | ( | mmachine | m | ) |
WebNavigatorCbOnTooltip : Called when the browser is about to display a tooltip. |text| contains the text that will be displayed in the tooltip. To handle the display of the tooltip yourself return true. Otherwise, you can optionally modify |text| and then return false to allow the browser to display the tooltip.
Prototype: fun [ObjWebNavigator fun [ObjWebNavigator u0 S] u1 u0] ObjWebNavigator
| ObjWebNavigator | : The object on which we want to catch the event | |
| fun | [ObjWebNavigator u0 S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : Tooltip text |
1.6.3