Is there a way to embed the WebKit engine into a Delphi application?

link|improve this question

i found a ready to ship build for webkit: lwat.blogspot.com/2008/11/redistributable-webkit.html still missing: delphi connector... – Bernd Ott Apr 3 '09 at 12:56
Most if not all of the links below point to nowhere. What I've been able to find about a WebKit SDK, that COULD be used, is this blog about a guy doing the WebKIT Cairo thing: whtconstruct.blogspot.com – Gustavo Carreno Oct 9 '09 at 21:12
feedback

4 Answers

up vote 5 down vote accepted

Yes, you can it has a normal api. But remember you need some dlls from adobe. Alternative you can build your own webkit, with only opensource libs. but compiling that under windows its a hard hard way.

Update 1 i found a precompiled lib here: WebKit Cairo Release

That side doesn't exist anymore

I dropped that project and decided to take gecko. On sourceforge there is a project which converts the headers for delphi.

D-Gecko

Update 2

a new project appeared:

Embedding Chromium in Delphi

Chromium is the embedded version of googles chrome and chrome uses webkit.

link|improve this answer
D-Gecko have no files yet, what are you using? – Cesar Romero Apr 3 '09 at 23:44
Take the source from the svn. there are also (somewhere) older zip versions. i found them via a search engine. svn: d-gecko.svn.sourceforge.net/svnroot/d-gecko some versions are broken. if i remember right, the initial checking containing the original source. – Bernd Ott Apr 4 '09 at 18:17
Blog not found Sorry, the blog you were looking for does not exist. However, the name lwat is available to register! ;) – Christopher Chase Dec 4 '09 at 6:07
feedback

That is something I'm really interested. I think WebKit is C++, then the way I see is create the needed bindings, just like Borland created CLX using QT.

link|improve this answer
feedback

Using the webkit build from http://whtconstruct.blogspot.com/, I managed to create a delphi app that successfuly embed and display the webkit webview on the delphi form. However everytime I visited a javascript page such as google, yahoo and many other, I always ended up with Invalid Floating Point exception. Non javascript pages are ok though.

link|improve this answer
never mind, math.SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide,exOverflow, exUnderflow, exPrecision]); saved the day! Now webkit in delphi is workng perfectly. – sarafin Dec 16 '09 at 3:04
Any pointer on how you managed to integrate it? I managed to import the ActiveX interface into Delphi but could't find a way of actually using it as no visual component seems to be available. – carlosb Mar 15 '10 at 22:47
Download it and run it but does not support CSS3 related stuff – Erwinus Jan 9 at 11:41
feedback

Try Set8087CW($133F); in the beginning of your delphi app.

link|improve this answer
1  
How does disabling all FPU exceptions, help anything here? – TommyA Aug 15 '10 at 19:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.