1 2008-07-27 Kevin Watters <kevinwatters@gmail.com>
3 Reviewed by Sam Weinig.
5 Add tooltip support to the wx port.
7 https://bugs.webkit.org/show_bug.cgi?id=20173
9 * WebKitSupport/ChromeClientWx.cpp:
10 (WebCore::ChromeClientWx::setToolTip):
12 (wxWebView::OnMouseEvents): Use mouseMoved instead of handleMouseMoveEvent.
14 2008-07-21 Kevin Ollivier <kevino@theolliviers.com>
16 wx build fix. Fix pthread linkage under Linux.
20 2008-06-15 Darin Adler <darin@apple.com>
22 - give Frame object functions shorter names: scriptProxy() -> script(),
23 selectionController() -> selection(), animationController() -> animation()
25 * WebKitSupport/EditorClientWx.cpp:
26 (WebCore::EditorClientWx::handleKeyboardEvent):
28 (wxWebView::RunScript):
29 (wxWebView::OnSetFocus):
30 (wxWebView::OnKillFocus):
32 2008-06-15 Darin Adler <darin@apple.com>
34 - new names for a few key JavaScriptCore files
38 2008-06-14 Darin Adler <darin@apple.com>
40 Rubber stamped by Sam.
42 - new names for kjs_binding.h and kjs_proxy.h
46 2008-06-14 Darin Adler <darin@apple.com>
48 - try to fix wx build, again
51 (wxWebView::Create): Use create function instead of new.
53 2008-06-14 Darin Adler <darin@apple.com>
57 - more https://bugs.webkit.org/show_bug.cgi?id=17257
58 start ref counts at 1 instead of 0 for speed
60 * WebKitSupport/FrameLoaderClientWx.cpp:
61 (WebCore::FrameLoaderClientWx::createDocumentLoader): Use create function
64 2008-06-13 Darin Adler <darin@apple.com>
68 * WebKitSupport/FrameLoaderClientWx.h: Add missing argument.
70 2008-06-13 Darin Adler <darin@apple.com>
72 Reviewed by John Sullivan.
74 - updated for addition of FormState argument to action policy functions
76 * WebKitSupport/FrameLoaderClientWx.cpp:
77 (WebCore::FrameLoaderClientWx::dispatchDecidePolicyForNewWindowAction):
78 (WebCore::FrameLoaderClientWx::dispatchDecidePolicyForNavigationAction):
80 2008-06-10 Kevin Ollivier <kevino@theolliviers.com>
82 wx Linux build fix. Only use -undefined dynamic_lookup flag under Mac.
84 * bindings/python/wxwebkit-py.bkl:
86 2008-05-28 Robin Dunn <robin@alldunn.com>
88 Reviewed by Kevin Ollivier.
90 This patch adds a new wx event type and code to send it when a new title is set
91 by the page being loaded.
93 https://bugs.webkit.org/show_bug.cgi?id=19067
95 * WebKitSupport/FrameLoaderClientWx.cpp:
96 (WebCore::FrameLoaderClientWx::dispatchDidReceiveTitle):
98 (wxWebViewReceivedTitleEvent::wxWebViewReceivedTitleEvent):
100 * bindings/python/webview.i:
102 2008-05-28 Robin Dunn <robin@alldunn.com>
104 Reviewed by Kevin Ollivier.
106 This patch tweaks the wxWebView class to make it conform to normal wx patterns
107 for widget classes. It adds a default ctor and the Create method so it can use
108 the 2-phase create pattern, adds wxRTTI macros which is important for wxPython
109 and XRC, and fixes the LoadURL method to pass a wxString reference to save a
112 https://bugs.webkit.org/show_bug.cgi?id=19068
115 (wxWebView::wxWebView):
117 (wxWebView::LoadURL):
120 2008-05-27 Kevin Ollivier <kevino@theolliviers.com>
122 wx build fix. Accidently left a couple fixes out of the previous commit.
124 * presets/wxwebkit.bkl:
126 2008-05-16 Kevin Ollivier <kevino@theolliviers.com>
128 Reviewed by Darin Adler.
130 Rename wxWebFrame -> wxWebBrowserShell in preparation to introduce a WebFrame
131 counterpart in wx port. (Frame typically means 'top level window' in wx terms.)
133 https://bugs.webkit.org/show_bug.cgi?id=19041
135 * WebBrowserShell.cpp: Copied from WebKit/wx/WebFrame.cpp.
136 (wxWebBrowserShell::wxWebBrowserShell):
137 (wxWebBrowserShell::~wxWebBrowserShell):
138 (wxWebBrowserShell::ShowDebugMenu):
139 (wxWebBrowserShell::OnQuit):
140 (wxWebBrowserShell::OnAbout):
141 (wxWebBrowserShell::OnLoadFile):
142 (wxWebBrowserShell::OnLoadEvent):
143 (wxWebBrowserShell::OnBeforeLoad):
144 (wxWebBrowserShell::OnAddressBarEnter):
145 (wxWebBrowserShell::OnSearchCtrlEnter):
146 (wxWebBrowserShell::OnBack):
147 (wxWebBrowserShell::OnForward):
148 (wxWebBrowserShell::OnStop):
149 (wxWebBrowserShell::OnReload):
150 (wxWebBrowserShell::OnMakeTextLarger):
151 (wxWebBrowserShell::OnMakeTextSmaller):
152 (wxWebBrowserShell::OnGetSource):
153 (wxWebBrowserShell::OnSetSource):
154 (wxWebBrowserShell::OnBrowse):
155 (wxWebBrowserShell::OnEdit):
156 (wxWebBrowserShell::OnRunScript):
157 * WebBrowserShell.h: Copied from WebKit/wx/WebFrame.h.
158 * WebFrame.cpp: Removed.
159 * WebFrame.h: Removed.
160 * WebKitSupport/ChromeClientWx.cpp:
161 (WebCore::ChromeClientWx::createWindow):
162 * bindings/python/webview.i:
165 2008-05-20 Kevin Ollivier <kevino@theolliviers.com>
167 wx build fix. Update code after removal of Document::toString().
170 (wxWebView::GetPageSource):
172 2008-05-15 Kevin Ollivier <kevino@theolliviers.com>
174 wx build fix. Add rendering/style to includes dir.
176 * presets/wxwebkit.bkl:
178 2008-05-11 Kevin Ollivier <kevino@theolliviers.com>
180 Previous commit made bdash sad. Restore happiness state by fixing missed style issue.
182 * WebKitSupport/FrameLoaderClientWx.cpp:
183 (WebCore::FrameLoaderClientWx::transitionToCommittedForNewPage):
185 2008-05-11 Robin Dunn <robin@alldunn.com>
187 Reviewed by Kevin Ollivier.
189 Fix scrolling issues by implementing transitionToCommittedNewPage() so the scroll
190 positions are reset when a new page is loaded, and also maintained so that back
191 and next restore the scroll positions as well. This also simplifies the logic
192 for initializing and managing wxWebView.
194 https://bugs.webkit.org/show_bug.cgi?id=18992
196 * WebKitSupport/FrameLoaderClientWx.cpp:
197 (WebCore::FrameLoaderClientWx::setWebView):
198 (WebCore::FrameLoaderClientWx::dispatchDidHandleOnloadEvents):
199 (WebCore::FrameLoaderClientWx::dispatchDidStartProvisionalLoad):
200 (WebCore::FrameLoaderClientWx::dispatchDidReceiveTitle):
201 (WebCore::FrameLoaderClientWx::dispatchDidCommitLoad):
202 (WebCore::FrameLoaderClientWx::dispatchDidFinishDocumentLoad):
203 (WebCore::FrameLoaderClientWx::postProgressFinishedNotification):
204 (WebCore::FrameLoaderClientWx::dispatchDecidePolicyForNavigationAction):
205 (WebCore::FrameLoaderClientWx::createFrame):
206 (WebCore::FrameLoaderClientWx::transitionToCommittedForNewPage):
207 * WebKitSupport/FrameLoaderClientWx.h:
209 (wxWebView::wxWebView):
210 (wxWebView::~wxWebView):
211 (wxWebView::GetPageSource):
212 (wxWebView::GetInnerText):
213 (wxWebView::GetExternalRepresentation):
214 (wxWebView::OnPaint):
216 (wxWebView::OnMouseEvents):
217 (wxWebView::CanCopy):
219 (wxWebView::CanPaste):
220 (wxWebView::OnKeyEvents):
222 (WebViewPrivate::WebViewPrivate):
224 2008-05-04 Robin Dunn <robin@alldunn.com>
226 Reviewed by Kevin Ollivier.
228 Allow events to specify the ID of the particular wxWebView they are to be sent to.
230 https://bugs.webkit.org/show_bug.cgi?id=18659
233 (wxWebFrame::wxWebFrame):
235 (wxWebViewLoadEvent::wxWebViewLoadEvent):
236 (wxWebViewBeforeLoadEvent::wxWebViewBeforeLoadEvent):
237 (wxWebViewNewWindowEvent::wxWebViewNewWindowEvent):
238 (wxWebViewRightClickEvent::wxWebViewRightClickEvent):
239 (wxWebViewConsoleMessageEvent::wxWebViewConsoleMessageEvent):
241 * bindings/python/webview.i:
243 2008-04-27 Robin Dunn <robin@alldunn.com>
245 Reviewed by Kevin Ollivier.
247 Add methods to check if there is a previous/next page in the history. Also some
248 coding style cleanup.
250 https://bugs.webkit.org/show_bug.cgi?id=18757
254 (wxWebView::GoForward):
255 (wxWebView::CanGoBack):
256 (wxWebView::CanGoForward):
259 2008-04-24 Anders Carlsson <andersca@apple.com>
263 Change some String arguments to be const references instead.
265 * WebKitSupport/EditorClientWx.cpp:
266 (WebCore::EditorClientWx::shouldInsertText):
267 * WebKitSupport/EditorClientWx.h:
269 2008-04-23 Kevin Ollivier <kevino@theolliviers.com>
271 Reviewed by Alp Toker.
273 Typo fix to restore text entry.
275 * WebKitSupport/EditorClientWx.cpp:
276 (WebCore::EditorClientWx::handleKeyboardEvent):
278 2008-04-19 Kevin Ollivier <kevino@theolliviers.com>
280 wx build fix. renderer() -> contentRenderer()
283 (wxWebView::GetExternalRepresentation):
284 (wxWebView::OnPaint):
286 2008-04-18 Kevin Ollivier <kevino@theolliviers.com>
288 wx build fix. We need to use ENABLE_DOM_STORAGE now.
292 2008-04-05 Kevin Ollivier <kevino@theolliviers.com>
294 Rubber stamped by Mark Rowe.
296 Don't assume wxWebKit to be part of the wx package. This allows
297 us to run it from any directory on the PYTHONPATH rather than
298 having to copy files into the wxPython directory.
300 * bindings/python/webview.i:
302 2008-03-25 Brady Eidson <beidson@apple.com>
306 Remove newly obsolete FrameLoaderClient methods
308 * WebKitSupport/FrameLoaderClientWx.cpp:
309 * WebKitSupport/FrameLoaderClientWx.h:
311 2008-03-16 Kevin Ollivier <kevino@theolliviers.com>
313 wx build fix. Make sure we link png/jpeg libraries before
314 wx libraries to get the right symbols.
319 2008-03-16 Kevin Ollivier <kevino@theolliviers.com>
321 Rubber stamped by Darin.
323 Add set-webkit-configuration support for wx port, and centralize
324 build dir location setting.
326 http://bugs.webkit.org/show_bug.cgi?id=17790
328 * bindings/python/wxwebkit-py.bkl:
329 * presets/wxwebkit.bkl:
333 2008-03-12 David Hyatt <hyatt@apple.com>
335 Make the zoom factor a float and not a percent.
340 (wxWebView::IncreaseTextSize):
341 (wxWebView::DecreaseTextSize):
343 2008-03-03 Kevin Ollivier <kevino@theolliviers.com>
345 wx build fix after Frame::setZoomFactor API change.
348 (wxWebView::IncreaseTextSize):
349 (wxWebView::DecreaseTextSize):
351 2008-02-24 Darin Adler <darin@apple.com>
355 - remove separate client calls for "standard" and "reload' history
357 * WebKitSupport/FrameLoaderClientWx.cpp:
358 (WebCore::FrameLoaderClientWx::updateGlobalHistory):
359 * WebKitSupport/FrameLoaderClientWx.h:
361 2008-02-23 Kevin Ollivier <kevino@theolliviers.com>
363 Reviewed by Darin Adler.
365 Move text drawing into wxcode, as we need platform-dependent
366 APIs for drawing non-kerned text, which wx doesn't yet have.
367 (But hopefully will, once these APIs are fleshed out on all
370 http://bugs.webkit.org/show_bug.cgi?id=17396
373 We need to directly link against GDI+ on Windows since we now
374 directly call GDI+ APIs.
376 2008-02-14 Darin Adler <darin@apple.com>
378 * WebView.cpp: Removed use of DeprecatedString to keep this compiling.
380 2008-02-11 Kevin Ollivier <kevino@theolliviers.com>
382 Reviewed by Darin Adler.
384 A couple quick wx fixes.
386 http://bugs.webkit.org/show_bug.cgi?id=17321
389 (wxWebView::OnPaint):
390 Make sure wxGCDC has its paint origin set properly after
391 the move to wxWindow for scrolling.
392 * bindings/python/webview.i:
393 Update the wxPython bindings after event rename.
395 2008-02-10 Darin Adler <darin@apple.com>
399 - http://bugs.webkit.org/show_bug.cgi?id=17256
400 eliminate default ref. count of 0 in RefCounted class
402 * WebKitSupport/FrameLoaderClientWx.cpp:
403 (WebCore::FrameLoaderClientWx::FrameLoaderClientWx):
404 Set the count to 0 explicitly (one stray client I missed in my last pass).
406 2008-02-03 Kevin Ollivier <kevino@theolliviers.com>
408 Reviewed by Darin Adler.
410 Typo fix. Don't use the provisionalDocumentLoader() after the
411 whole page has already been loaded.
413 * WebKitSupport/FrameLoaderClientWx.cpp:
414 (WebCore::FrameLoaderClientWx::dispatchDidHandleOnloadEvents):
416 2008-02-03 Kevin Ollivier <kevino@theolliviers.com>
418 Build fix for last wx commit (a couple things were not committed).
419 Also fix some style issues.
422 (wxWebView::wxWebView):
423 (wxWebView::OnPaint):
425 (wxWebView::CanCopy):
429 (wxWebView::CanPaste):
431 (wxWebView::OnKeyEvents):
432 (wxWebView::OnSetFocus):
433 (wxWebView::OnKillFocus):
434 (wxWebView::OnActivate):
437 2008-01-31 Kevin Ollivier <kevino@theolliviers.com>
439 Reviewed by Adam Roben.
441 On MSW, the wx port internally uses callbacks for wxTimer, so the
442 wx port suffers from the same crash problem that was fixed
443 in r28500 for the Windows port. For now, use the SharedTimerWin.cpp
444 impl. for wx too on MSW, until a version of wx is released that
445 fixes the issue by reworking wxTimer.
448 (wxWebView::wxWebView):
450 2008-01-21 Darin Adler <darin@apple.com>
452 Reviewed by John Sullivan.
454 - updated for changes to ChromeClient database functions
456 * WebKitSupport/ChromeClientWx.cpp:
457 (WebCore::ChromeClientWx::exceededDatabaseQuota):
458 * WebKitSupport/ChromeClientWx.h:
460 2008-01-16 Adam Roben <aroben@apple.com>
462 Updated for WebCore method renames.
467 (wxWebView::OnSetFocus):
468 (wxWebView::OnKillFocus):
469 (wxWebView::OnActivate):
471 2008-01-12 Kevin Ollivier <kevino@theolliviers.com>
473 Reviewed by Darin Adler.
475 wxWebKit API changes in preparation for DRT implementation.
478 - Add CONSOLE_MESSAGE callback so clients can choose how to handle
480 - Add more load events, and rename wxWebViewStateChangedEvent to
481 wxWebViewLoadEvent to reflect that all 'states' are load states.
482 - Add wxWebView impls. for GetInnerText(), GetAsMarkup() and
483 GetExternalRepresentation()
486 (wxWebFrame::OnLoadEvent):
488 * WebKitSupport/ChromeClientWx.cpp:
489 (WebCore::ChromeClientWx::ChromeClientWx):
490 (WebCore::ChromeClientWx::addMessageToConsole):
491 * WebKitSupport/ChromeClientWx.h:
492 * WebKitSupport/FrameLoaderClientWx.cpp:
493 (WebCore::FrameLoaderClientWx::dispatchDidHandleOnloadEvents):
494 (WebCore::FrameLoaderClientWx::dispatchDidStartProvisionalLoad):
495 (WebCore::FrameLoaderClientWx::dispatchDidCommitLoad):
496 (WebCore::FrameLoaderClientWx::dispatchDidFinishDocumentLoad):
497 (WebCore::FrameLoaderClientWx::postProgressFinishedNotification):
499 (wxWebViewLoadEvent::wxWebViewLoadEvent):
500 (wxWebViewConsoleMessageEvent::wxWebViewConsoleMessageEvent):
501 (wxWebView::wxWebView):
502 (wxWebView::GetPageSource):
503 (wxWebView::GetInnerText):
504 (wxWebView::GetAsMarkup):
505 (wxWebView::GetExternalRepresentation):
508 2008-01-12 Kevin Ollivier <kevino@theolliviers.com>
510 wx build fix. Add WebCore/icu/include dir for OS X boxes with
511 only stock ICU installed.
515 2008-01-10 Maciej Stachowiak <mjs@apple.com>
519 - remove SecurityOriginData and fold its functionality into SecurityOrigin
521 * WebKitSupport/ChromeClientWx.cpp:
522 (WebCore::ChromeClientWx::requestQuotaIncreaseForNewDatabase):
523 (WebCore::ChromeClientWx::requestQuotaIncreaseForDatabaseOperation):
524 * WebKitSupport/ChromeClientWx.h:
526 2007-12-16 Darin Adler <darin@apple.com>
528 - try to fix the build
531 (wxWebView::OnKeyEvents): Add a WebCore prefix.
533 2007-12-16 Alexey Proskuryakov <ap@webkit.org>
537 http://bugs.webkit.org/show_bug.cgi?id=16462
538 REGRESSION: access keys broken on Windows
540 * WebView.cpp: (wxWebView::OnKeyEvents): Call handleAccessKey() as appropriate.
542 2007-12-14 Darin Adler <darin@apple.com>
546 * WebKitSupport/EditorClientWx.cpp:
547 (WebCore::EditorClientWx::handleKeyboardEvent): Switched from Editor::execCommand
550 2007-12-12 Brady Eidson <beidson@apple.com>
552 Reviewed by Sam Weinig
554 As part of doing some CachedPage and client cleanup, keep Wx building
556 * WebKitSupport/FrameLoaderClientWx.cpp:
557 (WebCore::FrameLoaderClientWx::savePlatformDataToCachedPage):
558 (WebCore::FrameLoaderClientWx::transitionToCommittedFromCachedPage):
559 (WebCore::FrameLoaderClientWx::transitionToCommittedForNewPage):
560 * WebKitSupport/FrameLoaderClientWx.h:
562 2007-12-12 Sam Weinig <sam@webkit.org>
566 * WebKitSupport/ChromeClientWx.cpp:
567 (WebCore::ChromeClientWx::createWindow):
568 * WebKitSupport/FrameLoaderClientWx.cpp:
569 (WebCore::FrameLoaderClientWx::dispatchDidStartProvisionalLoad):
570 (WebCore::FrameLoaderClientWx::dispatchDidCommitLoad):
571 (WebCore::FrameLoaderClientWx::dispatchDidFinishDocumentLoad):
572 (WebCore::FrameLoaderClientWx::postProgressFinishedNotification):
573 (WebCore::FrameLoaderClientWx::didChangeTitle):
574 (WebCore::FrameLoaderClientWx::dispatchDecidePolicyForNavigationAction):
576 2007-12-07 Alexey Proskuryakov <ap@webkit.org>
580 <rdar://problem/5535636>
581 Have to press 4 times instead of 2 times to get the expected result of ^^ with german keyboard.
583 http://bugs.webkit.org/show_bug.cgi?id=13916
584 JavaScript detects Tab as a character input on a textfield validation
586 * WebKitSupport/EditorClientWx.cpp:
587 (WebCore::EditorClientWx::handleInputMethodKeydown):
588 (WebCore::EditorClientWx::handleKeyboardEvent):
589 * WebKitSupport/EditorClientWx.h:
590 Updated for cross-platform changes as much as it was possible without a wx build environment.
591 The keyboard event model of wx is similar to Windows one, so further fixes can be modeled
592 after the Windows port.
594 2007-12-06 Kevin Ollivier <kevino@theolliviers.com>
596 Fix page leak caused because the Frame's page pointer is 0 by the
597 time we call delete on it. Store a reference to the page instead
598 and delete it that way.
600 Also, small fix to call PrepareDC(gcdc) when using wxGCDC because
601 on Linux the wxGCDC gcdc(dc) constructor will not retain the
602 changes made to dc by PrepareDC(dc).
604 Reviewed by Darin Adler.
607 (wxWebView::wxWebView):
608 (wxWebView::~wxWebView):
609 (wxWebView::OnPaint):
611 (WebViewPrivate::WebViewPrivate):
613 2007-12-06 Kevin Ollivier <kevino@theolliviers.com>
615 Linux build fix - ensure that webcore is linked before jscore
616 so that the linker will know which symbols it needs to link in.
617 Also fix MSVC project file name typo for sample app.
622 2007-12-04 Darin Adler <darin@apple.com>
624 Reviewed by Kevin Decker.
626 * WebKitSupport/FrameLoaderClientWx.cpp: Removed obsolete privateBrowsingEnabled.
627 * WebKitSupport/FrameLoaderClientWx.h: Ditto.
629 2007-12-03 Mark Rowe <mrowe@apple.com>
634 (wxWebView::RunScript):
636 2007-11-30 Kevin Ollivier <kevino@theolliviers.com>
638 wx build fix. Add WebCore/platform/graphics/wx to includes.
642 2007-11-30 Kevin Ollivier <kevino@theolliviers.com>
644 Fix method signatures to be members of ClientChromeWx class.
646 * WebKitSupport/ChromeClientWx.cpp:
647 (WebCore::ChromeClientWx::requestQuotaIncreaseForNewDatabase):
648 (WebCore::ChromeClientWx::requestQuotaIncreaseForDatabaseOperation):
650 2007-11-30 Kevin Ollivier <kevino@theolliviers.com>
652 Build fix. Add platform/text to includes for targets that
653 need WebCore headers.
655 * presets/wxwebkit.bkl:
657 2007-11-29 Brady Eidson <beidson@apple.com>
659 Keep it building with new client method
661 * WebKitSupport/ChromeClientWx.cpp:
662 (WebCore::ChromeClient::requestQuotaIncreaseForNewDatabase):
663 (WebCore::ChromeClient::requestQuotaIncreaseForDatabaseOperation):
664 * WebKitSupport/ChromeClientWx.h:
666 2007-11-25 Kevin Ollivier <kevino@theolliviers.com>
668 wx build fix. Don't get xslt-config options at bake time, do it
673 2007-11-23 Kevin Ollivier <kevino@theolliviers.com>
675 wx build fix. Include config.h in WebFrame/WebView to ensure
676 WebCore headers are properly configured, fix unicode/utf8.h and
677 config.h include ordering issues, centralize wx project options to
678 ensure proper configuration, and fix wxwebkit-python target so that
679 it links against wx libs.
683 * bindings/python/wxwebkit-py.bkl:
685 * presets/wxwebkit.bkl:
689 2007-11-20 Kevin Ollivier <kevino@theolliviers.com>
691 wx build fix for Windows. Don't use WebCore/move-js-headers.sh as
692 it indiscriminately copies any headers inside JavaScriptCore,
693 which includes Tiger ICU headers.
695 * presets/wxwebkit.bkl:
696 Remove WebCore/include reference and add JSCore header dirs needed
699 2007-11-19 Kevin Ollivier <kevino@theolliviers.com>
701 Add pcre directory to JSCore includes, and update the wx port
702 to reflect the Shared -> RefCounted name change. Also, fix
703 WebFrame.cpp to re-enable code that should never have been
709 (wxWebFrame::wxWebFrame):
710 * WebKitSupport/FrameLoaderClientWx.cpp:
711 (WebCore::FrameLoaderClientWx::ref):
712 (WebCore::FrameLoaderClientWx::deref):
713 * WebKitSupport/FrameLoaderClientWx.h:
714 * presets/wxwebkit.bkl:
716 2007-11-17 Timothy Hatcher <timothy@apple.com>
718 Reviewed by Mark Rowe.
720 Bug 13470: i18n: The Web Inspector is not localizable
721 http://bugs.webkit.org/show_bug.cgi?id=13470
723 * WebKitSupport/InspectorClientWx.cpp:
724 (WebCore::InspectorClientWx::localizedStringsURL): Empty stub.
725 * WebKitSupport/InspectorClientWx.h: Added localizedStringsURL.
727 2007-11-08 Kevin Ollivier <kevino@theolliviers.com>
729 Initial commit of wx implementation of WebKit. This includes
730 the wxWebFrame and wxWebView wx front end classes, the
731 WebKitSupport directory containing implementations of interfaces
732 used by WebCore to talk with the wxWebKit front end, and the
733 language bindings for wxWebKit (bindings dir), currently
734 only containing bindings and a sample app for wxPython.
736 Reviewed by Mark Rowe.
738 * Bakefiles.bkgen: Added.
739 * WebFrame.cpp: Added.
741 * WebKitSupport: Added.
742 * WebKitSupport/ChromeClientWx.cpp: Added.
743 * WebKitSupport/ChromeClientWx.h: Added.
744 * WebKitSupport/ContextMenuClientWx.cpp: Added.
745 * WebKitSupport/ContextMenuClientWx.h: Added.
746 * WebKitSupport/DragClientWx.cpp: Added.
747 * WebKitSupport/DragClientWx.h: Added.
748 * WebKitSupport/EditorClientWx.cpp: Added.
749 * WebKitSupport/EditorClientWx.h: Added.
750 * WebKitSupport/FrameLoaderClientWx.cpp: Added.
751 * WebKitSupport/FrameLoaderClientWx.h: Added.
752 * WebKitSupport/InspectorClientWx.cpp: Added.
753 * WebKitSupport/InspectorClientWx.h: Added.
754 * WebView.cpp: Added.
756 * WebViewPrivate.h: Added.
758 * bindings/python: Added.
759 * bindings/python/samples: Added.
760 * bindings/python/samples/simple.py: Added.
761 * bindings/python/webview.i: Added.
762 * bindings/python/wxwebkit-py.bkl: Added.
763 * dependencies.bkl: Added.
765 * presets/wxwebkit.bkl: Added.
766 * wxwebkit.bkl: Added.
767 * wxwk-settings.bkl: Added.