Catch PyGTK TreeView reorder
        Posted  
        
            by mkotechno
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by mkotechno
        
        
        
        Published on 2010-05-14T04:10:23Z
        Indexed on 
            2010/05/14
            4:14 UTC
        
        
        Read the original article
        Hit count: 390
        
I have a simple gtk.TreeView with a gtk.ListStore model and set_reorderable(True), I want to catch the signal/event emited when the user reorder through drag&drop the list, but the documentation does not help much:
"The application can listen to these changes by connecting to the model's signals"
So I tried to connect the model (ListStore) signals... but surprise! ListStore has no signals, so you are dispatched to TreeModel signals, then I tried to connect with the TreeModel "rows-reordered" signal with no lucky.
How should I catch the list reorder performed by the user?
© Stack Overflow or respective owner