Embed a spreadsheet/table in a PyGTK application?
In my application, we want to present the user with a typical spreadsheet/table (OO.O/Excel-style), and then pull out the values and do something with them internally. Is there a preexisting widget for PyGTK that does this? The PyGTK FAQ mentions GtkGrid , but the link is dead and I can't find a tarball anywhere. nosklo GtkGrid is deprecated in favor of the more powerful and more customizable GtkTreeView . It can display trees and lists. To make it work like a table, you must define a ListStore where it will take the data from, and TreeViewColumn s for each column you want to show, with