]>
Commit | Line | Data |
---|---|---|
968a7de2 SL |
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 | */ | |
04fa04d8 | 40 | enum wxWebViewNavigationError |
968a7de2 SL |
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 | ||
9df97be2 SL |
82 | /** The WebKit web engine */ |
83 | wxWEB_VIEW_BACKEND_WEBKIT, | |
968a7de2 SL |
84 | |
85 | /** Use Microsoft Internet Explorer as web engine */ | |
86 | wxWEB_VIEW_BACKEND_IE | |
87 | }; | |
88 | ||
89 | /** | |
c13d6ac1 | 90 | @class wxWebViewHistoryItem |
968a7de2 SL |
91 | |
92 | A simple class that contains the URL and title of an element of the history | |
93 | of a wxWebView. | |
94 | ||
43d53ee5 SL |
95 | @library{wxwebview} |
96 | @category{webview} | |
bf39189b SL |
97 | |
98 | @see wxWebView | |
968a7de2 | 99 | */ |
c13d6ac1 | 100 | class wxWebViewHistoryItem |
968a7de2 SL |
101 | { |
102 | public: | |
103 | /** | |
104 | Construtor. | |
105 | */ | |
c13d6ac1 | 106 | wxWebViewHistoryItem(const wxString& url, const wxString& title); |
968a7de2 SL |
107 | |
108 | /** | |
109 | @return The url of the page. | |
110 | */ | |
111 | wxString GetUrl(); | |
112 | ||
113 | /** | |
114 | @return The title of the page. | |
115 | */ | |
116 | wxString GetTitle(); | |
117 | }; | |
118 | ||
42be0c56 | 119 | /** |
7d8d6163 | 120 | @class wxWebViewHandler |
42be0c56 SL |
121 | |
122 | The base class for handling custom schemes in wxWebView, for example to | |
123 | allow virtual file system support. | |
124 | ||
43d53ee5 SL |
125 | @library{wxwebview} |
126 | @category{webview} | |
42be0c56 SL |
127 | |
128 | @see wxWebView | |
129 | */ | |
7d8d6163 | 130 | class wxWebViewHandler |
42be0c56 SL |
131 | { |
132 | public: | |
7d8d6163 SL |
133 | /** |
134 | Constructor. Takes the name of the scheme that will be handled by this | |
135 | class for example @c file or @c zip. | |
136 | */ | |
137 | wxWebViewHandler(const wxString& scheme); | |
138 | ||
42be0c56 SL |
139 | /** |
140 | @return A pointer to the file represented by @c uri. | |
141 | */ | |
142 | virtual wxFSFile* GetFile(const wxString &uri) = 0; | |
143 | ||
144 | /** | |
7d8d6163 | 145 | @return The name of the scheme, as passed to the constructor. |
42be0c56 SL |
146 | */ |
147 | virtual wxString GetName() const = 0; | |
148 | }; | |
149 | ||
968a7de2 SL |
150 | /** |
151 | @class wxWebView | |
152 | ||
153 | This control may be used to render web (HTML / CSS / javascript) documents. | |
66a8d414 SL |
154 | It is designed to allow the creation of multiple backends for each port, |
155 | although currently just one is available. It differs from wxHtmlWindow in | |
156 | that each backend is actually a full rendering engine, Trident on MSW and | |
157 | Webkit on OSX and GTK. This allows the correct viewing complex pages with | |
158 | javascript and css. | |
062dfc9a SL |
159 | |
160 | @section descriptions Backend Descriptions | |
161 | ||
162 | @par wxWEB_VIEW_BACKEND_IE (MSW) | |
163 | ||
0abf6824 | 164 | The IE backend uses Microsoft's Trident rendering engine, specifically the |
062dfc9a | 165 | version used by the locally installed copy of Internet Explorer. As such it |
0abf6824 | 166 | is only available for the MSW port. By default recent versions of the |
062dfc9a SL |
167 | <a href="http://msdn.microsoft.com/en-us/library/aa752085%28v=VS.85%29.aspx">WebBrowser</a> |
168 | control, which this backend uses, emulate Internet Explorer 7. This can be | |
0abf6824 | 169 | changed with a registry setting, see |
c36818c8 | 170 | <a href="http://msdn.microsoft.com/en-us/library/ee330730%28v=vs.85%29.aspx#browser_emulation"> |
062dfc9a SL |
171 | this</a> article for more information. This backend has full support for |
172 | custom schemes and virtual file systems. | |
173 | ||
174 | @par wxWEB_VIEW_WEBKIT (GTK) | |
175 | ||
176 | Under GTK the WebKit backend uses | |
177 | <a href="http://webkitgtk.org/">WebKitGTK+</a>. The current minimum version | |
0abf6824 SL |
178 | required is 1.3.1 which ships by default with Ubuntu Natty and Debian |
179 | Wheezy and has the package name libwebkitgtk-dev. Custom schemes and | |
180 | virtual files systems are supported under this backend, however embedded | |
fe104ff9 SL |
181 | resources such as images and stylesheets are currently loaded using the |
182 | data:// scheme. | |
062dfc9a SL |
183 | |
184 | @par wxWEB_VIEW_WEBKIT (OSX) | |
185 | ||
186 | The OSX WebKit backend uses Apple's | |
187 | <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> | |
fe104ff9 SL |
188 | class. This backend has full support for custom schemes and virtual file |
189 | systems. | |
25b2deb8 SL |
190 | |
191 | @section async Asynchronous Notifications | |
192 | ||
193 | Many of the methods in wxWebView are asynchronous, i.e. they return | |
194 | immediately and perform their work in the background. This includes | |
195 | functions such as LoadUrl() and Reload(). To receive notification of the | |
196 | progress and completion of these functions you need to handle the events | |
197 | that are provided. Specifically @c wxEVT_COMMAND_WEB_VIEW_LOADED notifies | |
198 | when the page or a sub-frame has finished loading and | |
199 | @c wxEVT_COMMAND_WEB_VIEW_ERROR notifies that an error has occurred. | |
42be0c56 SL |
200 | |
201 | @section vfs Virtual File Systems and Custom Schemes | |
202 | ||
203 | wxWebView supports the registering of custom scheme handlers, for example | |
204 | @c file or @c http. To do this create a new class which inherits from | |
7d8d6163 | 205 | wxWebViewHandler, where wxWebHandler::GetFile() returns a pointer to a |
42be0c56 SL |
206 | wxFSFile which represents the given url. You can then register your handler |
207 | with RegisterHandler() it will be called for all pages and resources. | |
208 | ||
209 | wxWebFileHandler is provided to allow the navigation of pages inside a zip | |
210 | archive. It overrides the @c file scheme and provides support for the | |
211 | standard @c file syntax as well as paths to archives of the form | |
212 | @c file:///C:/exmaple/docs.zip;protocol=zip/main.htm | |
968a7de2 | 213 | |
04fa04d8 | 214 | @beginEventEmissionTable{wxWebViewEvent} |
968a7de2 SL |
215 | @event{EVT_WEB_VIEW_NAVIGATING(id, func)} |
216 | Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying | |
217 | to get a resource. This event may be vetoed to prevent navigating to this | |
218 | resource. Note that if the displayed HTML document has several frames, one | |
219 | such event will be generated per frame. | |
220 | @event{EVT_WEB_VIEW_NAVIGATED(id, func)} | |
221 | Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was | |
222 | confirmed that a resource would be requested. This event may not be vetoed. | |
223 | Note that if the displayed HTML document has several frames, one such event | |
224 | will be generated per frame. | |
225 | @event{EVT_WEB_VIEW_LOADED(id, func)} | |
226 | Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document | |
113e0a92 SL |
227 | is fully loaded and displayed. Note that if the displayed HTML document has |
228 | several frames, one such event will be generated per frame. | |
968a7de2 SL |
229 | @event{EVT_WEB_VIEW_ERRROR(id, func)} |
230 | Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation | |
231 | error occurs. | |
232 | The integer associated with this event will be a wxWebNavigationError item. | |
233 | The string associated with this event may contain a backend-specific more | |
234 | precise error message/code. | |
235 | @event{EVT_WEB_VIEW_NEWWINDOW(id, func)} | |
236 | Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new | |
d676fb21 SL |
237 | window is created. You must handle this event if you want anything to |
238 | happen, for example to load the page in a new window or tab. | |
153530af SL |
239 | @event{EVT_WEB_VIEW_TITLE_CHANGED(id, func)} |
240 | Process a @c wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event, generated when | |
241 | the page title changes. Use GetString to get the title. | |
968a7de2 SL |
242 | @endEventTable |
243 | ||
43d53ee5 SL |
244 | @library{wxwebview} |
245 | @category{ctrl,webview} | |
3225a4b8 | 246 | @see wxWebViewHandler, wxWebViewEvent |
968a7de2 SL |
247 | */ |
248 | class wxWebView : public wxControl | |
249 | { | |
250 | public: | |
251 | ||
252 | /** | |
253 | Creation function for two-step creation. | |
254 | */ | |
255 | virtual bool Create(wxWindow* parent, | |
256 | wxWindowID id, | |
257 | const wxString& url, | |
258 | const wxPoint& pos, | |
259 | const wxSize& size, | |
260 | long style, | |
261 | const wxString& name) = 0; | |
262 | ||
263 | /** | |
264 | Factory function to create a new wxWebView for two-step creation | |
265 | (you need to call wxWebView::Create on the returned object) | |
266 | @param backend which web engine to use as backend for wxWebView | |
267 | @return the created wxWebView, or NULL if the requested backend is | |
268 | not available | |
269 | */ | |
270 | static wxWebView* New(wxWebViewBackend backend = wxWEB_VIEW_BACKEND_DEFAULT); | |
271 | ||
272 | /** | |
273 | Factory function to create a new wxWebView | |
274 | @param parent parent window to create this view in | |
275 | @param id ID of this control | |
276 | @param url URL to load by default in the web view | |
277 | @param pos position to create this control at | |
278 | (you may use wxDefaultPosition if you use sizers) | |
279 | @param size size to create this control with | |
280 | (you may use wxDefaultSize if you use sizers) | |
281 | @param backend which web engine to use as backend for wxWebView | |
282 | @return the created wxWebView, or NULL if the requested backend | |
283 | is not available | |
284 | */ | |
285 | static wxWebView* New(wxWindow* parent, | |
286 | wxWindowID id, | |
287 | const wxString& url = wxWebViewDefaultURLStr, | |
288 | const wxPoint& pos = wxDefaultPosition, | |
289 | const wxSize& size = wxDefaultSize, | |
290 | wxWebViewBackend backend = wxWEB_VIEW_BACKEND_DEFAULT, | |
291 | long style = 0, | |
292 | const wxString& name = wxWebViewNameStr); | |
293 | ||
294 | /** | |
295 | Get the title of the current web page, or its URL/path if title is not | |
296 | available. | |
297 | */ | |
e669ddde | 298 | virtual wxString GetCurrentTitle() const = 0; |
968a7de2 SL |
299 | |
300 | /** | |
301 | Get the URL of the currently displayed document. | |
302 | */ | |
e669ddde | 303 | virtual wxString GetCurrentURL() const = 0; |
968a7de2 SL |
304 | |
305 | /** | |
306 | Get the HTML source code of the currently displayed document. | |
307 | @return The HTML source code, or an empty string if no page is currently | |
308 | shown. | |
309 | */ | |
e669ddde | 310 | virtual wxString GetPageSource() const = 0; |
968a7de2 | 311 | |
241b769f SL |
312 | /** |
313 | Get the text of the current page. | |
314 | */ | |
e669ddde | 315 | virtual wxString GetPageText() const = 0; |
241b769f | 316 | |
968a7de2 SL |
317 | /** |
318 | Returns whether the web control is currently busy (e.g. loading a page). | |
319 | */ | |
e669ddde | 320 | virtual bool IsBusy() const = 0; |
c7cbe308 SL |
321 | |
322 | /** | |
323 | Returns whether the web control is currently editable | |
324 | */ | |
e669ddde | 325 | virtual bool IsEditable() const = 0; |
968a7de2 SL |
326 | |
327 | /** | |
328 | Load a web page from a URL | |
329 | @param url The URL of the page to be loaded. | |
330 | @note Web engines generally report errors asynchronously, so if you wish | |
331 | to know whether loading the URL was successful, register to receive | |
332 | navigation error events. | |
333 | */ | |
4d0dddc7 | 334 | virtual void LoadURL(const wxString& url) = 0; |
968a7de2 SL |
335 | |
336 | /** | |
337 | Opens a print dialog so that the user may print the currently | |
338 | displayed page. | |
339 | */ | |
340 | virtual void Print() = 0; | |
42be0c56 SL |
341 | |
342 | /** | |
343 | Registers a custom scheme handler. | |
3baf235f | 344 | @param handler A shared pointer to a wxWebHandler. |
42be0c56 | 345 | */ |
7d8d6163 | 346 | virtual void RegisterHandler(wxSharedPtr<wxWebViewHandler> handler) = 0; |
968a7de2 SL |
347 | |
348 | /** | |
349 | Reload the currently displayed URL. | |
350 | @param flags A bit array that may optionally contain reload options. | |
351 | */ | |
352 | virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT) = 0; | |
c7cbe308 | 353 | |
c9ccc09c SL |
354 | /** |
355 | Runs the given javascript code. | |
356 | */ | |
357 | virtual void RunScript(const wxString& javascript) = 0; | |
358 | ||
c7cbe308 SL |
359 | /** |
360 | Set the editable property of the web control. Enabling allows the user | |
361 | to edit the page even if the @c contenteditable attribute is not set. | |
362 | The exact capabilities vary with the backend being used. | |
363 | */ | |
364 | virtual void SetEditable(bool enable = true) = 0; | |
968a7de2 SL |
365 | |
366 | /** | |
367 | Set the displayed page source to the contents of the given string. | |
368 | @param html The string that contains the HTML data to display. | |
369 | @param baseUrl URL assigned to the HTML data, to be used to resolve | |
370 | relative paths, for instance. | |
371 | */ | |
372 | virtual void SetPage(const wxString& html, const wxString& baseUrl) = 0; | |
373 | ||
374 | /** | |
375 | Set the displayed page source to the contents of the given stream. | |
376 | @param html The stream to read HTML data from. | |
377 | @param baseUrl URL assigned to the HTML data, to be used to resolve | |
378 | relative paths, for instance. | |
379 | */ | |
2339d6df | 380 | virtual void SetPage(wxInputStream& html, wxString baseUrl); |
968a7de2 SL |
381 | |
382 | /** | |
383 | Stop the current page loading process, if any. | |
384 | May trigger an error event of type @c wxWEB_NAV_ERR_USER_CANCELLED. | |
385 | TODO: make @c wxWEB_NAV_ERR_USER_CANCELLED errors uniform across ports. | |
386 | */ | |
387 | virtual void Stop() = 0; | |
388 | ||
389 | /** | |
390 | @name Clipboard | |
391 | */ | |
392 | ||
393 | /** | |
394 | Returns @true if the current selection can be copied. | |
caa1ec95 | 395 | |
6849a4b7 | 396 | @note This always returns @c true on the OSX WebKit backend. |
968a7de2 | 397 | */ |
e669ddde | 398 | virtual bool CanCopy() const = 0; |
968a7de2 SL |
399 | |
400 | /** | |
401 | Returns @true if the current selection can be cut. | |
caa1ec95 | 402 | |
6849a4b7 | 403 | @note This always returns @c true on the OSX WebKit backend. |
968a7de2 | 404 | */ |
e669ddde | 405 | virtual bool CanCut() const = 0; |
968a7de2 SL |
406 | |
407 | /** | |
408 | Returns @true if data can be pasted. | |
caa1ec95 | 409 | |
6849a4b7 | 410 | @note This always returns @c true on the OSX WebKit backend. |
968a7de2 | 411 | */ |
e669ddde | 412 | virtual bool CanPaste() const = 0; |
968a7de2 SL |
413 | |
414 | /** | |
415 | Copies the current selection. | |
416 | */ | |
417 | virtual void Copy() = 0; | |
418 | ||
419 | /** | |
420 | Cuts the current selection. | |
421 | */ | |
422 | virtual void Cut() = 0; | |
423 | ||
424 | /** | |
425 | Pastes the current data. | |
426 | */ | |
427 | virtual void Paste() = 0; | |
428 | ||
429 | /** | |
430 | @name History | |
431 | */ | |
432 | ||
433 | /** | |
434 | Returns @true if it is possible to navigate backward in the history of | |
435 | visited pages. | |
436 | */ | |
e669ddde | 437 | virtual bool CanGoBack() const = 0; |
968a7de2 SL |
438 | |
439 | /** | |
440 | Returns @true if it is possible to navigate forward in the history of | |
441 | visited pages. | |
442 | */ | |
e669ddde | 443 | virtual bool CanGoForward() const = 0; |
968a7de2 SL |
444 | |
445 | /** | |
446 | Clear the history, this will also remove the visible page. | |
447 | */ | |
448 | virtual void ClearHistory() = 0; | |
449 | ||
450 | /** | |
451 | Enable or disable the history. This will also clear the history. | |
452 | */ | |
453 | virtual void EnableHistory(bool enable = true) = 0; | |
454 | ||
455 | /** | |
456 | Returns a list of items in the back history. The first item in the | |
457 | vector is the first page that was loaded by the control. | |
458 | */ | |
c13d6ac1 | 459 | virtual wxVector<wxSharedPtr<wxWebViewHistoryItem> > GetBackwardHistory() = 0; |
968a7de2 SL |
460 | |
461 | /** | |
462 | Returns a list of items in the forward history. The first item in the | |
463 | vector is the next item in the history with respect to the curently | |
464 | loaded page. | |
465 | */ | |
c13d6ac1 | 466 | virtual wxVector<wxSharedPtr<wxWebViewHistoryItem> > GetForwardHistory() = 0; |
968a7de2 SL |
467 | |
468 | /** | |
469 | Navigate back in the history of visited pages. | |
470 | Only valid if CanGoBack() returns true. | |
471 | */ | |
472 | virtual void GoBack() = 0; | |
473 | ||
474 | /** | |
475 | Navigate forward in the history of visited pages. | |
476 | Only valid if CanGoForward() returns true. | |
477 | */ | |
478 | virtual void GoForward() = 0; | |
479 | ||
480 | /** | |
481 | Loads a history item. | |
482 | */ | |
c13d6ac1 | 483 | virtual void LoadHistoryItem(wxSharedPtr<wxWebViewHistoryItem> item) = 0; |
63a65070 SL |
484 | |
485 | /** | |
486 | @name Selection | |
487 | */ | |
488 | ||
41933aa5 SL |
489 | /** |
490 | Clears the current selection. | |
491 | */ | |
492 | virtual void ClearSelection() = 0; | |
493 | ||
63a65070 SL |
494 | /** |
495 | Deletes the current selection. Note that for @c wxWEB_VIEW_BACKEND_WEBKIT | |
496 | the selection must be editable, either through SetEditable or the | |
497 | correct HTML attribute. | |
498 | */ | |
499 | virtual void DeleteSelection() = 0; | |
c9355a3d | 500 | |
0fe8a1b6 | 501 | /** |
97ba4d81 | 502 | Returns the currently selected source, if any. |
0fe8a1b6 | 503 | */ |
e669ddde | 504 | virtual wxString GetSelectedSource() const = 0; |
0fe8a1b6 | 505 | |
c9355a3d SL |
506 | /** |
507 | Returns the currently selected text, if any. | |
508 | */ | |
e669ddde | 509 | virtual wxString GetSelectedText() const = 0; |
63a65070 SL |
510 | |
511 | /** | |
512 | Returns @true if there is a current selection. | |
513 | */ | |
e669ddde | 514 | virtual bool HasSelection() const = 0; |
63a65070 SL |
515 | |
516 | /** | |
517 | Selects the entire page. | |
518 | */ | |
519 | virtual void SelectAll() = 0; | |
968a7de2 SL |
520 | |
521 | /** | |
522 | @name Undo / Redo | |
523 | */ | |
524 | ||
525 | /** | |
526 | Returns @true if there is an action to redo. | |
527 | */ | |
e669ddde | 528 | virtual bool CanRedo() const = 0; |
968a7de2 SL |
529 | |
530 | /** | |
531 | Returns @true if there is an action to undo. | |
532 | */ | |
e669ddde | 533 | virtual bool CanUndo() const = 0; |
968a7de2 SL |
534 | |
535 | /** | |
536 | Redos the last action. | |
537 | */ | |
538 | virtual void Redo() = 0; | |
539 | ||
540 | /** | |
541 | Undos the last action. | |
542 | */ | |
543 | virtual void Undo() = 0; | |
544 | ||
545 | /** | |
546 | @name Zoom | |
547 | */ | |
548 | ||
549 | /** | |
550 | Retrieve whether the current HTML engine supports a zoom type. | |
551 | @param type The zoom type to test. | |
552 | @return Whether this type of zoom is supported by this HTML engine | |
553 | (and thus can be set through SetZoomType()). | |
554 | */ | |
555 | virtual bool CanSetZoomType(wxWebViewZoomType type) const = 0; | |
556 | ||
557 | /** | |
558 | Get the zoom factor of the page. | |
559 | @return The current level of zoom. | |
560 | */ | |
e669ddde | 561 | virtual wxWebViewZoom GetZoom() const = 0; |
968a7de2 SL |
562 | |
563 | /** | |
564 | Get how the zoom factor is currently interpreted. | |
565 | @return How the zoom factor is currently interpreted by the HTML engine. | |
566 | */ | |
567 | virtual wxWebViewZoomType GetZoomType() const = 0; | |
568 | ||
569 | /** | |
570 | Set the zoom factor of the page. | |
571 | @param zoom How much to zoom (scale) the HTML document. | |
572 | */ | |
573 | virtual void SetZoom(wxWebViewZoom zoom) = 0; | |
574 | ||
575 | /** | |
576 | Set how to interpret the zoom factor. | |
577 | @param zoomType How the zoom factor should be interpreted by the | |
578 | HTML engine. | |
579 | @note invoke CanSetZoomType() first, some HTML renderers may not | |
580 | support all zoom types. | |
581 | */ | |
582 | virtual void SetZoomType(wxWebViewZoomType zoomType) = 0; | |
583 | }; | |
584 | ||
585 | ||
586 | ||
587 | ||
588 | /** | |
04fa04d8 | 589 | @class wxWebViewEvent |
968a7de2 SL |
590 | |
591 | A navigation event holds information about events associated with | |
592 | wxWebView objects. | |
593 | ||
04fa04d8 | 594 | @beginEventEmissionTable{wxWebViewEvent} |
968a7de2 SL |
595 | @event{EVT_WEB_VIEW_NAVIGATING(id, func)} |
596 | Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATING event, generated before trying | |
597 | to get a resource. This event may be vetoed to prevent navigating to this | |
598 | resource. Note that if the displayed HTML document has several frames, one | |
599 | such event will be generated per frame. | |
600 | @event{EVT_WEB_VIEW_NAVIGATED(id, func)} | |
601 | Process a @c wxEVT_COMMAND_WEB_VIEW_NAVIGATED event generated after it was | |
602 | confirmed that a resource would be requested. This event may not be vetoed. | |
603 | Note that if the displayed HTML document has several frames, one such event | |
604 | will be generated per frame. | |
605 | @event{EVT_WEB_VIEW_LOADED(id, func)} | |
606 | Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document | |
113e0a92 SL |
607 | is fully loaded and displayed. Note that if the displayed HTML document has |
608 | several frames, one such event will be generated per frame. | |
968a7de2 SL |
609 | @event{EVT_WEB_VIEW_ERRROR(id, func)} |
610 | Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation | |
611 | error occurs. | |
612 | The integer associated with this event will be a wxWebNavigationError item. | |
613 | The string associated with this event may contain a backend-specific more | |
614 | precise error message/code. | |
615 | @event{EVT_WEB_VIEW_NEWWINDOW(id, func)} | |
616 | Process a @c wxEVT_COMMAND_WEB_VIEW_NEWWINDOW event, generated when a new | |
d676fb21 SL |
617 | window is created. You must handle this event if you want anything to |
618 | happen, for example to load the page in a new window or tab. | |
153530af SL |
619 | @event{EVT_WEB_VIEW_TITLE_CHANGED(id, func)} |
620 | Process a @c wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event, generated when | |
621 | the page title changes. Use GetString to get the title. | |
968a7de2 SL |
622 | @endEventTable |
623 | ||
43d53ee5 SL |
624 | @library{wxwebview} |
625 | @category{events,webview} | |
968a7de2 SL |
626 | |
627 | @see wxWebView | |
628 | */ | |
3225a4b8 | 629 | class wxWebViewEvent : public wxNotifyEvent |
968a7de2 SL |
630 | { |
631 | public: | |
04fa04d8 SL |
632 | wxWebViewEvent(); |
633 | wxWebViewEvent(wxEventType type, int id, const wxString href, | |
3225a4b8 | 634 | const wxString target); |
968a7de2 SL |
635 | |
636 | /** | |
45aa63c2 SL |
637 | Get the name of the target frame which the url of this event |
638 | has been or will be loaded into. This may return an emptry string | |
639 | if the frame is not avaliable. | |
968a7de2 SL |
640 | */ |
641 | const wxString& GetTarget() const; | |
642 | ||
e40741b9 SL |
643 | /** |
644 | Get the URL being visited | |
645 | */ | |
646 | const wxString& GetURL() const; | |
dec53e5a | 647 | }; |