Hi,
I am using setText function and setPixmap functions to show png icons and some values like this :
Qt Code:
  1. ui->label->setText(value);
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. QPixmap pix1(":/resources/images/images/01n.png");
  2. ui->label_2->setPixmap(pix1);
To copy to clipboard, switch view to plain text mode 

I want to combine both of them in one setText function like this:

Qt Code:
  1. ui->label_3->setText(pix1 + value);
To copy to clipboard, switch view to plain text mode 

How can i do this?