RE: Displaying simple HTML in gtkmm app (got it!)

2005-04-25 Thread Erik Ohrnberger
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Vine Sent: Saturday, April 23, 2005 8:38 PM To: gtkmm-list@gnome.org Cc: [EMAIL PROTECTED] Subject: Re: Displaying simple HTML in gtkmm app (got it!) On Thursday 21 April 2005 19:06, [EMAIL PROTECTED] wrote: [snip] The other

Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-23 Thread Chris Vine
On Thursday 21 April 2005 19:06, [EMAIL PROTECTED] wrote: [snip] The other thing that I noticed about this way of implementing this is that you are limited to a single instance of a window that can render HTML. I was starting to create a C++ wrapper class, but found out that the lines:

RE: Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-21 Thread Murray Cumming
On Thu, 2005-04-21 at 14:06 -0400, [EMAIL PROTECTED] wrote: I was starting to create a C++ wrapper class, but found out that the lines: g_signal_connect( G_OBJECT( document ), request_url, G_CALLBACK( gtkhtml::url_requested ),NULL ); g_signal_connect( G_OBJECT( document ),

Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-21 Thread John Taber
On Thursday 21 April 2005 12:11, Murray Cumming wrote: You should use gmmproc, like the existing *mm projects. But I think gtkmozembedmm is a more sensible way to embed HTML. People are trying to move from gtkhtml to gecko. Except as I read it, mozembed is gpl not lgpl, also it's much bigger

Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-21 Thread Murray Cumming
On Thu, 2005-04-21 at 13:51 -0600, John Taber wrote: On Thursday 21 April 2005 12:11, Murray Cumming wrote: You should use gmmproc, like the existing *mm projects. But I think gtkmozembedmm is a more sensible way to embed HTML. People are trying to move from gtkhtml to gecko. Except as I

Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-16 Thread John Taber
On Friday 15 April 2005 09:46, [EMAIL PROTECTED] wrote: OK, so I got it working now. It's pretty much a hack job, but it'll get me by for now. Erik, thks for the post - using gtkhtml will be really useful for some of us. I'm trying to get this working in a small demo program but struggling:

RE: Re: Displaying simple HTML in gtkmm app (got it!)

2005-04-15 Thread erik_ohrnberger
OK, so I got it working now. It's pretty much a hack job, but it'll get me by for now. I've declared a class gtkhtml, which is a sub class of Gtk::ScrolledWindow. In this code module, I just include the simple.c source code file like so: extern C { # include simple.c }; And make sure to