| 1849 | } |
| 1850 | |
| 1851 | QIcon MakeSwatchIcon(QWidget *parentWidget, QColor swatchColor) |
| 1852 | { |
| 1853 | int h = parentWidget->fontMetrics().height(); |
| 1854 | QPixmap pm(1, 1); |
| 1855 | pm.fill(swatchColor); |
| 1856 | pm = pm.scaled(QSize(h, h)); |
| 1857 | |
| 1858 | { |
| 1859 | QPainter painter(&pm); |
| 1860 | |
| 1861 | QPen pen(parentWidget->palette().foreground(), 1.0); |
| 1862 | painter.setPen(pen); |
| 1863 | painter.drawLine(QPoint(0, 0), QPoint(h - 1, 0)); |
| 1864 | painter.drawLine(QPoint(h - 1, 0), QPoint(h - 1, h - 1)); |
| 1865 | painter.drawLine(QPoint(h - 1, h - 1), QPoint(0, h - 1)); |
| 1866 | painter.drawLine(QPoint(0, h - 1), QPoint(0, 0)); |
| 1867 | } |
| 1868 | |
| 1869 | return QIcon(pm); |
| 1870 | } |
| 1871 | |
| 1872 | float ConvertLinearToSRGB(float linear) |
| 1873 | { |
no test coverage detected