1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common interface and events for web view component
4 // Author: Marianne Gagnon
6 // Copyright: (c) 2010 Marianne Gagnon, 2011 Steven Lamerton
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_WEB_VIEW_H_
11 #define _WX_WEB_VIEW_H_
17 #include "wx/control.h"
19 #include "wx/sstream.h"
20 #include "wx/sharedptr.h"
21 #include "wx/vector.h"
23 #include "wx/osx/webviewhistoryitem_webkit.h"
24 #include "wx/gtk/webviewhistoryitem_webkit.h"
25 #include "wx/msw/webviewhistoryitem_ie.h"
33 wxWEB_VIEW_ZOOM_SMALL
,
34 wxWEB_VIEW_ZOOM_MEDIUM
,
35 wxWEB_VIEW_ZOOM_LARGE
,
36 wxWEB_VIEW_ZOOM_LARGEST
39 enum wxWebViewZoomType
41 //Scales entire page, including images
42 wxWEB_VIEW_ZOOM_TYPE_LAYOUT
,
43 wxWEB_VIEW_ZOOM_TYPE_TEXT
46 enum wxWebViewNavigationError
48 wxWEB_NAV_ERR_CONNECTION
,
49 wxWEB_NAV_ERR_CERTIFICATE
,
51 wxWEB_NAV_ERR_SECURITY
,
52 wxWEB_NAV_ERR_NOT_FOUND
,
53 wxWEB_NAV_ERR_REQUEST
,
54 wxWEB_NAV_ERR_USER_CANCELLED
,
58 enum wxWebViewReloadFlags
60 //Default, may access cache
61 wxWEB_VIEW_RELOAD_DEFAULT
,
62 wxWEB_VIEW_RELOAD_NO_CACHE
67 wxWEB_VIEW_BACKEND_DEFAULT
,
68 wxWEB_VIEW_BACKEND_WEBKIT
,
72 //Base class for custom scheme handlers
73 class WXDLLIMPEXP_WEBVIEW wxWebViewHandler
76 wxWebViewHandler(const wxString
& scheme
) : m_scheme(scheme
) {}
77 virtual ~wxWebViewHandler() {}
78 virtual wxString
GetName() const { return m_scheme
; }
79 virtual wxFSFile
* GetFile(const wxString
&uri
) = 0;
84 extern WXDLLIMPEXP_DATA_WEBVIEW(const char) wxWebViewNameStr
[];
85 extern WXDLLIMPEXP_DATA_WEBVIEW(const char) wxWebViewDefaultURLStr
[];
87 class WXDLLIMPEXP_WEBVIEW wxWebView
: public wxControl
91 virtual bool Create(wxWindow
* parent
,
97 const wxString
& name
) = 0;
99 static wxWebView
* New(wxWebViewBackend backend
= wxWEB_VIEW_BACKEND_DEFAULT
);
100 static wxWebView
* New(wxWindow
* parent
,
102 const wxString
& url
= wxWebViewDefaultURLStr
,
103 const wxPoint
& pos
= wxDefaultPosition
,
104 const wxSize
& size
= wxDefaultSize
,
105 wxWebViewBackend backend
= wxWEB_VIEW_BACKEND_DEFAULT
,
107 const wxString
& name
= wxWebViewNameStr
);
110 virtual wxString
GetCurrentTitle() const = 0;
111 virtual wxString
GetCurrentURL() const = 0;
112 // TODO: handle choosing a frame when calling GetPageSource()?
113 virtual wxString
GetPageSource() const = 0;
114 virtual wxString
GetPageText() const = 0;
115 virtual bool IsBusy() const = 0;
116 virtual bool IsEditable() const = 0;
117 virtual void LoadURL(const wxString
& url
) = 0;
118 virtual void Print() = 0;
119 virtual void RegisterHandler(wxSharedPtr
<wxWebViewHandler
> handler
) = 0;
120 virtual void Reload(wxWebViewReloadFlags flags
= wxWEB_VIEW_RELOAD_DEFAULT
) = 0;
121 virtual void RunScript(const wxString
& javascript
) = 0;
122 virtual void SetEditable(bool enable
= true) = 0;
123 virtual void SetPage(const wxString
& html
, const wxString
& baseUrl
) = 0;
124 virtual void SetPage(wxInputStream
& html
, wxString baseUrl
)
126 wxStringOutputStream stream
;
128 SetPage(stream
.GetString(), baseUrl
);
130 virtual void Stop() = 0;
133 virtual bool CanGoBack() const = 0;
134 virtual bool CanGoForward() const = 0;
135 virtual void GoBack() = 0;
136 virtual void GoForward() = 0;
137 virtual void ClearHistory() = 0;
138 virtual void EnableHistory(bool enable
= true) = 0;
139 virtual wxVector
<wxSharedPtr
<wxWebViewHistoryItem
> > GetBackwardHistory() = 0;
140 virtual wxVector
<wxSharedPtr
<wxWebViewHistoryItem
> > GetForwardHistory() = 0;
141 virtual void LoadHistoryItem(wxSharedPtr
<wxWebViewHistoryItem
> item
) = 0;
144 virtual bool CanSetZoomType(wxWebViewZoomType type
) const = 0;
145 virtual wxWebViewZoom
GetZoom() const = 0;
146 virtual wxWebViewZoomType
GetZoomType() const = 0;
147 virtual void SetZoom(wxWebViewZoom zoom
) = 0;
148 virtual void SetZoomType(wxWebViewZoomType zoomType
) = 0;
151 virtual void SelectAll() = 0;
152 virtual bool HasSelection() const = 0;
153 virtual void DeleteSelection() = 0;
154 virtual wxString
GetSelectedText() const = 0;
155 virtual wxString
GetSelectedSource() const = 0;
156 virtual void ClearSelection() = 0;
158 //Clipboard functions
159 virtual bool CanCut() const = 0;
160 virtual bool CanCopy() const = 0;
161 virtual bool CanPaste() const = 0;
162 virtual void Cut() = 0;
163 virtual void Copy() = 0;
164 virtual void Paste() = 0;
166 //Undo / redo functionality
167 virtual bool CanUndo() const = 0;
168 virtual bool CanRedo() const = 0;
169 virtual void Undo() = 0;
170 virtual void Redo() = 0;
172 wxDECLARE_ABSTRACT_CLASS(wxWebView
);
175 class WXDLLIMPEXP_WEBVIEW wxWebViewEvent
: public wxNotifyEvent
179 wxWebViewEvent(wxEventType type
, int id
, const wxString url
,
180 const wxString target
)
181 : wxNotifyEvent(type
, id
), m_url(url
), m_target(target
)
185 const wxString
& GetURL() const { return m_url
; }
186 const wxString
& GetTarget() const { return m_target
; }
188 virtual wxEvent
* Clone() const { return new wxWebViewEvent(*this); }
193 wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWebViewEvent
);
196 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_NAVIGATING
, wxWebViewEvent
);
197 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_NAVIGATED
, wxWebViewEvent
);
198 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_LOADED
, wxWebViewEvent
);
199 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_ERROR
, wxWebViewEvent
);
200 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_NEWWINDOW
, wxWebViewEvent
);
201 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_WEBVIEW
, wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED
, wxWebViewEvent
);
203 typedef void (wxEvtHandler::*wxWebViewEventFunction
)
206 #define wxWebViewEventHandler(func) \
207 wxEVENT_HANDLER_CAST(wxWebViewEventFunction, func)
209 #define EVT_WEB_VIEW_NAVIGATING(id, fn) \
210 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_NAVIGATING, id, \
211 wxWebViewEventHandler(fn))
213 #define EVT_WEB_VIEW_NAVIGATED(id, fn) \
214 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_NAVIGATED, id, \
215 wxWebViewEventHandler(fn))
217 #define EVT_WEB_VIEW_LOADED(id, fn) \
218 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_LOADED, id, \
219 wxWebViewEventHandler(fn))
221 #define EVT_WEB_VIEW_ERRROR(id, fn) \
222 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_ERROR, id, \
223 wxWebViewEventHandler(fn))
225 #define EVT_WEB_VIEW_NEWWINDOW(id, fn) \
226 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_NEWWINDOW, id, \
227 wxWebViewEventHandler(fn))
229 #define EVT_WEB_VIEW_TITLE_CHANGED(id, fn) \
230 wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED, id, \
231 wxWebViewEventHandler(fn))
233 #endif // wxUSE_WEBVIEW
235 #endif // _WX_WEB_VIEW_H_