Hello,
Thanks for the replies !
Unfortunatly the QAbstractItemView::setTextElideMode didn't helped, I think the size of the delegate is calculated with some dependency on the text data width, changing the icon size was'nt affecting my listview the way I want.
The problem with the QListView::setGridSize() is that it's killing spacing around the items producing something like this :

Ayway I got something I'm satisfied with by setting a new size hint everytime the icon size change :
for i in range( self._model.rowCount() ) :
iblSetStandardItemItem = self._model.item( i )
iblSetStandardItemItem.
setSizeHint( QSize( value, value
+ 16 ) )
for i in range( self._model.rowCount() ) :
iblSetStandardItemItem = self._model.item( i )
iblSetStandardItemItem.setSizeHint( QSize( value, value + 16 ) )
To copy to clipboard, switch view to plain text mode
"16" being the margin I add to display the text.
KS
Bookmarks