Re: gtk_main_iteration under broadway

2016-08-01 Thread Daniel Kasak
I see. Sorry to ruffle your feathers :) Until now, I was under the impression that this was the way things are done - as you note, it's what's recommended to us evil Perl users. I've done some parts threaded already, but I've found implementations on different platforms ( eg Windows ) kinda

Re: gtk_main_iteration under broadway

2016-08-01 Thread Emmanuele Bassi
Hi; On 29 July 2016 at 04:48, Daniel Kasak wrote: > Hi all. > > I've got some convenience functions that update a progress bar for long > running operations. I do: > > Gtk3::main_iteration() while ( Gtk3::events_pending() ); Stop. I know this kind of behaviour is peddled

gtk_main_iteration under broadway

2016-07-28 Thread Daniel Kasak
Hi all. I've got some convenience functions that update a progress bar for long running operations. I do: Gtk3::main_iteration() while ( Gtk3::events_pending() ); ... ( in Perl ) after updating the progress bar, so that the window's contents are updated while my code continues to run. This