Re: Where do I find the constants?

2014-01-03 Thread Christian Jaeger
I just could not get it to work with a GtkComboBox (on perl-Gtk3 0.006). But I've got success with GtkComboBoxText, which is enough for this app. (In case anyone's interested in that code: my $cb= get "videodev_combobox"; # get from glade, a GtkComboBoxText now { $cb->remove_all; my $alld

Next release deadline: Saturday, January 18th 2013 at 00:00 UTC

2014-01-03 Thread Brian Manning
Hi folks, Based on the Gnome 3.11.x release calendar [1], I am setting the deadline for code submissions for the next release of Gtk-Perl modules to be Saturday, January 18th 2013 at 00:00 UTC. Please have all code submissions into the Gtk-Perl maintainers before the above deadline; please allow

Re: Where do I find the constants?

2014-01-03 Thread Christian Jaeger
2014/1/3 Torsten Schönfeld > .. and add overrides for it. But in general, these changes > will make the binding API more Perlish > (My point was that I "probably" prefer it to be straight lowlevel access, not Perlish. Perhaps it is a kind of "Perlishness" that one really wants, or/and still fit

Re: Where do I find the constants?

2014-01-03 Thread zentara
On Fri, 3 Jan 2014 08:19:41 + Christian Jaeger wrote: >TL,DR: feeling disappointed enough about having repeatedly been stuck >trying to use perl-Gtk3 now that I'm pondering alternatives (straight C, >Scheme&embedded C, Python). Could perl-Gtk3 follow libgtk3 more closely >(simpler/more stupid

Re: Where do I find the constants?

2014-01-03 Thread Christian Jaeger
2014/1/3 Terence Ferraro > my $store = Gtk3::ListStore->new(qw/Glib::String/); > $store->insert_with_values(0,0,'Testing'); > my $combo = Gtk3::ComboBox->new_with_model_and_entry($store); > $combo->set_entry_text_column(0); > I'm getting *** Can't locate object method "insert_with_values" vi

Re: Where do I find the constants?

2014-01-03 Thread Torsten Schönfeld
Thanks for your input, Christian. Some specific comments: On Fr, 2014-01-03 at 08:19 +, Christian Jaeger wrote: > That leaves me wondering whether my script stops working when > perl-Gtk3 is upgraded. Yes, there might be more API changes in the future when I tackle a new subset of gtk+ and

Re: Where do I find the constants?

2014-01-03 Thread Terence Ferraro
my $store = Gtk3::ListStore->new(qw/Glib::String/); $store->insert_with_values(0,0,'Testing'); my $combo = Gtk3::ComboBox->new_with_model_and_entry($store); $combo->set_entry_text_column(0); The above should work. Other than a few quirks I had to work out a few months ago going from Gtk2 to Gtk3 (

Re: Where do I find the constants?

2014-01-03 Thread Christian Jaeger
TL,DR: feeling disappointed enough about having repeatedly been stuck trying to use perl-Gtk3 now that I'm pondering alternatives (straight C, Scheme&embedded C, Python). Could perl-Gtk3 follow libgtk3 more closely (simpler/more stupidly/with less abstraction) to solve my gripes? Long version: 20