Re: [pygtk] Change background color?

2007-06-27 Thread Seltzer
that works for most windows, as does modify_bg(...), but ... """ modify_bg() only affects widgets that have an associated gtk.gdk.Window. Widgets that do not have an associated window include

Re: [pygtk] strange spinbutton behavior

2007-06-27 Thread Tim Evans
James Dietrich wrote: [snip] Hi, Thanks for the suggestions, but it's not what I need. Perhaps I didn't explain myself well enough. In the original example, I want and expect that the spinbutton should advance one digit at a time by clicking on the tiny arrows. It does work as expected if the

Re: [pygtk] Change background color?

2007-06-27 Thread Sylvain Saleur
Hello! Thank you very much, I didn't know this FAQ... So I tried this: http://faq.pygtk.org/index.py?req=show&file=faq04.006.htp But it doesn't work! I'm probably use the wrong way... If I apply this method to my notebook, it works. But I just want to set this background to one page childs. An

Re: [pygtk] strange spinbutton behavior

2007-06-27 Thread James Dietrich
On 6/27/07, JUAN JOSE ROJO <[EMAIL PROTECTED]> wrote: Sorry, i forget this 2007/6/28, JUAN JOSE ROJO <[EMAIL PROTECTED]>: > > > > 2007/6/27, James Dietrich <[EMAIL PROTECTED]>: > > Hi, > > > > In the following program, one click on the spinbutton will > > advance the number displayed by two digi

Re: [pygtk] strange spinbutton behavior

2007-06-27 Thread JUAN JOSE ROJO
Sorry, i forget this 2007/6/28, JUAN JOSE ROJO <[EMAIL PROTECTED]>: 2007/6/27, James Dietrich <[EMAIL PROTECTED]>: > > Hi, > > In the following program, one click on the spinbutton will > advance the number displayed by two digits--from '1' to '3'. > Apparently the 'value-changed' signal gets

Re: [pygtk] strange spinbutton behavior

2007-06-27 Thread JUAN JOSE ROJO
2007/6/27, James Dietrich <[EMAIL PROTECTED]>: Hi, In the following program, one click on the spinbutton will advance the number displayed by two digits--from '1' to '3'. Apparently the 'value-changed' signal gets emitted twice when the adj_callback takes some time to do. If I uncomment the lin

[pygtk] strange spinbutton behavior

2007-06-27 Thread James Dietrich
Hi, In the following program, one click on the spinbutton will advance the number displayed by two digits--from '1' to '3'. Apparently the 'value-changed' signal gets emitted twice when the adj_callback takes some time to do. If I uncomment the line with 'return' on it so that it skips the long l

Re: [pygtk] french translation of pyGTK tutorials...

2007-06-27 Thread Rafael Villar Burke
Andi Albrecht wrote: Testing the PDF conversion would also be a nice thing to do. Hi Rafael, I've successfully built the PDFs some time ago, but I think I've used a different conversion than stated in the Makefile. I'll have a look on it the next days. Great!. I have done it myself but a long

Re: [pygtk] french translation of pyGTK tutorials...

2007-06-27 Thread Andi Albrecht
Testing the PDF conversion would also be a nice thing to do. Hi Rafael, I've successfully built the PDFs some time ago, but I think I've used a different conversion than stated in the Makefile. I'll have a look on it the next days. Regards, Andi ___

Re: [pygtk] french translation of pyGTK tutorials...

2007-06-27 Thread Rafael Villar Burke
Pascal Duchatelle wrote: Hello, Hi Pascal, I use pyGTK a lot even though I cannot say I am confortable with it. Anyway on the pyGTK site there links that points to localized versions. So I wandered if there was any french translation of it and if it would be interesting to have one. If so I

[pygtk] french translation of pyGTK tutorials...

2007-06-27 Thread Pascal Duchatelle
Hello, I use pyGTK a lot even though I cannot say I am confortable with it. Anyway on the pyGTK site there links that points to localized versions. So I wandered if there was any french translation of it and if it would be interesting to have one. If so I volunteer to start (at least) it. Also I w

[pygtk] setting row background color in treeview

2007-06-27 Thread Pakorn Chutinimitkul
Hi, I'm in a process of porting my wxPython applications to PyGTK. I have a problem with setting row background color in TreeView. After googling for a while, I can't seem to find how to do that. I'm using TreeView in conjunction with gtk.ListStore and gtk.CellRendererText. Here's the code