problem in presentation of text-icon QListWidgetItem
Hello EveryBody,
I am new to the Qt community and says hello to all of you.
I am trying to build an horizontal QListWidget. This has be done without problem
the problem is with the QListWidetItem objects I want to insert.
These QListWidgetItem contain text and icon and they are presented with the icon left an the text wright.
I'd like to have QListWidgetItem with Icon above and text under the icon
the source code is:
Code:
{
item1->setTextAlignment(Qt::AlignCenter);
item2->setTextAlignment(Qt::AlignCenter);
item3->setTextAlignment(Qt::AlignCenter);
item4->setTextAlignment(Qt::AlignCenter);
item5->setTextAlignment(Qt::AlignCenter);
}
for example the item1 presentation is icon left and text wright
I'd like to have icon above and the text under the icon
How to do?
I'd thank all developpers that have a solution for me.
Best Regards
Re: problem in presentation of text-icon QListWidgetItem
Where pictures for icons lie?
Re: problem in presentation of text-icon QListWidgetItem
See QListView::IconMode with QListView::setViewMode(). Or make your own delegate and draw it like you want.
Re: problem in presentation of text-icon QListWidgetItem
hello Chexov,
the picture lies in the directory of the executable.
It works fine now
Thank you for your help
Re: problem in presentation of text-icon QListWidgetItem
Quote:
Originally Posted by
Lykurg
Hello Lykurg,
Thank you very much for your help. You gave me the solution to my problem
Best Regards
utopia500