From 10ed185e8a1934d7c41e2ac2cda6b25a5df50646 Mon Sep 17 00:00:00 2001 From: Till Theato Date: Tue, 10 Jan 2012 22:34:17 +0100 Subject: [PATCH] Fix loading of color values in format 0xRRGGBB. This effected all effects with a color parameter not supporting the alpha channel. --- src/choosecolorwidget.cpp | 46 ++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/src/choosecolorwidget.cpp b/src/choosecolorwidget.cpp index 36eb893b..86138195 100644 --- a/src/choosecolorwidget.cpp +++ b/src/choosecolorwidget.cpp @@ -35,28 +35,30 @@ static QColor stringToColor(QString strColor) int intval = 0; if (strColor.startsWith("0x")) { - // Format must be 0xRRGGBBAA - intval = strColor.toUInt(&ok, 16); - color.setRgb( ( intval >> 24 ) & 0xff, // r - ( intval >> 16 ) & 0xff, // g - ( intval >> 8 ) & 0xff, // b - ( intval ) & 0xff ); // a - } else if (strColor.startsWith("#") && strColor.length() == 9) { - // Format must be #AARRGGBB - strColor = strColor.replace('#', "0x"); - intval = strColor.toUInt(&ok, 16); - color.setRgb( ( intval >> 16 ) & 0xff, // r - ( intval >> 8 ) & 0xff, // g - ( intval ) & 0xff, // b - ( intval >> 24 ) & 0xff ); // a - } else if (strColor.startsWith("#") && strColor.length() == 7) { - // Format must be #RRGGBB - strColor = strColor.replace('#', "0x"); - intval = strColor.toUInt(&ok, 16); - color.setRgb( ( intval >> 16 ) & 0xff, // r - ( intval >> 8 ) & 0xff, // g - ( intval ) & 0xff, // b - 0xff ); // a + if (strColor.length() == 10) { + // 0xRRGGBBAA + intval = strColor.toUInt(&ok, 16); + color.setRgb( ( intval >> 24 ) & 0xff, // r + ( intval >> 16 ) & 0xff, // g + ( intval >> 8 ) & 0xff, // b + ( intval ) & 0xff ); // a + } else { + // 0xRRGGBB, 0xRGB + color.setNamedColor(strColor.replace(0, 2, "#")); + } + } else { + if (strColor.length() == 9) { + // #AARRGGBB + strColor = strColor.replace('#', "0x"); + intval = strColor.toUInt(&ok, 16); + color.setRgb( ( intval >> 16 ) & 0xff, // r + ( intval >> 8 ) & 0xff, // g + ( intval ) & 0xff, // b + ( intval >> 24 ) & 0xff ); // a + } else { + // #RRGGBB, #RGB + color.setNamedColor(strColor); + } } return color; -- 2.39.2