study guide home page

2005-09-18 Thread Dirk van der Walt
is here : http://forgeftp.novell.com//gtk2-perl-study/homepage/index.html should u want to bookmark ___ gtk-perl-list mailing list gtk-perl-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-perl-list

Re: GdkPixbufSimpleAnim wrapper?

2005-09-18 Thread Carl Nygard
On Sun, 2005-09-18 at 20:46 -0400, muppet wrote: > On Sep 18, 2005, at 8:27 PM, Carl Nygard wrote: > > > Do you have an ETA on the next release? > > We'll have 1.101 soon, if there are any changes (there have been a > couple, i think), but we don't add APIs on stable series. > > Our next stabl

Re: GdkPixbufSimpleAnim wrapper?

2005-09-18 Thread muppet
On Sep 18, 2005, at 8:27 PM, Carl Nygard wrote: Do you have an ETA on the next release? We'll have 1.101 soon, if there are any changes (there have been a couple, i think), but we don't add APIs on stable series. Our next stable with new API will be 1.120, in a few months. The next unsta

Re: GdkPixbufSimpleAnim wrapper?

2005-09-18 Thread Carl Nygard
On Sun, 2005-09-18 at 00:29 -0400, muppet wrote: > On Sep 17, 2005, at 10:47 PM, Carl Nygard wrote: > > > Has anyone wrapped the GdkPixbufSimpleAnim object? I'm looking to > > create an animation from a series of pixbufs, but there's no real > > "supported file type" for loading straight from a f

Re: Column model has only 1 column

2005-09-18 Thread James McArthur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, It would appear muppet said the following on 09/17/05 13:33: > In general, you must specify the full complement of model columns at > creation time. Models don't handle changing their columns after creation. Ah, okay. That is what I had a feel

Re: automation

2005-09-18 Thread Scott Lanning
On Sun, 18 Sep 2005, muppet wrote: It is likely that the widget itself is installing an idle to defer some processing, and your idle to kill the main loop is running first. Damn! Is there a signal that fires when page is finished loading? Try hooking the main_quit (or installing the single

Re: automation

2005-09-18 Thread muppet
On Sep 18, 2005, at 10:27 AM, Scott Lanning wrote: On Sun, 18 Sep 2005, Torsten Schoenfeld wrote: On Sun, 2005-09-18 at 15:49 +0200, Scott Lanning wrote: $n = 1000; # 500 was insufficient, though Gtk2->main_iteration_do(0) while $n-- > 0; A common construct to achieve this more c

Re: automation

2005-09-18 Thread Scott Lanning
On Sun, 18 Sep 2005, Torsten Schoenfeld wrote: On Sun, 2005-09-18 at 15:49 +0200, Scott Lanning wrote: $n = 1000; # 500 was insufficient, though Gtk2->main_iteration_do(0) while $n-- > 0; A common construct to achieve this more correctly is this: Gtk2->main_iteration while Gtk2->even

Re: automation

2005-09-18 Thread Torsten Schoenfeld
On Sun, 2005-09-18 at 15:49 +0200, Scott Lanning wrote: >$n = 1000; # 500 was insufficient, though >Gtk2->main_iteration_do(0) while $n-- > 0; A common construct to achieve this more correctly is this: Gtk2->main_iteration while Gtk2->events_pending; -- Bye, -Torsten __

Re: automation

2005-09-18 Thread Scott Lanning
On Fri, 16 Sep 2005, muppet wrote: In the Gtk2 et al test suites, we usually use single-shot idles to handle this sort of thing. Glib::Idle->add (sub { $button->clicked; Gtk2->main_quit; FALSE; }); Gtk2->main; You can get pretty nutty when you start nesting and chaining these