I've uploaded a new version of the Python bindings for GtkExtra. GtkExtra is a set of widgets for the Gimp Toolkit. It provides a spreadsheet-like matrix widget, a widget for 2-D graphing, an icon list and several other widgets. GtkExtra's home page is located at http://magnet.fsu.edu/~feiguin/gtk/. The Python bindings for GtkExtra are available at http://home.pages.de/~voegele/gtkextra.html The most important changes are: - The bindings now require GtkExtra 0.99.7 - GtkPlot.put_text() and GtkPlotCanvas.put_text() have a new argument called "transparent". If TRUE, the text background is not drawn. All calls to put_text() must be changed: put_text(x, y, 0, "Times", 10, None, None, JUSTIFY_CENTER, text) becomes put_text(x, y, 0, "Times", 10, None, None, TRUE, JUSTIFY_CENTER, text) - GtkPlotCanvas.remove_text() should be replaced with GtkPlotCanvas.remove_child() - Instead of GtkSheet.range the method GtkSheet.get_range() should be used. - Several GtkPlotData methods now return arrays instead of lists if Numerical Python arrays are used. _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk
