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 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "webkit.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/cocoa/autorelease.h"
28 #include "wx/mac/uma.h"
29 #include <Carbon/Carbon.h>
30 #include <WebKit/HIWebView.h>
31 #include <WebKit/CarbonUtils.h>
34 #include "wx/html/webkit.h"
35 #include "wx/notebook.h"
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
42 #if !USE_SHARED_LIBRARY
43 IMPLEMENT_DYNAMIC_CLASS(wxWebKitCtrl, wxControl)
46 BEGIN_EVENT_TABLE(wxWebKitCtrl, wxControl)
47 EVT_SIZE(wxWebKitCtrl::OnSize)
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 IMPLEMENT_DYNAMIC_CLASS( wxWebKitStateChangedEvent, wxCommandEvent )
56 DEFINE_EVENT_TYPE( wxEVT_WEBKIT_STATE_CHANGED )
58 wxWebKitStateChangedEvent::wxWebKitStateChangedEvent( wxWindow* win )
60 SetEventType( wxEVT_WEBKIT_STATE_CHANGED);
61 SetEventObject( win );
65 //---------------------------------------------------------
66 // helper functions for NSString<->wxString conversion
67 //---------------------------------------------------------
69 inline wxString wxStringWithNSString(NSString *nsstring)
72 return wxString([nsstring UTF8String], wxConvUTF8);
74 return wxString([nsstring lossyCString]);
75 #endif // wxUSE_UNICODE
78 inline NSString* wxNSStringWithWxString(const wxString &wxstring)
81 return [NSString stringWithUTF8String: wxstring.mb_str(wxConvUTF8)];
83 return [NSString stringWithCString: wxstring.c_str() length:wxstring.Len()];
84 #endif // wxUSE_UNICODE
87 @interface MyFrameLoadMonitor : NSObject
89 wxWindow* webKitWindow;
92 - initWithWxWindow: (wxWindow*)inWindow;
96 // ----------------------------------------------------------------------------
97 // creation/destruction
98 // ----------------------------------------------------------------------------
100 bool wxWebKitCtrl::Create(wxWindow *parent,
102 const wxString& strURL,
104 const wxSize& size, long style,
105 const wxValidator& validator,
106 const wxString& name)
109 m_currentURL = strURL;
110 //m_pageTitle = _("Untitled Page");
112 //still needed for wxCocoa??
116 if (size.x == -1 || size.y == -1)
118 m_parent->GetClientSize(&width, &height);
119 sizeInstance.x = width;
120 sizeInstance.y = height;
124 sizeInstance.x = size.x;
125 sizeInstance.y = size.y;
128 // now create and attach WebKit view...
130 wxControl::Create(parent, m_windowID, pos, sizeInstance, style , validator , name);
131 SetSize(pos.x, pos.y, sizeInstance.x, sizeInstance.y);
133 wxTopLevelWindowCocoa *topWin = wxDynamicCast(this, wxTopLevelWindowCocoa);
134 NSWindow* nsWin = topWin->GetNSWindow();
136 rect.origin.x = pos.x;
137 rect.origin.y = pos.y;
138 rect.size.width = sizeInstance.x;
139 rect.size.height = sizeInstance.y;
140 m_webView = (WebView*)[[WebView alloc] initWithFrame:rect frameName:@"webkitFrame" groupName:@"webkitGroup"];
141 SetNSView(m_webView);
142 [m_cocoaNSView release];
144 if(m_parent) m_parent->CocoaAddChild(this);
145 SetInitialFrameRect(pos,sizeInstance);
147 m_macIsUserPane = false;
148 m_peer = new wxMacControl();
149 wxControl::Create(parent, m_windowID, pos, size, style , validator , name);
151 HIWebViewCreate( m_peer->GetControlRefAddr() );
153 m_webView = (WebView*) HIWebViewGetWebView( m_peer->GetControlRef() );
154 MacPostControlCreate(pos, size);
155 HIViewSetVisible( m_peer->GetControlRef(), true );
156 [m_webView setHidden:false];
159 // Register event listener interfaces
160 MyFrameLoadMonitor* myFrameLoadMonitor = [[MyFrameLoadMonitor alloc] initWithWxWindow: (wxWindow*)this];
161 [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:wxNSStringWithWxString(url)]]];
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 )]];
259 void wxWebKitCtrl::OnSize(wxSizeEvent &event){
260 // This is a nasty hack because WebKit does not seem to recognize a Tabs control as its parent.
261 // Therefore, coordinates must be relative to the left-hand side of the screen, rather than
262 // relative to the Tabs control.
263 wxWindow* parent = GetParent();
264 bool inNotebook = false;
267 while(parent != NULL)
269 // keep adding the position until we hit the notebook
271 x += parent->GetPosition().x;
272 y += parent->GetPosition().y;
275 if ( parent->GetClassInfo()->GetClassName() == wxT("wxSplitterWindow") ){
279 if( parent->IsKindOf( CLASSINFO( wxNotebook ) ) ){
282 parent = parent->GetParent();
286 NSRect bounds = [m_webView frame];
287 bounds.origin.x += x;
288 bounds.origin.y += y;
289 [m_webView setFrame:bounds];
296 void wxWebKitCtrl::MacVisibilityChanged(){
297 bool isHidden = !IsControlVisible( m_peer->GetControlRef());
298 [m_webView setHidden:isHidden];
301 //------------------------------------------------------------
302 // Listener interfaces
303 //------------------------------------------------------------
305 @implementation MyFrameLoadMonitor
307 - initWithWxWindow: (wxWindow*)inWindow
310 webKitWindow = inWindow; // non retained
314 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
316 if (frame == [sender mainFrame]){
317 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
318 wxWebKitStateChangedEvent thisEvent(webKitWindow);
319 thisEvent.SetState(wxWEBKIT_STATE_NEGOTIATING);
320 thisEvent.SetURL( wxStringWithNSString( url ) );
321 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
325 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
327 if (frame == [sender mainFrame]){
328 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
329 wxWebKitStateChangedEvent thisEvent(webKitWindow);
330 thisEvent.SetState(wxWEBKIT_STATE_TRANSFERRING);
331 thisEvent.SetURL( wxStringWithNSString( url ) );
332 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
336 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
338 if (frame == [sender mainFrame]){
339 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
340 wxWebKitStateChangedEvent thisEvent(webKitWindow);
341 thisEvent.SetState(wxWEBKIT_STATE_STOP);
342 thisEvent.SetURL( wxStringWithNSString( url ) );
343 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
347 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
349 if (frame == [sender mainFrame]){
350 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
351 wxWebKitStateChangedEvent thisEvent(webKitWindow);
352 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
353 thisEvent.SetURL( wxStringWithNSString( url ) );
354 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
358 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
360 if (frame == [sender mainFrame]){
361 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
362 wxWebKitStateChangedEvent thisEvent(webKitWindow);
363 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
364 thisEvent.SetURL( wxStringWithNSString( url ) );
365 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
369 - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame
371 if (frame == [sender mainFrame]){
372 webKitWindow->SetTitle(wxStringWithNSString( title ));
377 #endif //wxUSE_WEBKIT