| 165 | } |
| 166 | |
| 167 | QImage UIResources::tintedImage(const QImage &image, const QColor &color) |
| 168 | { |
| 169 | QImage img(image.size(), QImage::Format_ARGB32_Premultiplied); |
| 170 | |
| 171 | QPainter painter(&img); |
| 172 | painter.setCompositionMode(QPainter::CompositionMode_Source); |
| 173 | painter.drawImage(img.rect(), image); |
| 174 | painter.setCompositionMode(QPainter::CompositionMode_SourceIn); |
| 175 | painter.fillRect(img.rect(), color); |
| 176 | return img; |
| 177 | } |
| 178 | |
| 179 | QPixmap UIResources::tintedPixmap(const QImage &image, const QColor &color) |
| 180 | { |