1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWebKitCtrl - embeddable web kit control
4 // Author: Jethro Grassie / Kevin Ollivier
8 // Copyright: (c) Jethro Grassie / Kevin Ollivier
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "wxWebKit.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #include "wx/cocoa/autorelease.h"
30 #include "wx/mac/uma.h"
31 #include <Carbon/Carbon.h>
32 #include <WebKit/HIWebView.h>
33 #include <WebKit/CarbonUtils.h>
36 #include "wx/html/webkit.h"
37 //#include "wx/html/wklisten.h"
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 #if !USE_SHARED_LIBRARY
45 IMPLEMENT_DYNAMIC_CLASS(wxWebKitCtrl, wxControl)
48 BEGIN_EVENT_TABLE(wxWebKitCtrl, wxControl)
49 //EVT_SIZE(wxWebKitCtrl::OnSize)
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 IMPLEMENT_DYNAMIC_CLASS( wxWebKitStateChangedEvent, wxCommandEvent )
58 DEFINE_EVENT_TYPE( wxEVT_WEBKIT_STATE_CHANGED )
60 wxWebKitStateChangedEvent::wxWebKitStateChangedEvent( wxWindow* win )
62 SetEventType( wxEVT_WEBKIT_STATE_CHANGED);
63 SetEventObject( win );
67 //---------------------------------------------------------
68 // helper functions for NSString<->wxString conversion
69 //---------------------------------------------------------
71 inline wxString wxStringWithNSString(NSString *nsstring)
74 return wxString([nsstring UTF8String], wxConvUTF8);
76 return wxString([nsstring lossyCString]);
77 #endif // wxUSE_UNICODE
80 inline NSString* wxNSStringWithWxString(const wxString &wxstring)
83 return [NSString stringWithUTF8String: wxstring.mb_str(wxConvUTF8)];
85 return [NSString stringWithCString: wxstring.c_str() length:wxstring.Len()];
86 #endif // wxUSE_UNICODE
89 @interface MyFrameLoadMonitor : NSObject
91 wxWindow* webKitWindow;
94 - initWithWxWindow: (wxWindow*)inWindow;
98 // ----------------------------------------------------------------------------
99 // creation/destruction
100 // ----------------------------------------------------------------------------
102 bool wxWebKitCtrl::Create(wxWindow *parent,
104 const wxString& strURL,
106 const wxSize& size, long style,
107 const wxValidator& validator,
108 const wxString& name)
111 m_currentURL = strURL;
114 //still needed for wxCocoa??
118 if (size.x == -1 || size.y == -1)
120 m_parent->GetClientSize(&width, &height);
121 sizeInstance.x = width;
122 sizeInstance.y = height;
126 sizeInstance.x = size.x;
127 sizeInstance.y = size.y;
130 // now create and attach WebKit view...
132 wxControl::Create(parent, m_windowID, pos, sizeInstance, style , validator , name);
133 SetSize(pos.x, pos.y, sizeInstance.x, sizeInstance.y);
135 wxTopLevelWindowCocoa *topWin = wxDynamicCast(this, wxTopLevelWindowCocoa);
136 NSWindow* nsWin = topWin->GetNSWindow();
138 rect.origin.x = pos.x;
139 rect.origin.y = pos.y;
140 rect.size.width = sizeInstance.x;
141 rect.size.height = sizeInstance.y;
142 m_webView = (WebView*)[[WebView alloc] initWithFrame:rect frameName:@"webkitFrame" groupName:@"webkitGroup"];
143 SetNSView(m_webView);
144 [m_cocoaNSView release];
146 if(m_parent) m_parent->CocoaAddChild(this);
147 SetInitialFrameRect(pos,sizeInstance);
149 m_macIsUserPane = false;
150 wxControl::Create(parent, m_windowID, pos, size, style , validator , name);
152 HIWebViewCreate( (HIViewRef*) &m_macControl );
153 MacPostControlCreate(pos, size);
155 HIViewSetVisible( (HIViewRef) m_macControl, true );
157 m_webView = (WebView*) HIWebViewGetWebView( (HIViewRef) m_macControl );
160 // Register event listener interfaces
161 MyFrameLoadMonitor* myFrameLoadMonitor = [[MyFrameLoadMonitor alloc] initWithWxWindow: (wxWindow*)this];
162 [m_webView setFrameLoadDelegate:myFrameLoadMonitor];
163 LoadURL(m_currentURL);
167 wxWebKitCtrl::~wxWebKitCtrl()
172 // ----------------------------------------------------------------------------
174 // ----------------------------------------------------------------------------
176 void wxWebKitCtrl::LoadURL(const wxString &url)
181 [[m_webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithCString:url.c_str()]]]];
186 bool wxWebKitCtrl::CanGoBack(){
190 return [m_webView canGoBack];
193 bool wxWebKitCtrl::CanGoForward(){
197 return [m_webView canGoForward];
200 bool wxWebKitCtrl::GoBack(){
208 bool wxWebKitCtrl::GoForward(){
212 [m_webView goForward];
216 void wxWebKitCtrl::Reload(){
220 [[m_webView mainFrame] reload];
223 void wxWebKitCtrl::Stop(){
227 [[m_webView mainFrame] stopLoading];
230 bool wxWebKitCtrl::CanGetPageSource(){
234 WebDataSource* dataSource = [[m_webView mainFrame] dataSource];
235 return ( [[dataSource representation] canProvideDocumentSource] );
238 wxString wxWebKitCtrl::GetPageSource(){
242 if (CanGetPageSource()){
243 WebDataSource* dataSource = [[m_webView mainFrame] dataSource];
244 return wxStringWithNSString( [[dataSource representation] documentSource] );
249 void wxWebKitCtrl::SetPageSource(wxString& source, const wxString& baseUrl){
253 if (CanGetPageSource()){
254 [[m_webView mainFrame] loadHTMLString:(NSString*)wxNSStringWithWxString( source ) baseURL:[NSURL URLWithString:wxNSStringWithWxString( baseUrl )]];
260 //------------------------------------------------------------
261 // Listener interfaces
262 //------------------------------------------------------------
264 @implementation MyFrameLoadMonitor
266 - initWithWxWindow: (wxWindow*)inWindow
269 webKitWindow = inWindow; // non retained
273 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
275 if (frame == [sender mainFrame]){
276 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
277 wxWebKitStateChangedEvent thisEvent(webKitWindow);
278 thisEvent.SetState(wxWEBKIT_STATE_NEGOTIATING);
279 thisEvent.SetURL( wxStringWithNSString( url ) );
280 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
284 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
286 if (frame == [sender mainFrame]){
287 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
288 wxWebKitStateChangedEvent thisEvent(webKitWindow);
289 thisEvent.SetState(wxWEBKIT_STATE_TRANSFERRING);
290 thisEvent.SetURL( wxStringWithNSString( url ) );
291 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
295 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
297 if (frame == [sender mainFrame]){
298 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
299 wxWebKitStateChangedEvent thisEvent(webKitWindow);
300 thisEvent.SetState(wxWEBKIT_STATE_STOP);
301 thisEvent.SetURL( wxStringWithNSString( url ) );
302 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
306 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
308 if (frame == [sender mainFrame]){
309 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
310 wxWebKitStateChangedEvent thisEvent(webKitWindow);
311 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
312 thisEvent.SetURL( wxStringWithNSString( url ) );
313 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
317 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
319 if (frame == [sender mainFrame]){
320 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
321 wxWebKitStateChangedEvent thisEvent(webKitWindow);
322 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
323 thisEvent.SetURL( wxStringWithNSString( url ) );
324 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
328 - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame
330 if (frame == [sender mainFrame]){
331 webKitWindow->SetTitle(wxStringWithNSString( title ));