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 == wxDefaultCoord || size.y == wxDefaultCoord)
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 wxControl::Create(parent, m_windowID, pos, size, style , validator , name);
149 m_peer = new wxMacControl(this);
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(){
204 bool result = [(WebView*)m_webView goBack];
208 bool wxWebKitCtrl::GoForward(){
212 bool result = [(WebView*)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(){
240 if (CanGetPageSource()){
241 WebDataSource* dataSource = [[m_webView mainFrame] dataSource];
242 return wxStringWithNSString( [[dataSource representation] documentSource] );
245 return wxEmptyString;
248 void wxWebKitCtrl::SetPageSource(wxString& source, const wxString& baseUrl){
252 if (CanGetPageSource()){
253 [[m_webView mainFrame] loadHTMLString:(NSString*)wxNSStringWithWxString( source ) baseURL:[NSURL URLWithString:wxNSStringWithWxString( baseUrl )]];
258 void wxWebKitCtrl::OnSize(wxSizeEvent &event){
259 // This is a nasty hack because WebKit seems to lose its position when it is embedded
260 // in a control that is not itself the content view for a TLW.
261 // I put it in OnSize because these calcs are not perfect, and in fact are basically
262 // guesses based on reverse engineering, so it's best to give people the option of
263 // overriding OnSize with their own calcs if need be.
264 // I also left some test debugging print statements as a convenience if a(nother)
267 // Let's hope that Tiger fixes this mess...
273 bool isParentTopLevel = true;
275 wxWindow* parent = GetParent();
277 wxWindow* tlw = MacGetTopLevelWindow();
279 // This must be the case that Apple tested with, because well, in this one case
280 // we don't need to do anything! It just works. ;)
285 while(parent != NULL)
287 if ( parent->GetClassInfo()->GetClassName() == wxT("wxSplitterWindow") ){
288 //do nothing in this case
291 if (!parent->IsTopLevel()) {
292 //printf("Parent: %s\n", parent->GetClassInfo()->GetClassName());
294 plusx = parent->GetClientAreaOrigin().x + parent->GetPosition().x;
297 //printf("Parent: %s Added x: %d\n", parent->GetClassInfo()->GetClassName(), parent->GetClientAreaOrigin().x + parent->GetPosition().x);
301 plusy = parent->GetClientAreaOrigin().y + parent->GetPosition().y;
304 //printf("Parent: %s Added y: %d\n", parent->GetClassInfo()->GetClassName(), parent->GetClientAreaOrigin().y + parent->GetPosition().y);
307 //printf("Parent: %s Origin: %d Position:%d\n", parent->GetClassInfo()->GetClassName(), parent->GetClientAreaOrigin().y, parent->GetPosition().y);
313 x += parent->GetClientAreaOrigin().x;
314 // calculate the title bar height (26 pixels) into the top offset.
315 // This becomes important later when we must flip the y coordinate
316 // to convert to Cocoa's coordinate system.
317 y += parent->GetClientAreaOrigin().y += 26;
318 //printf("x: %d, y:%d\n", x, y);
320 //we still need to add the y, because we have to convert/flip coordinates for Cocoa
322 if ( parent->IsKindOf( CLASSINFO( wxNotebook ) ) ){
323 //Not sure why calcs are off in this one scenario...
325 //printf("x: %d, y:%d\n", x, y);
328 if (parent->IsKindOf( CLASSINFO( wxPanel ) ) ){
329 // Another strange case. Adding a wxPanel to the parent heirarchy
330 // causes wxWebKitCtrl's Cocoa y origin to be 4 pixels off
331 // for some reason, even if the panel has a position and origin of 0.
332 // This corrects that. Man, I wish I could debug Carbon/HIWebView!! ;)
337 parent = parent->GetParent();
340 // Tried using MacWindowToRootWindow both for wxWebKitCtrl and its parent,
341 // but coordinates were off by a significant amount.
342 // Am leaving the code here if anyone wants to play with it.
346 // GetParent()->MacWindowToRootWindow(&x2, &y2);
347 //printf("x = %d, y = %d\n", x, y);
348 //printf("x2 = %d, y2 = %d\n", x2, y2);
353 //flip the y coordinate to convert to Cocoa coordinates
354 //printf("tlw y: %d, y: %d\n", tlw->GetSize().y, (GetSize().y + y));
355 y = tlw->GetSize().y - ((GetSize().y) + y);
358 //printf("Added to bounds x=%d, y=%d\n", x, y);
359 NSRect bounds = [m_webView frame];
362 [m_webView setFrame:bounds];
364 //printf("Carbon position x=%d, y=%d\n", GetPosition().x, GetPosition().y);
370 void wxWebKitCtrl::MacVisibilityChanged(){
371 bool isHidden = !IsControlVisible( m_peer->GetControlRef());
375 [m_webView setHidden:isHidden];
378 //------------------------------------------------------------
379 // Listener interfaces
380 //------------------------------------------------------------
382 @implementation MyFrameLoadMonitor
384 - initWithWxWindow: (wxWindow*)inWindow
387 webKitWindow = inWindow; // non retained
391 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
393 if (frame == [sender mainFrame]){
394 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
395 wxWebKitStateChangedEvent thisEvent(webKitWindow);
396 thisEvent.SetState(wxWEBKIT_STATE_NEGOTIATING);
397 thisEvent.SetURL( wxStringWithNSString( url ) );
398 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
402 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
404 if (frame == [sender mainFrame]){
405 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
406 wxWebKitStateChangedEvent thisEvent(webKitWindow);
407 thisEvent.SetState(wxWEBKIT_STATE_TRANSFERRING);
408 thisEvent.SetURL( wxStringWithNSString( url ) );
409 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
413 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
415 if (frame == [sender mainFrame]){
416 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
417 wxWebKitStateChangedEvent thisEvent(webKitWindow);
418 thisEvent.SetState(wxWEBKIT_STATE_STOP);
419 thisEvent.SetURL( wxStringWithNSString( url ) );
420 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
424 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
426 if (frame == [sender mainFrame]){
427 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
428 wxWebKitStateChangedEvent thisEvent(webKitWindow);
429 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
430 thisEvent.SetURL( wxStringWithNSString( url ) );
431 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
435 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError*) error forFrame:(WebFrame *)frame
437 if (frame == [sender mainFrame]){
438 NSString *url = [[[[frame provisionalDataSource] request] URL] absoluteString];
439 wxWebKitStateChangedEvent thisEvent(webKitWindow);
440 thisEvent.SetState(wxWEBKIT_STATE_FAILED);
441 thisEvent.SetURL( wxStringWithNSString( url ) );
442 webKitWindow->GetEventHandler()->ProcessEvent( thisEvent );
446 - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame
448 if (frame == [sender mainFrame]){
449 webKitWindow->SetTitle(wxStringWithNSString( title ));
454 #endif //wxUSE_WEBKIT