Re: drag and drop pushbutton
i've tried to look at the draggable text example on the Qt Assistant but i'm kinda lost 'cause i'm using the Qt designer..
what i'm trying now is to modify the draggable text example to draggable buttons.. but still, my aim is to create a draggable button using the Qt designer..
Re: drag and drop pushbutton
for draggable text .. learn QGraphicsView(), QGraphicsScene() and QGraphicsTextItem () and how to design this three ... in QGraphicsScene u can drag that text item anywhere freely by just setting the flag
graphicsItem ->setFlag(QGraphicsItem::ItemIsMovable); ..