[pygtk] Alignment & scale

2004-10-18 Thread Gustavo Niemeyer
ty("yscale") 1.0 Documentation is still pointing out that both parameters default to 0.0. -- Gustavo Niemeyer http://niemeyer.net ___ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Re: [pygtk] Progress Cell Renderer

2004-06-24 Thread Gustavo Niemeyer
. I'm using this for a download manager as well. It's quite usual to get progress bars in lists for this purpose. Using a table in a scrolled viewport is certainly possible, but I'm unsure about other issues (speed, memory consumption, etc) once you

[pygtk] Progress Cell Renderer

2004-06-23 Thread Gustavo Niemeyer
h = 100 if height == -1: height = 30 width += xpad*2 height += ypad*2 x_offset = 0 y_offset = 0 return x_offset, y_offset, width, height gobject.type_register(ProgressCellRenderer) -- Gustavo Niemeyer http://niemeyer.net ___