Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate webkit into a C++ Windows application

I've downloaded a nightly build of webkit which includes a dll, pdb. There are no header files and I can't find documentation on the API and usage of the dll.

I'm looking for example code to integrate this into a C++ application, and how to start requests, render them to window or ideally a Direct X texture.

So far my searching is coming up short on the webkit website and the internet at large.

like image 706
justinhj Avatar asked Dec 10 '22 09:12

justinhj


2 Answers

You might want to check out the Chromium Embedded Framework available here: http://code.google.com/p/chromiumembedded/

I've used it extensively and found it to be functional, stable, and easy to use. It is smaller than QWebKit and has a more liberal license.

like image 165
Geoffrey Elliott Avatar answered Dec 25 '22 22:12

Geoffrey Elliott


Why dont you use QWebKit from Qt? see this

like image 31
snoofkin Avatar answered Dec 26 '22 00:12

snoofkin