2

I'm looking for some C++/webkit example code or some grate tutorials. Here is what i need in the example: 1. Read Html file from disk, and render the htmlvascript and display content 2. I need so its independent from any other web browsers on pc, using only webkit.

thnx

1 Answer 1

1

Have you considered using Qt because it would be dead simple with it?

Basically something like this:

QWebView view;
view.load(QUrl("http://www.google.com"));
view.showMaximized();
Sign up to request clarification or add additional context in comments.

1 Comment

Yes, just use file:// protocol or if you want to load from inside Qt resource file protocol qrc:// will do it.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.