Possible Duplicate:
How to embed WebKit into my C/C++/Win32 application?
I am trying to embed the WebKit project into my solution. At first I'd like to just render the Webkit inside a typical window and make it load some pseudorandom URI.
I tried checkouting the sources from http://svn.webkit.org/repository/webkit/trunk/Source/ and I got immediately confused on what headers to include. I begin with webkit/win/WebView.h
and it threw an error saying could not include Webkit.h
Fair enough, there's no such file... then I begin reading official documentation, but found out there is none except for Objective-C which doesn't even state what to include for what functionality.
I'm working on Visual Studio 2010 and Windows 7. Eventually I'd like the project run on Linux, but that requirement is off the table right now.
I tried googling for help which did not really show up any results with code samples or information on what I should actually do.
I am not interested in Qt, nor Gecko.
I guess I want to use WebView, but I have really no idea how and my C++ skills are rusty and all I know are concepts, I haven't done much anything with the language.