Add a new event type for new window creation, document and implement under MSW. Updat...
[wxWidgets.git] / interface / wx / webview.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: webview.h
3 // Purpose: interface of wxWebView
4 // Author: wxWidgets team
5 // RCS-ID: $Id:$
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 Zoom levels availiable in wxWebView
11 */
12 enum wxWebViewZoom
13 {
14 wxWEB_VIEW_ZOOM_TINY,
15 wxWEB_VIEW_ZOOM_SMALL,
16 wxWEB_VIEW_ZOOM_MEDIUM, //!< default size
17 wxWEB_VIEW_ZOOM_LARGE,
18 wxWEB_VIEW_ZOOM_LARGEST
19 };
20
21 /**
22 The type of zooming that the web view control can perform
23 */
24 enum wxWebViewZoomType
25 {
26 /**
27 The entire layout scales when zooming, including images
28 */
29 wxWEB_VIEW_ZOOM_TYPE_LAYOUT,
30 /**
31 Only the text changes in size when zooming, images and other layout
32 elements retain their initial size
33 */
34 wxWEB_VIEW_ZOOM_TYPE_TEXT
35 };
36
37 /**
38 Types of errors that can cause navigation to fail
39 */
40 enum wxWebNavigationError
41 {
42 /** Connection error (timeout, etc.) */
43 wxWEB_NAV_ERR_CONNECTION,
44 /** Invalid certificate */
45 wxWEB_NAV_ERR_CERTIFICATE,
46 /** Authentication required */
47 wxWEB_NAV_ERR_AUTH,
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*/
58 wxWEB_NAV_ERR_OTHER
59 };
60
61 /**
62 Type of refresh
63 */
64 enum wxWebViewReloadFlags
65 {
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
70 };
71
72
73 /**
74 * List of available backends for wxWebView
75 */
76 enum wxWebViewBackend
77 {
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,
81
82 /** The OSX-native WebKit web engine */
83 wxWEB_VIEW_BACKEND_OSX_WEBKIT,
84
85 /** The GTK port of the WebKit engine */
86 wxWEB_VIEW_BACKEND_GTK_WEBKIT,
87
88 /** Use Microsoft Internet Explorer as web engine */
89 wxWEB_VIEW_BACKEND_IE
90 };
91
92 /**
93 @class wxWebView
94
95 This control may be used to render web (HTML / CSS / javascript) documents.
96 Capabilities of the HTML renderer will depend upon the backed.
97 TODO: describe each backend and its capabilities here
98
99 Note that errors are generally reported asynchronously though the
100 @c wxEVT_COMMAND_WEB_VIEW_ERROR event described below.
101
102 @beginEventEmissionTable{wxWebNavigationEvent}
103 @event{EVT_WEB_VIEW_NAVIGATING(id, func)}
104 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying
105 to get a resource. This event may be vetoed to prevent navigating to this
106 resource. Note that if the displayed HTML document has several frames, one
107 such event will be generated per frame.
108 @event{EVT_WEB_VIEW_NAVIGATED(id, func)}
109 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was
110 confirmed that a resource would be requested. This event may not be vetoed.
111 Note that if the displayed HTML document has several frames, one such event
112 will be generated per frame.
113 @event{EVT_WEB_VIEW_LOADED(id, func)}
114 Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
115 is fully loaded and displayed.
116 @event{EVT_WEB_VIEW_ERRROR(id, func)}
117 Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
118 error occurs.
119 The integer associated with this event will be a wxWebNavigationError item.
120 The string associated with this event may contain a backend-specific more
121 precise error message/code.
122 @event{EVT_WEB_VIEW_NEWWINDOW(id, func)}
123 Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new
124 window is created. This event may be vetoed to prevent a new window showing,
125 for example if you want to open the url in the existing window or a new tab.
126 @endEventTable
127
128 @library{wxweb}
129 @category{ctrl}
130 */
131 class wxWebView : public wxControl
132 {
133 public:
134
135 /**
136 Creation function for two-step creation.
137 */
138 virtual bool Create(wxWindow* parent,
139 wxWindowID id,
140 const wxString& url,
141 const wxPoint& pos,
142 const wxSize& size,
143 long style,
144 const wxString& name) = 0;
145
146 /**
147 Factory function to create a new wxWebView for two-step creation
148 (you need to call wxWebView::Create on the returned object)
149 @param backend which web engine to use as backend for wxWebView
150 @return the created wxWebView, or NULL if the requested backend is
151 not available
152 */
153 static wxWebView* New(wxWebViewBackend backend = wxWEB_VIEW_BACKEND_DEFAULT);
154
155 /**
156 Factory function to create a new wxWebView
157 @param parent parent window to create this view in
158 @param id ID of this control
159 @param url URL to load by default in the web view
160 @param pos position to create this control at
161 (you may use wxDefaultPosition if you use sizers)
162 @param size size to create this control with
163 (you may use wxDefaultSize if you use sizers)
164 @param backend which web engine to use as backend for wxWebView
165 @return the created wxWebView, or NULL if the requested backend
166 is not available
167 */
168 static wxWebView* New(wxWindow* parent,
169 wxWindowID id,
170 const wxString& url = wxWebViewDefaultURLStr,
171 const wxPoint& pos = wxDefaultPosition,
172 const wxSize& size = wxDefaultSize,
173 wxWebViewBackend backend = wxWEB_VIEW_BACKEND_DEFAULT,
174 long style = 0,
175 const wxString& name = wxWebViewNameStr);
176
177
178 /**
179 Get whether it is possible to navigate back in the history of
180 visited pages
181 */
182 virtual bool CanGoBack() = 0;
183
184 /**
185 Get whether it is possible to navigate forward in the history of
186 visited pages
187 */
188 virtual bool CanGoForward() = 0;
189
190 /**
191 Navigate back in the history of visited pages.
192 Only valid if CanGoBack() returned true.
193 */
194 virtual void GoBack() = 0;
195
196 /**
197 Navigate forwardin the history of visited pages.
198 Only valid if CanGoForward() returned true.
199 */
200 virtual void GoForward() = 0;
201
202 /**
203 Load a HTMl document (web page) from a URL
204 @param url the URL where the HTML document to display can be found
205 @note web engines generally report errors asynchronously, so if you wish
206 to know whether loading the URL was successful, register to receive
207 navigation error events
208 */
209 virtual void LoadUrl(const wxString& url) = 0;
210
211 /**
212 Stop the current page loading process, if any.
213 May trigger an error event of type @c wxWEB_NAV_ERR_USER_CANCELLED.
214 TODO: make @c wxWEB_NAV_ERR_USER_CANCELLED errors uniform across ports.
215 */
216 virtual void Stop() = 0;
217
218 /**
219 Reload the currently displayed URL.
220 @param flags A bit array that may optionnally contain reload options
221 */
222 virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT) = 0;
223
224
225 /**
226 Get the URL of the currently displayed document
227 */
228 virtual wxString GetCurrentURL() = 0;
229
230 /**
231 Get the title of the current web page, or its URL/path if title is not
232 available
233 */
234 virtual wxString GetCurrentTitle() = 0;
235
236 /**
237 Get the HTML source code of the currently displayed document
238 @return the HTML source code, or an empty string if no page is currently
239 shown
240 */
241 virtual wxString GetPageSource() = 0;
242
243 /**
244 Get the zoom factor of the page
245 @return How much the HTML document is zoomed (scaleed)
246 */
247 virtual wxWebViewZoom GetZoom() = 0;
248
249 /**
250 Set the zoom factor of the page
251 @param zoom How much to zoom (scale) the HTML document
252 */
253 virtual void SetZoom(wxWebViewZoom zoom) = 0;
254
255 /**
256 Set how to interpret the zoom factor
257 @param zoomType how the zoom factor should be interpreted by the
258 HTML engine
259 @note invoke canSetZoomType() first, some HTML renderers may not
260 support all zoom types
261 */
262 virtual void SetZoomType(wxWebViewZoomType zoomType) = 0;
263
264 /**
265 Get how the zoom factor is currently interpreted
266 @return how the zoom factor is currently interpreted by the HTML engine
267 */
268 virtual wxWebViewZoomType GetZoomType() const = 0;
269
270 /**
271 Retrieve whether the current HTML engine supports a type of zoom
272 @param type the type of zoom to test
273 @return whether this type of zoom is supported by this HTML engine
274 (and thus can be set through setZoomType())
275 */
276 virtual bool CanSetZoomType(wxWebViewZoomType type) const = 0;
277
278 /**
279 Set the displayed page source to the contents of the given string
280 @param html the string that contains the HTML data to display
281 @param baseUrl URL assigned to the HTML data, to be used to resolve
282 relative paths, for instance
283 */
284 virtual void SetPage(const wxString& html, const wxString& baseUrl) = 0;
285
286 /**
287 Set the displayed page source to the contents of the given stream
288 @param html the stream to read HTML data from
289 @param baseUrl URL assigned to the HTML data, to be used to resolve
290 relative paths, for instance
291 */
292 virtual void SetPage(wxInputStream& html, wxString baseUrl)
293 {
294 wxStringOutputStream stream;
295 stream.Write(html);
296 SetPage(stream.GetString(), baseUrl);
297 }
298
299 /**
300 Opens a print dialog so that the user may print the currently
301 displayed page.
302 */
303 virtual void Print() = 0;
304
305 /**
306 Returns whether the web control is currently busy (e.g. loading a page)
307 */
308 virtual bool IsBusy() = 0;
309 };
310
311
312
313
314 /**
315 @class wxWebNavigationEvent
316
317 A navigation event holds information about events associated with
318 wxWebView objects.
319
320 @beginEventEmissionTable{wxWebNavigationEvent}
321 @event{EVT_WEB_VIEW_NAVIGATING(id, func)}
322 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying
323 to get a resource. This event may be vetoed to prevent navigating to this
324 resource. Note that if the displayed HTML document has several frames, one
325 such event will be generated per frame.
326 @event{EVT_WEB_VIEW_NAVIGATED(id, func)}
327 Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was
328 confirmed that a resource would be requested. This event may not be vetoed.
329 Note that if the displayed HTML document has several frames, one such event
330 will be generated per frame.
331 @event{EVT_WEB_VIEW_LOADED(id, func)}
332 Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
333 is fully loaded and displayed.
334 @event{EVT_WEB_VIEW_ERRROR(id, func)}
335 Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
336 error occurs.
337 The integer associated with this event will be a wxWebNavigationError item.
338 The string associated with this event may contain a backend-specific more
339 precise error message/code.
340 @event{EVT_WEB_VIEW_NEWWINDOW(id, func)}
341 Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new
342 window is created. This event may be vetoed to prevent a new window showing,
343 for example if you want to open the url in the existing window or a new tab.
344 @endEventTable
345
346 @library{wxweb}
347 @category{events}
348
349 @see wxWebView
350 */
351 class wxWebNavigationEvent : public wxCommandEvent
352 {
353 public:
354 wxWebNavigationEvent();
355 wxWebNavigationEvent(wxEventType type, int id, const wxString href,
356 const wxString target, bool canVeto);
357 /**
358 Get the URL being visited
359 */
360 const wxString& GetHref() const { return m_href; }
361
362 /**
363 Get the target (frame or window) in which the URL that caused this event
364 is viewed, or an empty string if not available.
365 */
366 const wxString& GetTarget() const;
367
368 virtual wxEvent* Clone() const;
369
370 /**
371 Get whether this event may be vetoed (stopped/prevented). Only
372 meaningful for events fired before navigation takes place or new
373 window events.
374 */
375 bool CanVeto() const;
376
377 /**
378 Whether this event was vetoed (stopped/prevented). Only meaningful for
379 events fired before navigation takes place or new window events.
380 */
381 bool IsVetoed() const;
382
383 /**
384 Veto (prevent/stop) this event. Only meaningful for events fired
385 before navigation takes place or new window events. Only valid
386 if CanVeto() returned true.
387 */
388 void Veto();
389 };