On 12/30/2011 06:08 PM, Michael Torrie wrote:
> On 12/30/2011 05:52 AM, David Nečas wrote:
>> On Fri, Dec 30, 2011 at 01:28:32PM +0100, Moritz Renftle wrote:
>>> i want to make one of those widgets visible from
>>> another thread
>>
>> Use glib.idle_add() in that other thread to subsequently execut
On 12/30/2011 05:52 AM, David Nečas wrote:
> On Fri, Dec 30, 2011 at 01:28:32PM +0100, Moritz Renftle wrote:
>> i want to make one of those widgets visible from
>> another thread
>
> Use glib.idle_add() in that other thread to subsequently execute the
> actual Gtk+ code in the thread running the G
On Fri, Dec 30, 2011 at 01:28:32PM +0100, Moritz Renftle wrote:
> i want to make one of those widgets visible from
> another thread
Use glib.idle_add() in that other thread to subsequently execute the
actual Gtk+ code in the thread running the Gtk+ main loop.
Yeti
___
Hi,
I'm programming a gtk-app with python and pygtk.
my app consists of a gtk.scrolledwindow and several widgets packed into
it horizontally. i want to make one of those widgets visible from
another thread (when a button is pushed on a joystick).
therefore i get the allocation of the widget and th