Re: [PyQt] Drag-and-drop editing in QListWidget or QListView

2011-06-22 Thread Nathan Weston
On 6/7/2011 7:53 AM, Nathan Weston wrote: On 06/02/2011 07:42 PM, David Boddie wrote: The draganddrop/puzzle example provided with PyQt uses a QListWidget to display a collection of puzzle pieces that can be dropped inside or outside the list, though it's not exactly the most user friendly

Re: [PyQt] Drag-and-drop editing in QListWidget or QListView

2011-06-07 Thread Nathan Weston
On 06/02/2011 07:42 PM, David Boddie wrote: The draganddrop/puzzle example provided with PyQt uses a QListWidget to display a collection of puzzle pieces that can be dropped inside or outside the list, though it's not exactly the most user friendly interface you could imagine. The

[PyQt] Drag-and-drop editing in QListWidget or QListView

2011-06-02 Thread Nathan Weston
I have a QListWidget with dragDropMode set to InternalMove, and I can move rows around by dragging as expected. But I also want to know when items are moved so I can update other data in my application, and I can't find any way to do this. Would it help if I switched to QListView and

Re: [PyQt] Drag-and-drop editing in QListWidget or QListView

2011-06-02 Thread David Boddie
On Thu Jun 2 14:05:41 BST 2011, Nathan Weston wrote: I have a QListWidget with dragDropMode set to InternalMove, and I can move rows around by dragging as expected. But I also want to know when items are moved so I can update other data in my application, and I can't find any way to do this.