Re: How to catch mouse events from a GtkImage?

2006-04-27 Thread Damián Cinich
El día Wed, 26 Apr 2006 09:06:37 +0200 "David Necas (Yeti)" <[EMAIL PROTECTED]> escribió: > On Wed, Apr 26, 2006 at 02:32:18AM -0300, Damián Cinich wrote: > > I have a little piece of code where I connect the signals > > corresponding to the mouse events to a GtkImage, and then the callback > > pr

Gtkhtml question

2006-04-27 Thread Van H Tran
Hi all, Anyone using gtkhtml, _not_ gtkhtml2, library out there, please help me with this problem: I have a gtkhtml widget contained in a scrolled window. I want to be able to, when pressing Right Arrow key, jump to the first focus-able object in that html portion of the page displayed in that sc

Combo question

2006-04-27 Thread [EMAIL PROTECTED]
Hi, I'm pretty frustrated because I can't solve this by myself. Can you help me? I have a file that looks like 1 Adam 1 Bert 1 Daniel 2 Marc 2 Sam .. .. 9 Zack and so on. That's an int number, a blank and a name. My code looks like this snip ... GList *glist = NULL; FILE *fp; if ( ! ( fp = fop

Re: Combo question

2006-04-27 Thread Wallace Owen
You need to allocate storage to hold the strings pointed at by the 2nd parm to g_list_append(). The glist isn't responsible for allocating fresh string space to hold the various strings pointed at by that 2nd parm, so if you keep using the same pointer in calls to g_list_append(), and at the end a