Hi everybody,
With which components can I build something similar to the Qt Creators's resource selector (a draggable list of icons presented like files icons in file explorer) ?
Attachment 13429
Thanks.
Printable View
Hi everybody,
With which components can I build something similar to the Qt Creators's resource selector (a draggable list of icons presented like files icons in file explorer) ?
Attachment 13429
Thanks.
You could probably use the FlowLayout class (from the Qt Flow Layout example) to do the layout. The Draggable Icons example and the Fridge Magnets example are good places to start for implementing the drag and drop features. In your case, you probably won't be dragging something out of one widget and into another, but you'll create a duplicate and drag that instead. The Drop Site example will probably help there.