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
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
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
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
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
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