Re: Simple GtkHTML question?



On 18 Jan 2001 22:03:15 +0530, Archit Baweja wrote:
>
> Hi
>
> I would like to know a simple way in which I could make a GtkHTML Widget
> for previewing a code of HTML. What I have in mind is something like this
>
> html = gtk_html_new ();
> /*
> * Code for feeding the html data
> */
> gtk_widget_show (html);
>
> Now what I want is the part which I commented. What is the minimal number
> of functions required to do so.
Minimal number is just one. If you want to fill it with document described in simple string, you could do it like this:
gtk_html_load_from_string (GTK_HTML (html),
                          "<html><body>Hello world!</body></html>", -1);

Happy hacking
Radek

--
Radek Doulik        Hacker  monkey
rodo ximian com     Ximian, Inc.

[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]