diff --git a/interface/wx/webview.h b/interface/wx/webview.h index 2414f41e38..eaa2a5c77a 100644 --- a/interface/wx/webview.h +++ b/interface/wx/webview.h @@ -153,9 +153,16 @@ public: setting, see this article for more information. - - Note that errors are generally reported asynchronously though the - @c wxEVT_COMMAND_WEB_VIEW_ERROR event described below. + + @section async Asynchronous Notifications + + Many of the methods in wxWebView are asynchronous, i.e. they return + immediately and perform their work in the background. This includes + functions such as LoadUrl() and Reload(). To receive notification of the + progress and completion of these functions you need to handle the events + that are provided. Specifically @c wxEVT_COMMAND_WEB_VIEW_LOADED notifies + when the page or a sub-frame has finished loading and + @c wxEVT_COMMAND_WEB_VIEW_ERROR notifies that an error has occurred. @section vfs Virtual File Systems and Custom Schemes