Re: GTK Menu Window Type

2012-06-29 Thread BRAGA, Bruno
Hi Tadej, Thanks, I think that was the issue! I was trying to chunk in such property into the Gtk2::Dialog-new instead, that's why I got a bit lost. Regards, -- *Braga, Bruno* www.brunobraga.net bruno.br...@gmail.com - *From*: Tadej Borovšak tadeboro gmail com - *To*: gtk-perl-list

Re: menuitem confusion

2012-06-29 Thread Torsten Schoenfeld
On 28.06.2012 01:16, Kevin Ryde wrote: my $group = undef; Try '$group = []'. I think this is also how Gtk2 works. Both undef and [] in the gtk2, I believe. Indeed, Gtk2 had special code in place to allow both: http://git.gnome.org/browse/perl-Gtk2/tree/xs/GtkRadioMenuItem.xs. Dave, do

Re: menuitem confusion

2012-06-29 Thread Dave M
On Fri, Jun 29, 2012 at 2:47 PM, Torsten Schoenfeld kaffeeti...@gmx.de wrote: On 28.06.2012 01:16, Kevin Ryde wrote: my $group = undef; Try '$group = []'.  I think this is also how Gtk2 works. Both undef and [] in the gtk2, I believe. Indeed, Gtk2 had special code in place to allow

Re: [Patch] MinGW support for Glib-Object-Introspection

2012-06-29 Thread Torsten Schoenfeld
The patch is looking pretty good now. A few remaining things: On 27.06.2012 15:01, Martin Schlemmer wrote: I made all the changes discussed against HEAD with the following additions: - Link GIMarshallingTests against Gio-2.0 and remove Glib-2.0. This is similar to all gobject-introspection

Re: menuitem confusion

2012-06-29 Thread Torsten Schoenfeld
On 29.06.2012 22:49, Dave M wrote: Can you specify the exact function? Just Gtk3::RadioMenuItem? If you can clarify, then sure, I'll take a stab at it. Yeah, just Gtk3::RadioMenuItem. Specifically, go through all its methods (just a handful) and add overrides where necessary to match

Re: Issue with Glib 1.260 in Windows 7

2012-06-29 Thread Torsten Schoenfeld
On 15.06.2012 17:13, Martin Schlemmer wrote: $view = Gtk2::WebKit::WebView-new; $session = Gtk2::WebKit-get_default_session; If you still have this set up, a couple of questions: • Does non-crashing Glib 1.240 test case run

Re: [Patch] MinGW support for Glib-Object-Introspection

2012-06-29 Thread Sergei Steshenko
- Original Message - From: Torsten Schoenfeld kaffeeti...@gmx.de To: gtk-perl-list@gnome.org Cc: Sent: Friday, June 29, 2012 11:55 PM Subject: Re: [Patch] MinGW support for Glib-Object-Introspection [snip] Do you have the possibility to test with nmake/cl? +      # XXX:

Re: menuitem confusion

2012-06-29 Thread Kevin Ryde
Torsten Schoenfeld kaffeeti...@gmx.de writes: Yeah, just Gtk3::RadioMenuItem. Do GtkRadioButton and GtkRadioToolButton have something similar? Maybe gtk_radio_action_set_group() too, or perhaps that was never documented. Undef makes some sense if the C func takes NULL ...