I want to detect whenever the selection of my gtk.TreeView
changes and, when it does, to call a function w/ this information. The only way I've found to do it so far is to attach to all these signals:
...
self.sitterView.connect("cursor-changed", self.selectionChanged)
self.sitterView.connect("unselect-all", self.selectionChanged)
self.sitterView.connect("toggle-cursor-row", self.selectionChanged)
self.sitterView.connect("select-all", self.selectionChanged)
...
def selectionChanged(self, treeview):
foo(self.sitterView.get_selection().get_selected())
However, it seems like the selection I get from the callback is "delayed". That is, it shows the selection after the previous callback had completed. For example, if I constantly CTRL+click on a row, when the row goes from deselected to selected, foo is given no selection, and when the row goes from selected to deselected, it is given a selection. If I call get_selection().get_selected()
a second later, though, I get the right selection. Any idea how to deal w/ this?