Hi,
I'm using Qt creator 4.7.
I have a QWidget with some buttons and labels and a QtableWidget that I would like to be able to move around with the mouse.
In the QTableWidget's properties menu I see some mouse and drag and drop related settings - (dragEnabled, dragDropMode etc'), so far changing their settings does not enable dragging.
reading through the forums and tutorials I see that mostly the way of doing this is by manually creating a QDrag object, and reimplementing dragMoveEvent() ,dropEvent() and others (http://doc.qt.nokia.com/4.7-snapshot/dnd.html)

My question - is there no built in way for this? what are the Widget's drag related properties for?
Do I implement this on my own?
thanks,
Ido.