Re: Examples of ComboBox using an explicit model?

2012-07-31 Thread James Tappin
Thanks to those who send examples on or off list. With the guidance of those I was able to figure out how the different bits fit together and get a working code. James ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.or

Re: Passing data to a callback (again)

2012-07-31 Thread Frank Cox
On Tue, 31 Jul 2012 11:06:14 -0500 Michael Cronenworth wrote: > Not all callbacks perform the same function. That is why you must > consult the documentation for the signal you want to catch. > > The g_signal_connect() function does indeed only pass one pointer for > the fourth argument "data". A

Re: Passing data to a callback (again)

2012-07-31 Thread Michael Cronenworth
Frank Cox wrote: > What have I missed? Not all callbacks perform the same function. That is why you must consult the documentation for the signal you want to catch. The g_signal_connect() function does indeed only pass one pointer for the fourth argument "data". All signals have a "data" argument

Passing data to a callback (again)

2012-07-31 Thread Frank Cox
I think I'm missing something fundamental here. My understanding is that I can pass one pointer to a callback and that's it. And that works. When I look at the example provided for "How do I validate/limit/filter the input to a GtkEntry?" in the Gtk+ FAQ (version 2.18.9 in my case) I see that th

Re: DLL Hell on Windows..

2012-07-31 Thread Robin Vossen
Thanks, but I forgot to add. I am using GTK3 for this. I downloaded the (gtk3)bundle. Also I've included the libatk that was shipped with it. But it didn't seem to work. -- Kind Regards, Robin Vossen Please avoid sending me Word, Excel or PowerPoint attachments. See http://www.gnu.org/philosoph

Re: Examples of ComboBox using an explicit model?

2012-07-31 Thread Vivien Malerba
On 31 July 2012 00:12, James Tappin wrote: > I am currently trying to implement combobox cell renderers in the > high-level gtk-fortran code. Unfortunately unlike "normal" comboboxes where > there is the convenience type of GtkComboBoxText this is not available for > cell renderers. > > I have hu