On Tue, Feb 25, 2003 at 12:21:31PM -0700, [EMAIL PROTECTED] wrote:

> >>> print gtk.gtk_version
> (2, 2, 0)

2.2.1 has a few more TreeView fixes (e.g. get_cursor works).

> args = [gobject.TYPE_PYOBJECT] + ([gobject.TYPE_STRING] * len(titles))
> model = apply( gtk.ListStore, args)

model = gtk.ListStore(*args)

See FAQ in the mailing list sig below.

>             column.add_attribute(renderer,"background-gdk",0)
>             view.append_column(column)

Have you tried just "background"?  This takes a color string (e.g. "black").
I believe these are the same as the color names that showrgb prints out, but
I haven't tested this.

Dave Cook
_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to