[pygtk] gdk_draw_*()

1999-10-15 Thread Fred L. Drake, Jr.
Are there plans to add any more of the gdk_draw_*() functions to the bindings? In particular, I'd like to see gdk_draw_lines(), gdk_draw_polygon(), and gdk_draw_segments(). I see these are listed in generate/gtk.ignore; is there a reason they're not included? I'd also like to suggest that

Re: [pygtk] gdk_draw_*()

1999-10-15 Thread James Henstridge
Those functions are already implemented. The list of drawing functions implemented is: filter(lambda x: x[:5]=='draw_', dir(gtk)) ['draw_arc', 'draw_array', 'draw_gray_image', 'draw_line', 'draw_lines', 'draw_pixmap', 'draw_point', 'draw_points', 'draw_polygon', 'draw_rectangle',

Re: [pygtk] gdk_draw_*()

1999-10-15 Thread Fred L. Drake, Jr.
James Henstridge writes: Those functions are already implemented. The list of drawing functions implemented is: Ah; I guess I was grepping around the wrong place, as well as not in the latest version (I need to update my home machine... again...). the gdk_draw_image() one. The