I'm using a QListPickSelector in my project and the idea is that it displays a set of images, rather than a list of strings .. Now I have tried using the setIcon() function, which works, but the image displayed is very tiny .. !

Here is the output I get when I use the setIcon() function:

alt text

As you can see, the image displayed is very tiny ... I would like it to be filled throughout its respective list entry area (which is also rectangular) ...

I am trying to use the setBackground() function by passing it a QBrush, which has the said image as its texture .. but when I try this, nothing happens, the background is setting black as usual .. Can somebody help me with this .. ?

Here is one variable of many different combinations I have tried:

QBrush brush;
brush.setTexture(QPixmap(":/p1.png"));
brush.setStyle(Qt::TexturePattern);

QStandardItemModel *model = new QStandardItemModel(10,2);
int i,j,k;
for(j=0;j<=1;j++)
{
      k=0;
      for(i=0;i<=9;i++)
      {
         QStandardItem *item = new QStandardItem("Hello");
         QStandardItem itemx;
         item->setBackground(brush);
         k+=5;
         model->setItem(i,j,item);
      }
}
canvasBackgroundTypeSelector->setModel(model);

I really need help with this ..

link|improve this question

37% accept rate
What is QListPickSelector? Is that a class you made? – Kaleb Pederson Jul 2 '10 at 17:48
No its an already made class for Qt, but is only available for use when the program is for running on Maemo N900 .. not for Windows or any other platform .. – Ahmad Jul 2 '10 at 20:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.