1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added pageLoadHadNetworkError callback to WebBrowserComponent

This commit is contained in:
hogliux 2017-04-26 17:12:59 +01:00
parent e778d35fdc
commit bb32034ad8
5 changed files with 82 additions and 0 deletions

View file

@ -95,6 +95,18 @@ public:
/** This callback happens when the browser has finished loading a page. */
virtual void pageFinishedLoading (const String& url);
/** This callback happens when a network error was encountered while
trying to load a page.
You can override this method to show some other error page by calling
goToURL. Return true to allow the browser to carry on to the internal
browser error page.
The errorInfo contains some platform dependent string describing the
error.
*/
virtual bool pageLoadHadNetworkError (const String& errorInfo);
/** This callback occurs when a script or other activity in the browser asks for
the window to be closed.
*/