]> git.saurik.com Git - wxWidgets.git/blame - src/osx/webview_webkit.mm
fix building with WXWIN_COMPATIBILITY_2_8 == 0
[wxWidgets.git] / src / osx / webview_webkit.mm
CommitLineData
61b98a2d 1/////////////////////////////////////////////////////////////////////////////
8290e3cd 2// Name: src/osx/webview_webkit.mm
0a6c8516 3// Purpose: wxWebViewWebKit - embeddable web kit control,
61b98a2d
SL
4// OS X implementation of web view component
5// Author: Jethro Grassie / Kevin Ollivier / Marianne Gagnon
6// Modified by:
7// Created: 2004-4-16
61b98a2d
SL
8// Copyright: (c) Jethro Grassie / Kevin Ollivier / Marianne Gagnon
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// http://developer.apple.com/mac/library/documentation/Cocoa/Reference/WebKit/Classes/WebView_Class/Reference/Reference.html
13
8290e3cd 14#include "wx/osx/webview_webkit.h"
61b98a2d 15
9d2f31db
SL
16#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
17 || defined(__WXOSX_CARBON__))
fdc255cf 18
61b98a2d
SL
19// For compilers that support precompilation, includes "wx.h".
20#include "wx/wxprec.h"
21
22#ifndef WX_PRECOMP
23 #include "wx/wx.h"
24#endif
25
61b98a2d 26#include "wx/osx/private.h"
fc351912 27#include "wx/cocoa/string.h"
5e3e62bc
SL
28#include "wx/hashmap.h"
29#include "wx/filesys.h"
61b98a2d
SL
30
31#include <WebKit/WebKit.h>
32#include <WebKit/HIWebView.h>
33#include <WebKit/CarbonUtils.h>
61b98a2d
SL
34
35#include <Foundation/NSURLError.h>
36
61b98a2d
SL
37#define DEBUG_WEBKIT_SIZING 0
38
39// ----------------------------------------------------------------------------
40// macros
41// ----------------------------------------------------------------------------
42
fdc255cf 43wxIMPLEMENT_DYNAMIC_CLASS(wxWebViewWebKit, wxWebView);
61b98a2d 44
0a6c8516 45BEGIN_EVENT_TABLE(wxWebViewWebKit, wxControl)
61b98a2d 46#if defined(__WXMAC__) && wxOSX_USE_CARBON
0a6c8516 47 EVT_SIZE(wxWebViewWebKit::OnSize)
61b98a2d
SL
48#endif
49END_EVENT_TABLE()
50
51#if defined(__WXOSX__) && wxOSX_USE_CARBON
52
53// ----------------------------------------------------------------------------
54// Carbon Events handlers
55// ----------------------------------------------------------------------------
56
57// prototype for function in src/osx/carbon/nonownedwnd.cpp
58void SetupMouseEvent( wxMouseEvent &wxevent , wxMacCarbonEvent &cEvent );
59
60static const EventTypeSpec eventList[] =
61{
62 //{ kEventClassControl, kEventControlTrack } ,
63 { kEventClassMouse, kEventMouseUp },
64 { kEventClassMouse, kEventMouseDown },
65 { kEventClassMouse, kEventMouseMoved },
66 { kEventClassMouse, kEventMouseDragged },
67
68 { kEventClassKeyboard, kEventRawKeyDown } ,
69 { kEventClassKeyboard, kEventRawKeyRepeat } ,
70 { kEventClassKeyboard, kEventRawKeyUp } ,
71 { kEventClassKeyboard, kEventRawKeyModifiersChanged } ,
72
73 { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
74 { kEventClassTextInput, kEventTextInputUpdateActiveInputArea } ,
75
76#if DEBUG_WEBKIT_SIZING == 1
77 { kEventClassControl, kEventControlBoundsChanged } ,
78#endif
79};
80
81// mix this in from window.cpp
82pascal OSStatus wxMacUnicodeTextEventHandler(EventHandlerCallRef handler,
83 EventRef event, void *data) ;
84
85// NOTE: This is mostly taken from KeyboardEventHandler in toplevel.cpp, but
86// that expects the data pointer is a top-level window, so I needed to change
87// that in this case. However, once 2.8 is out, we should factor out the common
88// logic among the two functions and merge them.
89static pascal OSStatus wxWebKitKeyEventHandler(EventHandlerCallRef handler,
90 EventRef event, void *data)
91{
92 OSStatus result = eventNotHandledErr ;
93 wxMacCarbonEvent cEvent( event ) ;
94
0a6c8516 95 wxWebViewWebKit* thisWindow = (wxWebViewWebKit*) data ;
61b98a2d
SL
96 wxWindow* focus = thisWindow ;
97
98 unsigned char charCode ;
99 wxChar uniChar[2] ;
100 uniChar[0] = 0;
101 uniChar[1] = 0;
102
103 UInt32 keyCode ;
104 UInt32 modifiers ;
61b98a2d
SL
105 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
106
107#if wxUSE_UNICODE
108 ByteCount dataSize = 0 ;
109 if ( GetEventParameter(event, kEventParamKeyUnicodes, typeUnicodeText,
110 NULL, 0 , &dataSize, NULL ) == noErr)
111 {
112 UniChar buf[2] ;
113 int numChars = dataSize / sizeof( UniChar) + 1;
114
115 UniChar* charBuf = buf ;
116
117 if ( numChars * 2 > 4 )
118 charBuf = new UniChar[ numChars ] ;
119 GetEventParameter(event, kEventParamKeyUnicodes, typeUnicodeText, NULL,
120 dataSize , NULL , charBuf) ;
121 charBuf[ numChars - 1 ] = 0;
122
123#if SIZEOF_WCHAR_T == 2
124 uniChar = charBuf[0] ;
125#else
126 wxMBConvUTF16 converter ;
127 converter.MB2WC( uniChar , (const char*)charBuf , 2 ) ;
128#endif
129
130 if ( numChars * 2 > 4 )
131 delete[] charBuf ;
132 }
133#endif
134
135 GetEventParameter(event, kEventParamKeyMacCharCodes, typeChar, NULL,
784d9056 136 1, NULL, &charCode );
61b98a2d
SL
137 GetEventParameter(event, kEventParamKeyCode, typeUInt32, NULL,
138 sizeof(UInt32), NULL, &keyCode );
139 GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL,
140 sizeof(UInt32), NULL, &modifiers );
61b98a2d
SL
141
142 UInt32 message = (keyCode << 8) + charCode;
143 switch ( GetEventKind( event ) )
144 {
145 case kEventRawKeyRepeat :
146 case kEventRawKeyDown :
147 {
148 WXEVENTREF formerEvent = wxTheApp->MacGetCurrentEvent() ;
149 WXEVENTHANDLERCALLREF formerHandler =
150 wxTheApp->MacGetCurrentEventHandlerCallRef() ;
151
152 wxTheApp->MacSetCurrentEvent( event , handler ) ;
153 if ( /* focus && */ wxTheApp->MacSendKeyDownEvent(
2f7baaec 154 focus, message, modifiers, when, uniChar[0]))
61b98a2d
SL
155 {
156 result = noErr ;
157 }
158 wxTheApp->MacSetCurrentEvent( formerEvent , formerHandler ) ;
159 }
160 break ;
161
162 case kEventRawKeyUp :
163 if ( /* focus && */ wxTheApp->MacSendKeyUpEvent(
2f7baaec 164 focus , message , modifiers , when , uniChar[0] ) )
61b98a2d
SL
165 {
166 result = noErr ;
167 }
168 break ;
169
170 case kEventRawKeyModifiersChanged :
171 {
172 wxKeyEvent event(wxEVT_KEY_DOWN);
173
174 event.m_shiftDown = modifiers & shiftKey;
175 event.m_controlDown = modifiers & controlKey;
176 event.m_altDown = modifiers & optionKey;
177 event.m_metaDown = modifiers & cmdKey;
61b98a2d
SL
178
179#if wxUSE_UNICODE
180 event.m_uniChar = uniChar[0] ;
181#endif
182
183 event.SetTimestamp(when);
184 event.SetEventObject(focus);
185
186 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & controlKey )
187 {
188 event.m_keyCode = WXK_CONTROL ;
189 event.SetEventType( ( modifiers & controlKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
190 focus->GetEventHandler()->ProcessEvent( event ) ;
191 }
192 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & shiftKey )
193 {
194 event.m_keyCode = WXK_SHIFT ;
195 event.SetEventType( ( modifiers & shiftKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
196 focus->GetEventHandler()->ProcessEvent( event ) ;
197 }
198 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & optionKey )
199 {
200 event.m_keyCode = WXK_ALT ;
201 event.SetEventType( ( modifiers & optionKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
202 focus->GetEventHandler()->ProcessEvent( event ) ;
203 }
204 if ( /* focus && */ (modifiers ^ wxApp::s_lastModifiers ) & cmdKey )
205 {
206 event.m_keyCode = WXK_COMMAND ;
207 event.SetEventType( ( modifiers & cmdKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
208 focus->GetEventHandler()->ProcessEvent( event ) ;
209 }
210
211 wxApp::s_lastModifiers = modifiers ;
212 }
213 break ;
214
215 default:
216 break;
217 }
218
219 return result ;
220}
221
0a6c8516 222static pascal OSStatus wxWebViewWebKitEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
61b98a2d
SL
223{
224 OSStatus result = eventNotHandledErr ;
225
226 wxMacCarbonEvent cEvent( event ) ;
227
228 ControlRef controlRef ;
0a6c8516 229 wxWebViewWebKit* thisWindow = (wxWebViewWebKit*) data ;
61b98a2d
SL
230 wxNonOwnedWindow* tlw = NULL;
231 if (thisWindow)
232 tlw = thisWindow->MacGetTopLevelWindow();
233
234 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
235
236 wxWindow* currentMouseWindow = thisWindow ;
237
238 if ( wxApp::s_captureWindow )
239 currentMouseWindow = wxApp::s_captureWindow;
240
241 switch ( GetEventClass( event ) )
242 {
243 case kEventClassKeyboard:
244 {
245 result = wxWebKitKeyEventHandler(handler, event, data);
246 break;
247 }
248
249 case kEventClassTextInput:
250 {
251 result = wxMacUnicodeTextEventHandler(handler, event, data);
252 break;
253 }
254
255 case kEventClassMouse:
256 {
257 switch ( GetEventKind( event ) )
258 {
259 case kEventMouseDragged :
260 case kEventMouseMoved :
261 case kEventMouseDown :
262 case kEventMouseUp :
263 {
264 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
265 SetupMouseEvent( wxevent , cEvent ) ;
266
267 currentMouseWindow->ScreenToClient( &wxevent.m_x , &wxevent.m_y ) ;
268 wxevent.SetEventObject( currentMouseWindow ) ;
269 wxevent.SetId( currentMouseWindow->GetId() ) ;
270
271 if ( currentMouseWindow->GetEventHandler()->ProcessEvent(wxevent) )
272 {
273 result = noErr;
274 }
275
276 break; // this should enable WebKit to fire mouse dragged and mouse up events...
277 }
278 default :
279 break ;
280 }
281 }
282 default:
283 break;
284 }
285
286 result = CallNextEventHandler(handler, event);
287 return result ;
288}
289
0a6c8516 290DEFINE_ONE_SHOT_HANDLER_GETTER( wxWebViewWebKitEventHandler )
61b98a2d
SL
291
292#endif
293
d2e66707 294@interface WebViewLoadDelegate : NSObject
61b98a2d 295{
0a6c8516 296 wxWebViewWebKit* webKitWindow;
61b98a2d
SL
297}
298
0a6c8516 299- initWithWxWindow: (wxWebViewWebKit*)inWindow;
61b98a2d
SL
300
301@end
302
d2e66707 303@interface WebViewPolicyDelegate : NSObject
61b98a2d 304{
0a6c8516 305 wxWebViewWebKit* webKitWindow;
61b98a2d
SL
306}
307
0a6c8516 308- initWithWxWindow: (wxWebViewWebKit*)inWindow;
61b98a2d
SL
309
310@end
311
a1534b36
RD
312@interface WebViewUIDelegate : NSObject
313{
314 wxWebViewWebKit* webKitWindow;
315}
316
317- initWithWxWindow: (wxWebViewWebKit*)inWindow;
318
319@end
320
7d8d6163
SL
321//We use a hash to map scheme names to wxWebViewHandler
322WX_DECLARE_STRING_HASH_MAP(wxSharedPtr<wxWebViewHandler>, wxStringToWebHandlerMap);
5e3e62bc
SL
323
324static wxStringToWebHandlerMap g_stringHandlerMap;
325
326@interface WebViewCustomProtocol : NSURLProtocol
327{
328}
329@end
330
61b98a2d
SL
331// ----------------------------------------------------------------------------
332// creation/destruction
333// ----------------------------------------------------------------------------
334
0a6c8516 335bool wxWebViewWebKit::Create(wxWindow *parent,
61b98a2d
SL
336 wxWindowID winID,
337 const wxString& strURL,
338 const wxPoint& pos,
339 const wxSize& size, long style,
340 const wxString& name)
341{
342 m_busy = false;
61b98a2d 343
b404a8f3 344 DontCreatePeer();
61b98a2d
SL
345 wxControl::Create(parent, winID, pos, size, style, wxDefaultValidator, name);
346
347#if wxOSX_USE_CARBON
2e140660 348 wxMacControl* peer = new wxMacControl(this);
61b98a2d 349 WebInitForCarbon();
2e140660 350 HIWebViewCreate( peer->GetControlRefAddr() );
61b98a2d 351
2e140660 352 m_webView = (WebView*) HIWebViewGetWebView( peer->GetControlRef() );
61b98a2d
SL
353
354#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
355 if ( UMAGetSystemVersion() >= 0x1030 )
2e140660 356 HIViewChangeFeatures( peer->GetControlRef() , kHIViewIsOpaque , 0 ) ;
61b98a2d 357#endif
2e140660 358 InstallControlEventHandler(peer->GetControlRef(),
0a6c8516 359 GetwxWebViewWebKitEventHandlerUPP(),
61b98a2d
SL
360 GetEventTypeCount(eventList), eventList, this,
361 (EventHandlerRef *)&m_webKitCtrlEventHandler);
2e140660 362 SetPeer(peer);
61b98a2d
SL
363#else
364 NSRect r = wxOSXGetFrameForControl( this, pos , size ) ;
365 m_webView = [[WebView alloc] initWithFrame:r
366 frameName:@"webkitFrame"
367 groupName:@"webkitGroup"];
b404a8f3 368 SetPeer(new wxWidgetCocoaImpl( this, m_webView ));
61b98a2d
SL
369#endif
370
61b98a2d
SL
371 MacPostControlCreate(pos, size);
372
373#if wxOSX_USE_CARBON
2e140660 374 HIViewSetVisible( GetPeer()->GetControlRef(), true );
61b98a2d
SL
375#endif
376 [m_webView setHidden:false];
377
ca897b51 378
61b98a2d
SL
379
380 // Register event listener interfaces
d2e66707 381 WebViewLoadDelegate* loadDelegate =
abd474ea 382 [[WebViewLoadDelegate alloc] initWithWxWindow: this];
61b98a2d 383
d2e66707 384 [m_webView setFrameLoadDelegate:loadDelegate];
61b98a2d
SL
385
386 // this is used to veto page loads, etc.
d2e66707
SL
387 WebViewPolicyDelegate* policyDelegate =
388 [[WebViewPolicyDelegate alloc] initWithWxWindow: this];
61b98a2d 389
d2e66707 390 [m_webView setPolicyDelegate:policyDelegate];
61b98a2d 391
a1534b36
RD
392 WebViewUIDelegate* uiDelegate =
393 [[WebViewUIDelegate alloc] initWithWxWindow: this];
394
395 [m_webView setUIDelegate:uiDelegate];
396
5e3e62bc
SL
397 //Register our own class for custom scheme handling
398 [NSURLProtocol registerClass:[WebViewCustomProtocol class]];
399
4d0dddc7 400 LoadURL(strURL);
61b98a2d
SL
401 return true;
402}
403
0a6c8516 404wxWebViewWebKit::~wxWebViewWebKit()
61b98a2d 405{
d2e66707
SL
406 WebViewLoadDelegate* loadDelegate = [m_webView frameLoadDelegate];
407 WebViewPolicyDelegate* policyDelegate = [m_webView policyDelegate];
a1534b36 408 WebViewUIDelegate* uiDelegate = [m_webView UIDelegate];
61b98a2d
SL
409 [m_webView setFrameLoadDelegate: nil];
410 [m_webView setPolicyDelegate: nil];
a1534b36 411 [m_webView setUIDelegate: nil];
61b98a2d 412
d2e66707
SL
413 if (loadDelegate)
414 [loadDelegate release];
61b98a2d 415
d2e66707
SL
416 if (policyDelegate)
417 [policyDelegate release];
a1534b36
RD
418
419 if (uiDelegate)
420 [uiDelegate release];
61b98a2d
SL
421}
422
423// ----------------------------------------------------------------------------
424// public methods
425// ----------------------------------------------------------------------------
426
e669ddde 427bool wxWebViewWebKit::CanGoBack() const
61b98a2d
SL
428{
429 if ( !m_webView )
430 return false;
431
432 return [m_webView canGoBack];
433}
434
e669ddde 435bool wxWebViewWebKit::CanGoForward() const
61b98a2d
SL
436{
437 if ( !m_webView )
438 return false;
439
440 return [m_webView canGoForward];
441}
442
0a6c8516 443void wxWebViewWebKit::GoBack()
61b98a2d
SL
444{
445 if ( !m_webView )
446 return;
447
1680c356 448 [(WebView*)m_webView goBack];
61b98a2d
SL
449}
450
0a6c8516 451void wxWebViewWebKit::GoForward()
61b98a2d
SL
452{
453 if ( !m_webView )
454 return;
455
1680c356 456 [(WebView*)m_webView goForward];
61b98a2d
SL
457}
458
0a6c8516 459void wxWebViewWebKit::Reload(wxWebViewReloadFlags flags)
61b98a2d
SL
460{
461 if ( !m_webView )
462 return;
463
236cff73 464 if (flags & wxWEBVIEW_RELOAD_NO_CACHE)
61b98a2d
SL
465 {
466 // TODO: test this indeed bypasses the cache
467 [[m_webView preferences] setUsesPageCache:NO];
468 [[m_webView mainFrame] reload];
469 [[m_webView preferences] setUsesPageCache:YES];
470 }
471 else
472 {
473 [[m_webView mainFrame] reload];
474 }
475}
476
0a6c8516 477void wxWebViewWebKit::Stop()
61b98a2d
SL
478{
479 if ( !m_webView )
480 return;
481
482 [[m_webView mainFrame] stopLoading];
483}
484
e669ddde 485bool wxWebViewWebKit::CanGetPageSource() const
61b98a2d
SL
486{
487 if ( !m_webView )
488 return false;
489
490 WebDataSource* dataSource = [[m_webView mainFrame] dataSource];
491 return ( [[dataSource representation] canProvideDocumentSource] );
492}
493
e669ddde 494wxString wxWebViewWebKit::GetPageSource() const
61b98a2d
SL
495{
496
497 if (CanGetPageSource())
498 {
499 WebDataSource* dataSource = [[m_webView mainFrame] dataSource];
500 wxASSERT (dataSource != nil);
501
502 id<WebDocumentRepresentation> representation = [dataSource representation];
503 wxASSERT (representation != nil);
504
505 NSString* source = [representation documentSource];
506 if (source == nil)
507 {
508 return wxEmptyString;
509 }
510
511 return wxStringWithNSString( source );
512 }
513
514 return wxEmptyString;
515}
516
e669ddde 517bool wxWebViewWebKit::CanIncreaseTextSize() const
61b98a2d
SL
518{
519 if ( !m_webView )
520 return false;
521
522 if ([m_webView canMakeTextLarger])
523 return true;
524 else
525 return false;
526}
527
0a6c8516 528void wxWebViewWebKit::IncreaseTextSize()
61b98a2d
SL
529{
530 if ( !m_webView )
531 return;
532
533 if (CanIncreaseTextSize())
534 [m_webView makeTextLarger:(WebView*)m_webView];
535}
536
e669ddde 537bool wxWebViewWebKit::CanDecreaseTextSize() const
61b98a2d
SL
538{
539 if ( !m_webView )
540 return false;
541
542 if ([m_webView canMakeTextSmaller])
543 return true;
544 else
545 return false;
546}
547
0a6c8516 548void wxWebViewWebKit::DecreaseTextSize()
61b98a2d
SL
549{
550 if ( !m_webView )
551 return;
552
553 if (CanDecreaseTextSize())
554 [m_webView makeTextSmaller:(WebView*)m_webView];
555}
556
0a6c8516 557void wxWebViewWebKit::Print()
61b98a2d
SL
558{
559
560 // TODO: allow specifying the "show prompt" parameter in Print() ?
561 bool showPrompt = true;
562
563 if ( !m_webView )
564 return;
565
566 id view = [[[m_webView mainFrame] frameView] documentView];
567 NSPrintOperation *op = [NSPrintOperation printOperationWithView:view
568 printInfo: [NSPrintInfo sharedPrintInfo]];
569 if (showPrompt)
570 {
571 [op setShowsPrintPanel: showPrompt];
572 // in my tests, the progress bar always freezes and it stops the whole
34326da7 573 // print operation. do not turn this to true unless there is a
61b98a2d
SL
574 // workaround for the bug.
575 [op setShowsProgressPanel: false];
576 }
577 // Print it.
578 [op runOperation];
579}
580
c7cbe308 581void wxWebViewWebKit::SetEditable(bool enable)
61b98a2d
SL
582{
583 if ( !m_webView )
584 return;
585
586 [m_webView setEditable:enable ];
587}
588
e669ddde 589bool wxWebViewWebKit::IsEditable() const
61b98a2d
SL
590{
591 if ( !m_webView )
592 return false;
593
594 return [m_webView isEditable];
595}
596
0a6c8516 597void wxWebViewWebKit::SetZoomType(wxWebViewZoomType zoomType)
61b98a2d
SL
598{
599 // there is only one supported zoom type at the moment so this setter
600 // does nothing beyond checking sanity
236cff73 601 wxASSERT(zoomType == wxWEBVIEW_ZOOM_TYPE_TEXT);
61b98a2d
SL
602}
603
0a6c8516 604wxWebViewZoomType wxWebViewWebKit::GetZoomType() const
61b98a2d
SL
605{
606 // for now that's the only one that is supported
607 // FIXME: does the default zoom type change depending on webkit versions? :S
608 // Then this will be wrong
236cff73 609 return wxWEBVIEW_ZOOM_TYPE_TEXT;
61b98a2d
SL
610}
611
0a6c8516 612bool wxWebViewWebKit::CanSetZoomType(wxWebViewZoomType type) const
61b98a2d
SL
613{
614 switch (type)
615 {
616 // for now that's the only one that is supported
617 // TODO: I know recent versions of webkit support layout zoom too,
618 // check if we can support it
236cff73 619 case wxWEBVIEW_ZOOM_TYPE_TEXT:
61b98a2d
SL
620 return true;
621
622 default:
623 return false;
624 }
625}
626
0a6c8516 627int wxWebViewWebKit::GetScrollPos()
61b98a2d
SL
628{
629 id result = [[m_webView windowScriptObject]
630 evaluateWebScript:@"document.body.scrollTop"];
631 return [result intValue];
632}
633
0a6c8516 634void wxWebViewWebKit::SetScrollPos(int pos)
61b98a2d
SL
635{
636 if ( !m_webView )
637 return;
638
639 wxString javascript;
640 javascript.Printf(wxT("document.body.scrollTop = %d;"), pos);
641 [[m_webView windowScriptObject] evaluateWebScript:
642 (NSString*)wxNSStringWithWxString( javascript )];
643}
644
e669ddde 645wxString wxWebViewWebKit::GetSelectedText() const
61b98a2d 646{
54889dae
VZ
647 DOMRange* dr = [m_webView selectedDOMRange];
648 if ( !dr )
649 return wxString();
61b98a2d 650
54889dae 651 return wxStringWithNSString([dr toString]);
61b98a2d
SL
652}
653
c9ccc09c 654void wxWebViewWebKit::RunScript(const wxString& javascript)
61b98a2d
SL
655{
656 if ( !m_webView )
b132a83b 657 return;
61b98a2d 658
c9ccc09c 659 [[m_webView windowScriptObject] evaluateWebScript:
61b98a2d 660 (NSString*)wxNSStringWithWxString( javascript )];
61b98a2d
SL
661}
662
0a6c8516 663void wxWebViewWebKit::OnSize(wxSizeEvent &event)
61b98a2d 664{
06d14de2 665#if defined(__WXMAC__) && wxOSX_USE_CARBON
61b98a2d
SL
666 // This is a nasty hack because WebKit seems to lose its position when it is
667 // embedded in a control that is not itself the content view for a TLW.
668 // I put it in OnSize because these calcs are not perfect, and in fact are
669 // basically guesses based on reverse engineering, so it's best to give
670 // people the option of overriding OnSize with their own calcs if need be.
671 // I also left some test debugging print statements as a convenience if
672 // a(nother) problem crops up.
673
674 wxWindow* tlw = MacGetTopLevelWindow();
675
676 NSRect frame = [(WebView*)m_webView frame];
677 NSRect bounds = [(WebView*)m_webView bounds];
678
679#if DEBUG_WEBKIT_SIZING
680 fprintf(stderr,"Carbon window x=%d, y=%d, width=%d, height=%d\n",
681 GetPosition().x, GetPosition().y, GetSize().x, GetSize().y);
682 fprintf(stderr, "Cocoa window frame x=%G, y=%G, width=%G, height=%G\n",
683 frame.origin.x, frame.origin.y,
684 frame.size.width, frame.size.height);
685 fprintf(stderr, "Cocoa window bounds x=%G, y=%G, width=%G, height=%G\n",
686 bounds.origin.x, bounds.origin.y,
687 bounds.size.width, bounds.size.height);
688#endif
689
690 // This must be the case that Apple tested with, because well, in this one case
691 // we don't need to do anything! It just works. ;)
692 if (GetParent() == tlw) return;
693
694 // since we no longer use parent coordinates, we always want 0,0.
695 int x = 0;
696 int y = 0;
697
698 HIRect rect;
699 rect.origin.x = x;
700 rect.origin.y = y;
701
702#if DEBUG_WEBKIT_SIZING
703 printf("Before conversion, origin is: x = %d, y = %d\n", x, y);
704#endif
705
706 // NB: In most cases, when calling HIViewConvertRect, what people want is to
707 // use GetRootControl(), and this tripped me up at first. But in fact, what
708 // we want is the root view, because we need to make the y origin relative
709 // to the very top of the window, not its contents, since we later flip
710 // the y coordinate for Cocoa.
7d35d3ed 711 HIViewConvertRect (&rect, GetPeer()->GetControlRef(),
61b98a2d
SL
712 HIViewGetRoot(
713 (WindowRef) MacGetTopLevelWindowRef()
714 ));
715
716 x = (int)rect.origin.x;
717 y = (int)rect.origin.y;
718
719#if DEBUG_WEBKIT_SIZING
720 printf("Moving Cocoa frame origin to: x = %d, y = %d\n", x, y);
721#endif
722
723 if (tlw){
724 //flip the y coordinate to convert to Cocoa coordinates
725 y = tlw->GetSize().y - ((GetSize().y) + y);
726 }
727
728#if DEBUG_WEBKIT_SIZING
729 printf("y = %d after flipping value\n", y);
730#endif
731
732 frame.origin.x = x;
733 frame.origin.y = y;
734 [(WebView*)m_webView setFrame:frame];
735
736 if (IsShown())
737 [(WebView*)m_webView display];
738 event.Skip();
739#endif
740}
741
0a6c8516 742void wxWebViewWebKit::MacVisibilityChanged(){
61b98a2d 743#if defined(__WXMAC__) && wxOSX_USE_CARBON
2e140660 744 bool isHidden = !IsControlVisible( GetPeer()->GetControlRef());
61b98a2d
SL
745 if (!isHidden)
746 [(WebView*)m_webView display];
747
748 [m_webView setHidden:isHidden];
749#endif
750}
751
4d0dddc7 752void wxWebViewWebKit::LoadURL(const wxString& url)
61b98a2d 753{
895e112c
SL
754 [[m_webView mainFrame] loadRequest:[NSURLRequest requestWithURL:
755 [NSURL URLWithString:wxNSStringWithWxString(url)]]];
61b98a2d
SL
756}
757
e669ddde 758wxString wxWebViewWebKit::GetCurrentURL() const
61b98a2d
SL
759{
760 return wxStringWithNSString([m_webView mainFrameURL]);
761}
762
e669ddde 763wxString wxWebViewWebKit::GetCurrentTitle() const
61b98a2d 764{
1f0acb43 765 return wxStringWithNSString([m_webView mainFrameTitle]);
61b98a2d
SL
766}
767
e669ddde 768float wxWebViewWebKit::GetWebkitZoom() const
61b98a2d
SL
769{
770 return [m_webView textSizeMultiplier];
771}
772
0a6c8516 773void wxWebViewWebKit::SetWebkitZoom(float zoom)
61b98a2d
SL
774{
775 [m_webView setTextSizeMultiplier:zoom];
776}
777
e669ddde 778wxWebViewZoom wxWebViewWebKit::GetZoom() const
61b98a2d
SL
779{
780 float zoom = GetWebkitZoom();
781
782 // arbitrary way to map float zoom to our common zoom enum
783 if (zoom <= 0.55)
784 {
236cff73 785 return wxWEBVIEW_ZOOM_TINY;
61b98a2d
SL
786 }
787 else if (zoom > 0.55 && zoom <= 0.85)
788 {
236cff73 789 return wxWEBVIEW_ZOOM_SMALL;
61b98a2d
SL
790 }
791 else if (zoom > 0.85 && zoom <= 1.15)
792 {
236cff73 793 return wxWEBVIEW_ZOOM_MEDIUM;
61b98a2d
SL
794 }
795 else if (zoom > 1.15 && zoom <= 1.45)
796 {
236cff73 797 return wxWEBVIEW_ZOOM_LARGE;
61b98a2d
SL
798 }
799 else if (zoom > 1.45)
800 {
236cff73 801 return wxWEBVIEW_ZOOM_LARGEST;
61b98a2d
SL
802 }
803
804 // to shut up compilers, this can never be reached logically
805 wxASSERT(false);
236cff73 806 return wxWEBVIEW_ZOOM_MEDIUM;
61b98a2d
SL
807}
808
0a6c8516 809void wxWebViewWebKit::SetZoom(wxWebViewZoom zoom)
61b98a2d
SL
810{
811 // arbitrary way to map our common zoom enum to float zoom
812 switch (zoom)
813 {
236cff73 814 case wxWEBVIEW_ZOOM_TINY:
61b98a2d
SL
815 SetWebkitZoom(0.4f);
816 break;
817
236cff73 818 case wxWEBVIEW_ZOOM_SMALL:
61b98a2d
SL
819 SetWebkitZoom(0.7f);
820 break;
821
236cff73 822 case wxWEBVIEW_ZOOM_MEDIUM:
61b98a2d
SL
823 SetWebkitZoom(1.0f);
824 break;
825
236cff73 826 case wxWEBVIEW_ZOOM_LARGE:
61b98a2d
SL
827 SetWebkitZoom(1.3);
828 break;
829
236cff73 830 case wxWEBVIEW_ZOOM_LARGEST:
61b98a2d
SL
831 SetWebkitZoom(1.6);
832 break;
833
834 default:
835 wxASSERT(false);
836 }
837
838}
839
a977376a 840void wxWebViewWebKit::DoSetPage(const wxString& src, const wxString& baseUrl)
61b98a2d
SL
841{
842 if ( !m_webView )
843 return;
844
845 [[m_webView mainFrame] loadHTMLString:(NSString*)wxNSStringWithWxString(src)
846 baseURL:[NSURL URLWithString:
847 wxNSStringWithWxString( baseUrl )]];
848}
849
028894b4
SL
850void wxWebViewWebKit::Cut()
851{
852 if ( !m_webView )
853 return;
854
b132a83b 855 [(WebView*)m_webView cut:m_webView];
028894b4
SL
856}
857
858void wxWebViewWebKit::Copy()
859{
860 if ( !m_webView )
861 return;
862
b132a83b 863 [(WebView*)m_webView copy:m_webView];
028894b4
SL
864}
865
866void wxWebViewWebKit::Paste()
867{
868 if ( !m_webView )
869 return;
870
b132a83b 871 [(WebView*)m_webView paste:m_webView];
028894b4
SL
872}
873
63a65070
SL
874void wxWebViewWebKit::DeleteSelection()
875{
876 if ( !m_webView )
877 return;
878
879 [(WebView*)m_webView deleteSelection];
880}
881
e669ddde 882bool wxWebViewWebKit::HasSelection() const
7bd30a12
SL
883{
884 DOMRange* range = [m_webView selectedDOMRange];
885 if(!range)
886 {
887 return false;
888 }
889 else
890 {
891 return true;
892 }
893}
894
ef53bf2a
SL
895void wxWebViewWebKit::ClearSelection()
896{
897 //We use javascript as selection isn't exposed at the moment in webkit
898 RunScript("window.getSelection().removeAllRanges();");
899}
900
835165d5
SL
901void wxWebViewWebKit::SelectAll()
902{
903 RunScript("window.getSelection().selectAllChildren(document.body);");
904}
905
e669ddde 906wxString wxWebViewWebKit::GetSelectedSource() const
94ec73c7 907{
75f9a954
VZ
908 DOMRange* dr = [m_webView selectedDOMRange];
909 if ( !dr )
910 return wxString();
911
912 return wxStringWithNSString([dr markupString]);
94ec73c7
SL
913}
914
e669ddde 915wxString wxWebViewWebKit::GetPageText() const
c6ea1fda 916{
ae4adc3d
SL
917 NSString *result = [m_webView stringByEvaluatingJavaScriptFromString:
918 @"document.body.textContent"];
919 return wxStringWithNSString(result);
c6ea1fda
SL
920}
921
8ba4faba
SL
922void wxWebViewWebKit::EnableHistory(bool enable)
923{
924 if ( !m_webView )
925 return;
7bd30a12 926
8ba4faba
SL
927 [m_webView setMaintainsBackForwardList:enable];
928}
929
7c36630b
SL
930void wxWebViewWebKit::ClearHistory()
931{
6a504e88
SL
932 [m_webView setMaintainsBackForwardList:NO];
933 [m_webView setMaintainsBackForwardList:YES];
7c36630b
SL
934}
935
c13d6ac1 936wxVector<wxSharedPtr<wxWebViewHistoryItem> > wxWebViewWebKit::GetBackwardHistory()
515fd027 937{
c13d6ac1 938 wxVector<wxSharedPtr<wxWebViewHistoryItem> > backhist;
515fd027
SL
939 WebBackForwardList* history = [m_webView backForwardList];
940 int count = [history backListCount];
941 for(int i = -count; i < 0; i++)
942 {
943 WebHistoryItem* item = [history itemAtIndex:i];
944 wxString url = wxStringWithNSString([item URLString]);
945 wxString title = wxStringWithNSString([item title]);
c13d6ac1 946 wxWebViewHistoryItem* wxitem = new wxWebViewHistoryItem(url, title);
515fd027 947 wxitem->m_histItem = item;
c13d6ac1 948 wxSharedPtr<wxWebViewHistoryItem> itemptr(wxitem);
515fd027
SL
949 backhist.push_back(itemptr);
950 }
951 return backhist;
952}
953
c13d6ac1 954wxVector<wxSharedPtr<wxWebViewHistoryItem> > wxWebViewWebKit::GetForwardHistory()
515fd027 955{
c13d6ac1 956 wxVector<wxSharedPtr<wxWebViewHistoryItem> > forwardhist;
515fd027
SL
957 WebBackForwardList* history = [m_webView backForwardList];
958 int count = [history forwardListCount];
959 for(int i = 1; i <= count; i++)
960 {
961 WebHistoryItem* item = [history itemAtIndex:i];
962 wxString url = wxStringWithNSString([item URLString]);
963 wxString title = wxStringWithNSString([item title]);
c13d6ac1 964 wxWebViewHistoryItem* wxitem = new wxWebViewHistoryItem(url, title);
515fd027 965 wxitem->m_histItem = item;
c13d6ac1 966 wxSharedPtr<wxWebViewHistoryItem> itemptr(wxitem);
515fd027
SL
967 forwardhist.push_back(itemptr);
968 }
969 return forwardhist;
970}
971
c13d6ac1 972void wxWebViewWebKit::LoadHistoryItem(wxSharedPtr<wxWebViewHistoryItem> item)
515fd027
SL
973{
974 [m_webView goToBackForwardItem:item->m_histItem];
975}
976
e669ddde 977bool wxWebViewWebKit::CanUndo() const
6368d965
SL
978{
979 return [[m_webView undoManager] canUndo];
980}
981
e669ddde 982bool wxWebViewWebKit::CanRedo() const
6368d965
SL
983{
984 return [[m_webView undoManager] canRedo];
985}
986
987void wxWebViewWebKit::Undo()
988{
989 [[m_webView undoManager] undo];
990}
991
992void wxWebViewWebKit::Redo()
993{
994 [[m_webView undoManager] redo];
995}
996
7d8d6163 997void wxWebViewWebKit::RegisterHandler(wxSharedPtr<wxWebViewHandler> handler)
5e3e62bc
SL
998{
999 g_stringHandlerMap[handler->GetName()] = handler;
1000}
1001
61b98a2d
SL
1002//------------------------------------------------------------
1003// Listener interfaces
1004//------------------------------------------------------------
1005
1006// NB: I'm still tracking this down, but it appears the Cocoa window
1007// still has these events fired on it while the Carbon control is being
1008// destroyed. Therefore, we must be careful to check both the existence
1009// of the Carbon control and the event handler before firing events.
1010
d2e66707 1011@implementation WebViewLoadDelegate
61b98a2d 1012
0a6c8516 1013- initWithWxWindow: (wxWebViewWebKit*)inWindow
61b98a2d
SL
1014{
1015 [super init];
1016 webKitWindow = inWindow; // non retained
1017 return self;
1018}
1019
1020- (void)webView:(WebView *)sender
1021 didStartProvisionalLoadForFrame:(WebFrame *)frame
1022{
c75400ea 1023 webKitWindow->m_busy = true;
61b98a2d
SL
1024}
1025
1026- (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
1027{
c75400ea 1028 webKitWindow->m_busy = true;
61b98a2d
SL
1029
1030 if (webKitWindow && frame == [sender mainFrame]){
1031 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
1032 wxString target = wxStringWithNSString([frame name]);
ce7fe42e 1033 wxWebViewEvent event(wxEVT_WEBVIEW_NAVIGATED,
3225a4b8
SL
1034 webKitWindow->GetId(),
1035 wxStringWithNSString( url ),
1036 target);
61b98a2d
SL
1037
1038 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1039 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1040 }
1041}
1042
1043- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
1044{
c75400ea 1045 webKitWindow->m_busy = false;
61b98a2d
SL
1046
1047 if (webKitWindow && frame == [sender mainFrame]){
1048 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
1049
1050 wxString target = wxStringWithNSString([frame name]);
ce7fe42e 1051 wxWebViewEvent event(wxEVT_WEBVIEW_LOADED,
3225a4b8
SL
1052 webKitWindow->GetId(),
1053 wxStringWithNSString( url ),
1054 target);
61b98a2d
SL
1055
1056 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1057 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1058 }
1059}
1060
04fa04d8 1061wxString nsErrorToWxHtmlError(NSError* error, wxWebViewNavigationError* out)
61b98a2d 1062{
236cff73 1063 *out = wxWEBVIEW_NAV_ERR_OTHER;
61b98a2d
SL
1064
1065 if ([[error domain] isEqualToString:NSURLErrorDomain])
1066 {
1067 switch ([error code])
1068 {
1069 case NSURLErrorCannotFindHost:
1070 case NSURLErrorFileDoesNotExist:
1071 case NSURLErrorRedirectToNonExistentLocation:
236cff73 1072 *out = wxWEBVIEW_NAV_ERR_NOT_FOUND;
61b98a2d
SL
1073 break;
1074
1075 case NSURLErrorResourceUnavailable:
1076 case NSURLErrorHTTPTooManyRedirects:
392594bb 1077#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
61b98a2d 1078 case NSURLErrorDataLengthExceedsMaximum:
392594bb 1079#endif
61b98a2d
SL
1080 case NSURLErrorBadURL:
1081 case NSURLErrorFileIsDirectory:
236cff73 1082 *out = wxWEBVIEW_NAV_ERR_REQUEST;
61b98a2d
SL
1083 break;
1084
1085 case NSURLErrorTimedOut:
1086 case NSURLErrorDNSLookupFailed:
1087 case NSURLErrorNetworkConnectionLost:
1088 case NSURLErrorCannotConnectToHost:
1089 case NSURLErrorNotConnectedToInternet:
1090 //case NSURLErrorInternationalRoamingOff:
1091 //case NSURLErrorCallIsActive:
1092 //case NSURLErrorDataNotAllowed:
236cff73 1093 *out = wxWEBVIEW_NAV_ERR_CONNECTION;
61b98a2d
SL
1094 break;
1095
1096 case NSURLErrorCancelled:
1097 case NSURLErrorUserCancelledAuthentication:
236cff73 1098 *out = wxWEBVIEW_NAV_ERR_USER_CANCELLED;
61b98a2d
SL
1099 break;
1100
34326da7 1101#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
61b98a2d
SL
1102 case NSURLErrorCannotDecodeRawData:
1103 case NSURLErrorCannotDecodeContentData:
61b98a2d 1104 case NSURLErrorCannotParseResponse:
74a8f67d
SL
1105#endif
1106 case NSURLErrorBadServerResponse:
236cff73 1107 *out = wxWEBVIEW_NAV_ERR_REQUEST;
61b98a2d
SL
1108 break;
1109
1110 case NSURLErrorUserAuthenticationRequired:
1111 case NSURLErrorSecureConnectionFailed:
74a8f67d 1112#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
61b98a2d 1113 case NSURLErrorClientCertificateRequired:
74a8f67d 1114#endif
236cff73 1115 *out = wxWEBVIEW_NAV_ERR_AUTH;
61b98a2d
SL
1116 break;
1117
1118 case NSURLErrorNoPermissionsToReadFile:
236cff73 1119 *out = wxWEBVIEW_NAV_ERR_SECURITY;
61b98a2d
SL
1120 break;
1121
1122 case NSURLErrorServerCertificateHasBadDate:
1123 case NSURLErrorServerCertificateUntrusted:
1124 case NSURLErrorServerCertificateHasUnknownRoot:
1125 case NSURLErrorServerCertificateNotYetValid:
1126 case NSURLErrorClientCertificateRejected:
236cff73 1127 *out = wxWEBVIEW_NAV_ERR_CERTIFICATE;
61b98a2d
SL
1128 break;
1129 }
1130 }
1131
1132 wxString message = wxStringWithNSString([error localizedDescription]);
1133 NSString* detail = [error localizedFailureReason];
1134 if (detail != NULL)
1135 {
1136 message = message + " (" + wxStringWithNSString(detail) + ")";
1137 }
1138 return message;
1139}
1140
1141- (void)webView:(WebView *)sender didFailLoadWithError:(NSError*) error
1142 forFrame:(WebFrame *)frame
1143{
c75400ea 1144 webKitWindow->m_busy = false;
61b98a2d
SL
1145
1146 if (webKitWindow && frame == [sender mainFrame]){
1147 NSString *url = [[[[frame dataSource] request] URL] absoluteString];
1148
04fa04d8 1149 wxWebViewNavigationError type;
61b98a2d 1150 wxString description = nsErrorToWxHtmlError(error, &type);
ce7fe42e 1151 wxWebViewEvent event(wxEVT_WEBVIEW_ERROR,
3225a4b8
SL
1152 webKitWindow->GetId(),
1153 wxStringWithNSString( url ),
1154 wxEmptyString);
1155 event.SetString(description);
1156 event.SetInt(type);
61b98a2d
SL
1157
1158 if (webKitWindow && webKitWindow->GetEventHandler())
1159 {
3225a4b8 1160 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1161 }
1162 }
1163}
1164
1165- (void)webView:(WebView *)sender
1166 didFailProvisionalLoadWithError:(NSError*)error
1167 forFrame:(WebFrame *)frame
1168{
c75400ea 1169 webKitWindow->m_busy = false;
61b98a2d
SL
1170
1171 if (webKitWindow && frame == [sender mainFrame]){
1172 NSString *url = [[[[frame provisionalDataSource] request] URL]
1173 absoluteString];
1174
04fa04d8 1175 wxWebViewNavigationError type;
61b98a2d 1176 wxString description = nsErrorToWxHtmlError(error, &type);
ce7fe42e 1177 wxWebViewEvent event(wxEVT_WEBVIEW_ERROR,
3225a4b8
SL
1178 webKitWindow->GetId(),
1179 wxStringWithNSString( url ),
1180 wxEmptyString);
1181 event.SetString(description);
1182 event.SetInt(type);
61b98a2d
SL
1183
1184 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1185 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1186 }
1187}
1188
1189- (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title
1190 forFrame:(WebFrame *)frame
1191{
153530af 1192 wxString target = wxStringWithNSString([frame name]);
ce7fe42e 1193 wxWebViewEvent event(wxEVT_WEBVIEW_TITLE_CHANGED,
3225a4b8
SL
1194 webKitWindow->GetId(),
1195 webKitWindow->GetCurrentURL(),
1196 target);
34326da7 1197
3225a4b8 1198 event.SetString(wxStringWithNSString(title));
153530af
SL
1199
1200 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1201 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1202}
1203@end
1204
d2e66707 1205@implementation WebViewPolicyDelegate
61b98a2d 1206
0a6c8516 1207- initWithWxWindow: (wxWebViewWebKit*)inWindow
61b98a2d
SL
1208{
1209 [super init];
1210 webKitWindow = inWindow; // non retained
1211 return self;
1212}
1213
1214- (void)webView:(WebView *)sender
1215 decidePolicyForNavigationAction:(NSDictionary *)actionInformation
1216 request:(NSURLRequest *)request
1217 frame:(WebFrame *)frame
1218 decisionListener:(id<WebPolicyDecisionListener>)listener
1219{
61b98a2d
SL
1220 wxUnusedVar(frame);
1221
c75400ea 1222 webKitWindow->m_busy = true;
61b98a2d
SL
1223 NSString *url = [[request URL] absoluteString];
1224 wxString target = wxStringWithNSString([frame name]);
ce7fe42e 1225 wxWebViewEvent event(wxEVT_WEBVIEW_NAVIGATING,
3225a4b8
SL
1226 webKitWindow->GetId(),
1227 wxStringWithNSString( url ), target);
61b98a2d
SL
1228
1229 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1230 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d 1231
3225a4b8 1232 if (!event.IsAllowed())
61b98a2d 1233 {
c75400ea 1234 webKitWindow->m_busy = false;
61b98a2d
SL
1235 [listener ignore];
1236 }
1237 else
1238 {
1239 [listener use];
1240 }
1241}
1242
34326da7 1243- (void)webView:(WebView *)sender
61b98a2d
SL
1244 decidePolicyForNewWindowAction:(NSDictionary *)actionInformation
1245 request:(NSURLRequest *)request
1246 newFrameName:(NSString *)frameName
1247 decisionListener:(id < WebPolicyDecisionListener >)listener
1248{
61b98a2d 1249 wxUnusedVar(actionInformation);
c75400ea 1250
b236f090 1251 NSString *url = [[request URL] absoluteString];
ce7fe42e 1252 wxWebViewEvent event(wxEVT_WEBVIEW_NEWWINDOW,
3225a4b8
SL
1253 webKitWindow->GetId(),
1254 wxStringWithNSString( url ), "");
b236f090
SL
1255
1256 if (webKitWindow && webKitWindow->GetEventHandler())
3225a4b8 1257 webKitWindow->GetEventHandler()->ProcessEvent(event);
61b98a2d
SL
1258
1259 [listener ignore];
1260}
1261@end
1262
5e3e62bc
SL
1263@implementation WebViewCustomProtocol
1264
1265+ (BOOL)canInitWithRequest:(NSURLRequest *)request
1266{
1267 NSString *scheme = [[request URL] scheme];
1268
1269 wxStringToWebHandlerMap::const_iterator it;
1270 for( it = g_stringHandlerMap.begin(); it != g_stringHandlerMap.end(); ++it )
1271 {
1272 if(it->first.IsSameAs(wxStringWithNSString(scheme)))
1273 {
1274 return YES;
1275 }
1276 }
1277
1278 return NO;
1279}
1280
1281+ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
1282{
7d8d6163 1283 //We don't do any processing here as the wxWebViewHandler classes do it
5e3e62bc
SL
1284 return request;
1285}
1286
1287- (void)startLoading
1288{
1289 NSURLRequest *request = [self request];
1290 NSString* path = [[request URL] absoluteString];
1291
c02aa4b3
VZ
1292 id<NSURLProtocolClient> client = [self client];
1293
5e3e62bc
SL
1294 wxString wxpath = wxStringWithNSString(path);
1295 wxString scheme = wxStringWithNSString([[request URL] scheme]);
1296 wxFSFile* file = g_stringHandlerMap[scheme]->GetFile(wxpath);
c02aa4b3
VZ
1297
1298 if (!file)
1299 {
1300 NSError *error = [[NSError alloc] initWithDomain:NSURLErrorDomain
1301 code:NSURLErrorFileDoesNotExist
1302 userInfo:nil];
1303
1304 [client URLProtocol:self didFailWithError:error];
1305
1306 return;
1307 }
1308
5e3e62bc
SL
1309 size_t length = file->GetStream()->GetLength();
1310
1311
1312 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[request URL]
1313 MIMEType:wxNSStringWithWxString(file->GetMimeType())
34326da7 1314 expectedContentLength:length
5e3e62bc 1315 textEncodingName:nil];
34326da7 1316
5e3e62bc
SL
1317 //Load the data, we malloc it so it is tidied up properly
1318 void* buffer = malloc(length);
1319 file->GetStream()->Read(buffer, length);
1320 NSData *data = [[NSData alloc] initWithBytesNoCopy:buffer length:length];
34326da7 1321
5e3e62bc 1322 //We do not support caching anything yet
34326da7 1323 [client URLProtocol:self didReceiveResponse:response
5e3e62bc
SL
1324 cacheStoragePolicy:NSURLCacheStorageNotAllowed];
1325
1326 //Set the data
1327 [client URLProtocol:self didLoadData:data];
1328
1329 //Notify that we have finished
1330 [client URLProtocolDidFinishLoading:self];
1331
1332 [response release];
1333}
1334
1335- (void)stopLoading
1336{
1337
1338}
1339
1340@end
1341
a1534b36
RD
1342
1343@implementation WebViewUIDelegate
1344
1345- initWithWxWindow: (wxWebViewWebKit*)inWindow
1346{
1347 [super init];
1348 webKitWindow = inWindow; // non retained
1349 return self;
1350}
1351
1352- (void)webView:(WebView *)sender printFrameView:(WebFrameView *)frameView
1353{
1354 wxUnusedVar(sender);
1355 wxUnusedVar(frameView);
1356
1357 webKitWindow->Print();
1358}
c420d57b
SL
1359
1360- (NSArray *)webView:(WebView *)sender contextMenuItemsForElement:(NSDictionary *)element
1361 defaultMenuItems:(NSArray *) defaultMenuItems
1362{
1363 if(webKitWindow->IsContextMenuEnabled())
1364 return defaultMenuItems;
1365 else
1366 return nil;
1367}
a1534b36
RD
1368@end
1369
9d2f31db 1370#endif //wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT