0

In WebKitGtk1 there was a function to load an html page directly from a string.

webkit_web_view_load_string ()

Requests loading of the given content with the specified mime_type , encoding and base_uri .

Is there an equivalent in WebKitGtk2? I would like to display an HTML page that is re-generated very often, so saving it as a file and loading this file is no option.

1 Answers1

1

http://webkitgtk.org/reference/webkit2gtk/stable/WebKitWebView.html

There are few load methods e.g. webkit_web_view_load_html. Please pick up the one that suits your needs.

user871199
  • 1,420
  • 19
  • 28