Functions | |
| int | WebNavigatorCbOnLoadStart (mmachine m) |
| WebNavigatorCbOnLoadStart : Called when the browser begins loading a frame. The |frame| value will never be empty -- call the IsMain() method to check if this frame is the main frame. Multiple frames may be loading at the same time. Sub-frames may start or continue loading after the main frame load has ended. This method may not be called for a particular frame if the load request for that frame fails. | |
| int | WebNavigatorCbOnLoadEnd (mmachine m) |
| WebNavigatorCbOnLoadEnd : Called when the browser is done loading a frame. The |frame| value will never be empty -- call the IsMain() method to check if this frame is the main frame. Multiple frames may be loading at the same time. Sub-frames may start or continue loading after the main frame load has ended. This method will always be called for all frames irrespective of whether the request completes successfully. | |
| int | WebNavigatorCbOnLoadError (mmachine m) |
| WebNavigatorCbOnLoadError : Called when the browser fails to load a resource. |errorCode| is the error code number and |failedUrl| is the URL that failed to load. To provide custom error text assign the text to |errorText| and return true. Otherwise, return false for the default error text. See net\base\net_error_list.h for complete descriptions of the error codes. | |
Callbacks related to browser load status
| int WebNavigatorCbOnLoadEnd | ( | mmachine | m | ) |
WebNavigatorCbOnLoadEnd : Called when the browser is done loading a frame. The |frame| value will never be empty -- call the IsMain() method to check if this frame is the main frame. Multiple frames may be loading at the same time. Sub-frames may start or continue loading after the main frame load has ended. This method will always be called for all frames irrespective of whether the request completes successfully.
Prototype: TODO OBJWEBNAVIGATORSCOL
| OBJWEBNAVIGATORSCOL | : The object on which we want to catch the event | |
| fun | [OBJWEBNAVIGATORSCOL u0 S S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : Frame name | |
| S | : http status code |
| int WebNavigatorCbOnLoadError | ( | mmachine | m | ) |
WebNavigatorCbOnLoadError : Called when the browser fails to load a resource. |errorCode| is the error code number and |failedUrl| is the URL that failed to load. To provide custom error text assign the text to |errorText| and return true. Otherwise, return false for the default error text. See net\base\net_error_list.h for complete descriptions of the error codes.
Prototype: TODO OBJWEBNAVIGATORSCOL
| OBJWEBNAVIGATORSCOL | : The object on which we want to catch the event | |
| fun | [OBJWEBNAVIGATORSCOL u0 S S I S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : Frame name | |
| S | : Url that failed to load | |
| I | : Cef error code | |
| S | : Error text |
| int WebNavigatorCbOnLoadStart | ( | mmachine | m | ) |
WebNavigatorCbOnLoadStart : Called when the browser begins loading a frame. The |frame| value will never be empty -- call the IsMain() method to check if this frame is the main frame. Multiple frames may be loading at the same time. Sub-frames may start or continue loading after the main frame load has ended. This method may not be called for a particular frame if the load request for that frame fails.
Prototype: TODO OBJWEBNAVIGATORSCOL
| OBJWEBNAVIGATORSCOL | : The object on which we want to catch the event | |
| fun | [OBJWEBNAVIGATORSCOL u0 S] u1 : Scol function to call | |
| u0 | : Optionnal user parameter | |
| S | : Frame name |
1.6.3