[pygtk] UTF-8 font not getting displayed in pygtk

2006-02-15 Thread Anand Kulkarni
Hi, We are developing a free software for the school children. The software is developed using pygtk (2.0.0 or higher) and glade-python (2.0.0 or higher). The user interface is in Marathi language. We are using a widget called GtkTextView to display marathi text. The marathi text is coming from

[pygtk] Installing and switching themes in pygtk

2006-02-15 Thread David Hirschfield
I'm a newbie to pygtk and gtk programming in general...so forgive these very basic questions: 1. Where does a person find gtk themes? Is there a good clearing house website? 2. Do all gtk themes work with pygtk? I would assume so...as long as the theme is for the version of gtk and pygtk you'r

[pygtk] ANNOUNCE: nautilus-python 0.4.3

2006-02-15 Thread Gustavo J. A. M. Carneiro
The new release is available from ftp.gnome.org: http://ftp.gnome.org/pub/GNOME/sources/nautilus-python/0.4/ Overview of changes in 0.4.3: - Make debugging messages a run-time option - Fix bug in loading extensions from system extensions dir - Fix crash when no extensio

Re: [pygtk] gtk threads with a C extension module and callback

2006-02-15 Thread Kim Novak
Thanks! Your solution worked. Kim Gustavo J. A. M. Carneiro wrote: On Wed, 2006-02-01 at 10:19 -0600, Kim Novak wrote: I am having an issue when I enable gtk threading (call gtk.threads_init() then gtk.main()). I'm not actually running any other threads yet but would like to, thus I have to

Re: [pygtk] Signals, once again

2006-02-15 Thread Jarek Zgoda
Patrick K. O'Brien napisaƂ(a): >> So, effectively you can not connect to signal not knowing its >> source (emitter)? I mean, in GTK you can not broadcast signal? > > If you want that you should use Louie - > http://louiethedispatcher.org/. I tried this beast and all I can say is "wow, I'm impres

Re: [pygtk] Changing corner icon

2006-02-15 Thread Lawrence Oluyede
On 2/15/06, Thierry Lam <[EMAIL PROTECTED]> wrote: > Does anyone know how to change the top left corner icon(it usually > defaults to the green python icon) in a PyGTK window? http://www.async.com.br/faq/pygtk/index.py?req=show&file=faq10.007.htp :) -- Lawrence http://www.oluyede.org/blog __

Re: Re: [pygtk] Signals, once again

2006-02-15 Thread Tony Nelson
At 2:23 PM +0100 2/15/06, =?iso-8859-2?Q?Jarek_Zgoda?= wrote: >> Attached is your code changed so that it works. >>=20 >> A diff between yours and mine should show you were you are going wrong. > >So, effectively you can not connect to signal not knowing its source (emi= >tter)? I mean, in GTK you

[pygtk] Changing corner icon

2006-02-15 Thread Thierry Lam
Does anyone know how to change the top left corner icon(it usually defaults to the green python icon) in a PyGTK window? Thanks Thierry ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www

Re: [pygtk] Signals, once again

2006-02-15 Thread Jarek Zgoda
> > So, effectively you can not connect to signal not knowing its > > source (emitter)? I mean, in GTK you can not broadcast signal? > > If you want that you should use Louie - http://louiethedispatcher.org/. Thanks for advice, will give a try. It's never too late to rethink application archite

Re: [pygtk] Signals, once again

2006-02-15 Thread Patrick K. O'Brien
Jarek Zgoda wrote: >> Attached is your code changed so that it works. >> >> A diff between yours and mine should show you were you are going wrong. > > So, effectively you can not connect to signal not knowing its source > (emitter)? I mean, in GTK you can not broadcast signal? If you want that

Re: [pygtk] Signals, once again

2006-02-15 Thread Nicolas Roman
Selon Nicolas Roman <[EMAIL PROTECTED]>: > Selon Jarek Zgoda <[EMAIL PROTECTED]>: > > > > Attached is your code changed so that it works. > > > > > > A diff between yours and mine should show you were you are going wrong. > > > > So, effectively you can not connect to signal not knowing its source

Re: [pygtk] Signals, once again

2006-02-15 Thread Nicolas Roman
Selon Jarek Zgoda <[EMAIL PROTECTED]>: > > Attached is your code changed so that it works. > > > > A diff between yours and mine should show you were you are going wrong. > > So, effectively you can not connect to signal not knowing its source > (emitter)? I mean, in GTK you can not broadcast sign

Re: [pygtk] Signals, once again

2006-02-15 Thread Jarek Zgoda
> Attached is your code changed so that it works. > > A diff between yours and mine should show you were you are going wrong. So, effectively you can not connect to signal not knowing its source (emitter)? I mean, in GTK you can not broadcast signal? Cheers Jarek Zgoda

Re: [pygtk] Signals, once again

2006-02-15 Thread Richard Taylor
Jarek Attached is your code changed so that it works. A diff between yours and mine should show you were you are going wrong. Richard On Wednesday 15 Feb 2006 10:02, Jarek Zgoda wrote: > Can anyone enlighten me, please, how do I emit signal in an instance of one > class and receive it in an ins

[pygtk] Signals, once again

2006-02-15 Thread Jarek Zgoda
Can anyone enlighten me, please, how do I emit signal in an instance of one class and receive it in an instance of another class, both GObject descendants? In all examples I found to date, signals was emitted and received in the same class. Is it possible at all? I narrowed my problem to attach