from gtk import *
win = GtkWindow ()
win.set_usize (200, 200)
win.connect ("destroy", mainquit)
clist = GtkCList ()
win.add (clist)
color = clist.get_colormap().alloc (0xffff, 0x0000, 0x0000)
for row in range (5):
clist.append (("test",))
clist.set_background (row, color)
for i in range (5):
clist.append (("test",))
win.show_all ()
mainloop ()
_______________________________________________
pygtk mailing list [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
- [pygtk] problems with styles David N. Welton
- Re: [pygtk] problems with styles Torsten Landschoff
- Re: [pygtk] problems with styles acano
- Re: [pygtk] problems with styles David N. Welton
- [pygtk] Patch for keyval functions, set_cursor... John Ehresman
