Hi,
could you tell me if using PathView is the best way to create a circular List?
Yes. Use the PathView and set it a Model.
I want to use a drag on each element on a circular List A so that each element of the List A will be dragged on the list B and will be delete on the A list.
Set a delegate [qt-project.org] to the PathView and in that Component use Drag [qt-project.org] to drag the Items and set also DropArea to the PathViews. And since Model is used you can remove/add Items from the PathView.
Is it possible to assign to each element of the list an action different to action assigned to other elements when we Use onClicked on every element?
If a delegate is used you can do it. Each Component of the Delegate is assigned a unique index using which you can use.
Hope this helps you …
↧