1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxWebView
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
10 Zoom levels availiable in wxWebView
15 wxWEB_VIEW_ZOOM_SMALL
,
16 wxWEB_VIEW_ZOOM_MEDIUM
, //!< default size
17 wxWEB_VIEW_ZOOM_LARGE
,
18 wxWEB_VIEW_ZOOM_LARGEST
22 The type of zooming that the web view control can perform
24 enum wxWebViewZoomType
27 The entire layout scales when zooming, including images
29 wxWEB_VIEW_ZOOM_TYPE_LAYOUT
,
31 Only the text changes in size when zooming, images and other layout
32 elements retain their initial size
34 wxWEB_VIEW_ZOOM_TYPE_TEXT
38 Types of errors that can cause navigation to fail
40 enum wxWebNavigationError
42 /** Connection error (timeout, etc.) */
43 wxWEB_NAV_ERR_CONNECTION
,
44 /** Invalid certificate */
45 wxWEB_NAV_ERR_CERTIFICATE
,
46 /** Authentication required */
48 /** Other security error */
49 wxWEB_NAV_ERR_SECURITY
,
50 /** Requested resource not found */
51 wxWEB_NAV_ERR_NOT_FOUND
,
52 /** Invalid request/parameters (e.g. bad URL, bad protocol,
53 unsupported resource type) */
54 wxWEB_NAV_ERR_REQUEST
,
55 /** The user cancelled (e.g. in a dialog) */
56 wxWEB_NAV_ERR_USER_CANCELLED
,
57 /** Another (exotic) type of error that didn't fit in other categories*/
64 enum wxWebViewReloadFlags
66 /** Default reload, will access cache */
67 wxWEB_VIEW_RELOAD_DEFAULT
,
68 /** Reload the current view without accessing the cache */
69 wxWEB_VIEW_RELOAD_NO_CACHE
74 * List of available backends for wxWebView
78 /** Value that may be passed to wxWebView to let it pick an appropriate
79 * engine for the current platform*/
80 wxWEB_VIEW_BACKEND_DEFAULT
,
82 /** The WebKit web engine */
83 wxWEB_VIEW_BACKEND_WEBKIT
,
85 /** Use Microsoft Internet Explorer as web engine */
90 @class wxWebHistoryItem
92 A simple class that contains the URL and title of an element of the history
100 class wxWebHistoryItem
106 wxWebHistoryItem(const wxString
& url
, const wxString
& title
);
109 @return The url of the page.
114 @return The title of the page.
122 The base class for handling custom schemes in wxWebView, for example to
123 allow virtual file system support.
134 @return A pointer to the file represented by @c uri.
136 virtual wxFSFile
* GetFile(const wxString
&uri
) = 0;
139 @return The name of the scheme, for example @c file or @c http.
141 virtual wxString
GetName() const = 0;
147 This control may be used to render web (HTML / CSS / javascript) documents.
149 @section descriptions Backend Descriptions
151 @par wxWEB_VIEW_BACKEND_IE (MSW)
153 The IE backend uses Microsoft's Trident rendering engine, specifically the
154 version used by the locally installed copy of Internet Explorer. As such it
155 is only available for the MSW port. By default recent versions of the
156 <a href="http://msdn.microsoft.com/en-us/library/aa752085%28v=VS.85%29.aspx">WebBrowser</a>
157 control, which this backend uses, emulate Internet Explorer 7. This can be
158 changed with a registry setting, see
159 <a href="http://msdn.microsoft.com/en-us/library/ee330730%28v=vs.85%29.aspx#browser_emulation">
160 this</a> article for more information. This backend has full support for
161 custom schemes and virtual file systems.
163 @par wxWEB_VIEW_WEBKIT (GTK)
165 Under GTK the WebKit backend uses
166 <a href="http://webkitgtk.org/">WebKitGTK+</a>. The current minimum version
167 required is 1.3.1 which ships by default with Ubuntu Natty and Debian
168 Wheezy and has the package name libwebkitgtk-dev. Custom schemes and
169 virtual files systems are supported under this backend, however embedded
170 resources such as images and stylesheets are currently extracted to a
171 temporary file before being loaded.
173 @par wxWEB_VIEW_WEBKIT (OSX)
175 The OSX WebKit backend uses Apple's
176 <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/WebKit/Classes/WebView_Class/Reference/Reference.html#//apple_ref/doc/uid/20001903">WebView</a>
177 class. Currently it does not support custom schemes and virtual file systems.
179 @section async Asynchronous Notifications
181 Many of the methods in wxWebView are asynchronous, i.e. they return
182 immediately and perform their work in the background. This includes
183 functions such as LoadUrl() and Reload(). To receive notification of the
184 progress and completion of these functions you need to handle the events
185 that are provided. Specifically @c wxEVT_COMMAND_WEB_VIEW_LOADED notifies
186 when the page or a sub-frame has finished loading and
187 @c wxEVT_COMMAND_WEB_VIEW_ERROR notifies that an error has occurred.
189 @section vfs Virtual File Systems and Custom Schemes
191 wxWebView supports the registering of custom scheme handlers, for example
192 @c file or @c http. To do this create a new class which inherits from
193 wxWebHandler, where the wxWebHandler::GetName() method returns the scheme
194 you wish to handle and wxWebHandler::GetFile() returns a pointer to a
195 wxFSFile which represents the given url. You can then register your handler
196 with RegisterHandler() it will be called for all pages and resources.
198 wxWebFileHandler is provided to allow the navigation of pages inside a zip
199 archive. It overrides the @c file scheme and provides support for the
200 standard @c file syntax as well as paths to archives of the form
201 @c file:///C:/exmaple/docs.zip;protocol=zip/main.htm
203 @beginEventEmissionTable{wxWebNavigationEvent}
204 @event{EVT_WEB_VIEW_NAVIGATING(id, func)}
205 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying
206 to get a resource. This event may be vetoed to prevent navigating to this
207 resource. Note that if the displayed HTML document has several frames, one
208 such event will be generated per frame.
209 @event{EVT_WEB_VIEW_NAVIGATED(id, func)}
210 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was
211 confirmed that a resource would be requested. This event may not be vetoed.
212 Note that if the displayed HTML document has several frames, one such event
213 will be generated per frame.
214 @event{EVT_WEB_VIEW_LOADED(id, func)}
215 Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
216 is fully loaded and displayed. Note that if the displayed HTML document has
217 several frames, one such event will be generated per frame.
218 @event{EVT_WEB_VIEW_ERRROR(id, func)}
219 Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
221 The integer associated with this event will be a wxWebNavigationError item.
222 The string associated with this event may contain a backend-specific more
223 precise error message/code.
224 @event{EVT_WEB_VIEW_NEWWINDOW(id, func)}
225 Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new
226 window is created. You must handle this event if you want anything to
227 happen, for example to load the page in a new window or tab.
228 @event{EVT_WEB_VIEW_TITLE_CHANGED(id, func)}
229 Process a @c wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event, generated when
230 the page title changes. Use GetString to get the title.
235 @see wxWebHandler, wxWebNavigationEvent
237 class wxWebView
: public wxControl
242 Creation function for two-step creation.
244 virtual bool Create(wxWindow
* parent
,
250 const wxString
& name
) = 0;
253 Factory function to create a new wxWebView for two-step creation
254 (you need to call wxWebView::Create on the returned object)
255 @param backend which web engine to use as backend for wxWebView
256 @return the created wxWebView, or NULL if the requested backend is
259 static wxWebView
* New(wxWebViewBackend backend
= wxWEB_VIEW_BACKEND_DEFAULT
);
262 Factory function to create a new wxWebView
263 @param parent parent window to create this view in
264 @param id ID of this control
265 @param url URL to load by default in the web view
266 @param pos position to create this control at
267 (you may use wxDefaultPosition if you use sizers)
268 @param size size to create this control with
269 (you may use wxDefaultSize if you use sizers)
270 @param backend which web engine to use as backend for wxWebView
271 @return the created wxWebView, or NULL if the requested backend
274 static wxWebView
* New(wxWindow
* parent
,
276 const wxString
& url
= wxWebViewDefaultURLStr
,
277 const wxPoint
& pos
= wxDefaultPosition
,
278 const wxSize
& size
= wxDefaultSize
,
279 wxWebViewBackend backend
= wxWEB_VIEW_BACKEND_DEFAULT
,
281 const wxString
& name
= wxWebViewNameStr
);
284 Get the title of the current web page, or its URL/path if title is not
287 virtual wxString
GetCurrentTitle() = 0;
290 Get the URL of the currently displayed document.
292 virtual wxString
GetCurrentURL() = 0;
295 Get the HTML source code of the currently displayed document.
296 @return The HTML source code, or an empty string if no page is currently
299 virtual wxString
GetPageSource() = 0;
302 Get the text of the current page.
304 virtual wxString
GetPageText() = 0;
307 Returns whether the web control is currently busy (e.g. loading a page).
309 virtual bool IsBusy() = 0;
312 Returns whether the web control is currently editable
314 virtual bool IsEditable() = 0;
317 Load a web page from a URL
318 @param url The URL of the page to be loaded.
319 @note Web engines generally report errors asynchronously, so if you wish
320 to know whether loading the URL was successful, register to receive
321 navigation error events.
323 virtual void LoadUrl(const wxString
& url
) = 0;
326 Opens a print dialog so that the user may print the currently
329 virtual void Print() = 0;
332 Registers a custom scheme handler.
333 @param handler A pointer to a heap allocated wxWebHandler.
335 virtual void RegisterHandler(wxWebHandler
* handler
) = 0;
338 Reload the currently displayed URL.
339 @param flags A bit array that may optionally contain reload options.
341 virtual void Reload(wxWebViewReloadFlags flags
= wxWEB_VIEW_RELOAD_DEFAULT
) = 0;
344 Runs the given javascript code.
346 virtual void RunScript(const wxString
& javascript
) = 0;
349 Set the editable property of the web control. Enabling allows the user
350 to edit the page even if the @c contenteditable attribute is not set.
351 The exact capabilities vary with the backend being used.
353 virtual void SetEditable(bool enable
= true) = 0;
356 Set the displayed page source to the contents of the given string.
357 @param html The string that contains the HTML data to display.
358 @param baseUrl URL assigned to the HTML data, to be used to resolve
359 relative paths, for instance.
361 virtual void SetPage(const wxString
& html
, const wxString
& baseUrl
) = 0;
364 Set the displayed page source to the contents of the given stream.
365 @param html The stream to read HTML data from.
366 @param baseUrl URL assigned to the HTML data, to be used to resolve
367 relative paths, for instance.
369 virtual void SetPage(wxInputStream
& html
, wxString baseUrl
);
372 Stop the current page loading process, if any.
373 May trigger an error event of type @c wxWEB_NAV_ERR_USER_CANCELLED.
374 TODO: make @c wxWEB_NAV_ERR_USER_CANCELLED errors uniform across ports.
376 virtual void Stop() = 0;
383 Returns @true if the current selection can be copied.
385 virtual bool CanCopy() = 0;
388 Returns @true if the current selection can be cut.
390 virtual bool CanCut() = 0;
393 Returns @true if data can be pasted.
395 virtual bool CanPaste() = 0;
398 Copies the current selection.
400 virtual void Copy() = 0;
403 Cuts the current selection.
405 virtual void Cut() = 0;
408 Pastes the current data.
410 virtual void Paste() = 0;
417 Returns @true if it is possible to navigate backward in the history of
420 virtual bool CanGoBack() = 0;
423 Returns @true if it is possible to navigate forward in the history of
426 virtual bool CanGoForward() = 0;
429 Clear the history, this will also remove the visible page.
431 virtual void ClearHistory() = 0;
434 Enable or disable the history. This will also clear the history.
436 virtual void EnableHistory(bool enable
= true) = 0;
439 Returns a list of items in the back history. The first item in the
440 vector is the first page that was loaded by the control.
442 virtual wxVector
<wxSharedPtr
<wxWebHistoryItem
> > GetBackwardHistory() = 0;
445 Returns a list of items in the forward history. The first item in the
446 vector is the next item in the history with respect to the curently
449 virtual wxVector
<wxSharedPtr
<wxWebHistoryItem
> > GetForwardHistory() = 0;
452 Navigate back in the history of visited pages.
453 Only valid if CanGoBack() returns true.
455 virtual void GoBack() = 0;
458 Navigate forward in the history of visited pages.
459 Only valid if CanGoForward() returns true.
461 virtual void GoForward() = 0;
464 Loads a history item.
466 virtual void LoadHistoryItem(wxSharedPtr
<wxWebHistoryItem
> item
) = 0;
473 Clears the current selection.
475 virtual void ClearSelection() = 0;
478 Deletes the current selection. Note that for @c wxWEB_VIEW_BACKEND_WEBKIT
479 the selection must be editable, either through SetEditable or the
480 correct HTML attribute.
482 virtual void DeleteSelection() = 0;
485 Returns the currently selected source, if any.
487 virtual wxString
GetSelectedSource() = 0;
490 Returns the currently selected text, if any.
492 virtual wxString
GetSelectedText() = 0;
495 Returns @true if there is a current selection.
497 virtual bool HasSelection() = 0;
500 Selects the entire page.
502 virtual void SelectAll() = 0;
509 Returns @true if there is an action to redo.
511 virtual bool CanRedo() = 0;
514 Returns @true if there is an action to undo.
516 virtual bool CanUndo() = 0;
519 Redos the last action.
521 virtual void Redo() = 0;
524 Undos the last action.
526 virtual void Undo() = 0;
533 Retrieve whether the current HTML engine supports a zoom type.
534 @param type The zoom type to test.
535 @return Whether this type of zoom is supported by this HTML engine
536 (and thus can be set through SetZoomType()).
538 virtual bool CanSetZoomType(wxWebViewZoomType type
) const = 0;
541 Get the zoom factor of the page.
542 @return The current level of zoom.
544 virtual wxWebViewZoom
GetZoom() = 0;
547 Get how the zoom factor is currently interpreted.
548 @return How the zoom factor is currently interpreted by the HTML engine.
550 virtual wxWebViewZoomType
GetZoomType() const = 0;
553 Set the zoom factor of the page.
554 @param zoom How much to zoom (scale) the HTML document.
556 virtual void SetZoom(wxWebViewZoom zoom
) = 0;
559 Set how to interpret the zoom factor.
560 @param zoomType How the zoom factor should be interpreted by the
562 @note invoke CanSetZoomType() first, some HTML renderers may not
563 support all zoom types.
565 virtual void SetZoomType(wxWebViewZoomType zoomType
) = 0;
572 @class wxWebNavigationEvent
574 A navigation event holds information about events associated with
577 @beginEventEmissionTable{wxWebNavigationEvent}
578 @event{EVT_WEB_VIEW_NAVIGATING(id, func)}
579 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying
580 to get a resource. This event may be vetoed to prevent navigating to this
581 resource. Note that if the displayed HTML document has several frames, one
582 such event will be generated per frame.
583 @event{EVT_WEB_VIEW_NAVIGATED(id, func)}
584 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was
585 confirmed that a resource would be requested. This event may not be vetoed.
586 Note that if the displayed HTML document has several frames, one such event
587 will be generated per frame.
588 @event{EVT_WEB_VIEW_LOADED(id, func)}
589 Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
590 is fully loaded and displayed. Note that if the displayed HTML document has
591 several frames, one such event will be generated per frame.
592 @event{EVT_WEB_VIEW_ERRROR(id, func)}
593 Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
595 The integer associated with this event will be a wxWebNavigationError item.
596 The string associated with this event may contain a backend-specific more
597 precise error message/code.
598 @event{EVT_WEB_VIEW_NEWWINDOW(id, func)}
599 Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new
600 window is created. You must handle this event if you want anything to
601 happen, for example to load the page in a new window or tab.
602 @event{EVT_WEB_VIEW_TITLE_CHANGED(id, func)}
603 Process a @c wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event, generated when
604 the page title changes. Use GetString to get the title.
608 @category{events,web}
612 class wxWebNavigationEvent
: public wxCommandEvent
615 wxWebNavigationEvent();
616 wxWebNavigationEvent(wxEventType type
, int id
, const wxString href
,
617 const wxString target
, bool canVeto
);
620 Get the name of the target frame which the url of this event
621 has been or will be loaded into. This may return an emptry string
622 if the frame is not avaliable.
624 const wxString
& GetTarget() const;
627 Get the URL being visited
629 const wxString
& GetURL() const;
631 virtual wxEvent
* Clone() const;
634 Get whether this event may be vetoed (stopped/prevented). Only
635 meaningful for events fired before navigation takes place.
637 bool CanVeto() const;
640 Whether this event was vetoed (stopped/prevented). Only meaningful for
641 events fired before navigation takes place or new window events.
643 bool IsVetoed() const;
646 Veto (prevent/stop) this event. Only meaningful for events fired
647 before navigation takes place. Only valid if CanVeto() returned true.