X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FColor.cpp;h=609c742e73a28e4f99936a659f85e12276ebb0fe;hb=90f7007a2e6c78ffd031e4636ff909ab1bc2ddec;hp=227a69898284375c2359b98df3bc0f522a7bf5e5;hpb=51c5b13db109db7f867376d267b3bc99944d8a77;p=lyx.git diff --git a/src/Color.cpp b/src/Color.cpp index 227a698982..609c742e73 100644 --- a/src/Color.cpp +++ b/src/Color.cpp @@ -85,6 +85,7 @@ RGBColor rgbFromHexName(string const & x11hexname) return c; } + string const outputLaTeXColor(RGBColor const & color) { // this routine returns a LaTeX readable color string in the form @@ -92,22 +93,64 @@ string const outputLaTeXColor(RGBColor const & color) int red = color.r; int green = color.g; int blue = color.b; +#ifdef USE_CORRECT_RGB_CONVERSION + int const scale = 255; +#else // the color values are given in the range of 0-255, so to get // an output of "0.5" for the value 127 we need to do the following + // FIXME: This is wrong, since it creates a nonlinear mapping: + // There is a gap between 0/256 and 2/256! + // 0.5 cannot be represented in 8bit hex RGB, it would be 127.5. if (red != 0) ++red; if (green != 0) ++green; if (blue != 0) ++blue; + int const scale = 256; +#endif string output; - output = convert(float(red) / 256) + ", " - + convert(float(green) / 256) + ", " - + convert(float(blue) / 256); + output = convert(float(red) / scale) + ", " + + convert(float(green) / scale) + ", " + + convert(float(blue) / scale); return output; } +RGBColor const RGBColorFromLaTeX(string const & color) +{ + vector rgb = getVectorFromString(color); + while (rgb.size() < 3) + rgb.push_back("0"); + RGBColor c; + for (int i = 0; i < 3; ++i) { + rgb[i] = trim(rgb[i]); + if (!isStrDbl(rgb[i])) + return c; + } +#ifdef USE_CORRECT_RGB_CONVERSION + int const scale = 255; +#else + // FIXME: This is wrong, since it creates a nonlinear mapping: + // Both 0/256 and 1/256 are mapped to 0! + // The wrong code exists only to match outputLaTeXColor(). + int const scale = 256; +#endif + c.r = static_cast(scale * convert(rgb[0]) + 0.5); + c.g = static_cast(scale * convert(rgb[1]) + 0.5); + c.b = static_cast(scale * convert(rgb[2]) + 0.5); +#ifndef USE_CORRECT_RGB_CONVERSION + if (c.r != 0) + c.r--; + if (c.g != 0) + c.g--; + if (c.b != 0) + c.b--; +#endif + return c; +} + + Color::Color(ColorCode base_color) : baseColor(base_color), mergeColor(Color_ignore) {} @@ -243,7 +286,6 @@ ColorSet::ColorSet() { Color_previewframe, N_("preview frame"), "previewframe", "black", "previewframe"}, { Color_inherit, N_("inherit"), "inherit", "black", "inherit" }, { Color_regexpframe, N_("regexp frame"), "green", "green", "green" }, - { Color_misspelled, N_("misspelled marking"), "misspelled", "red", "misspelled" }, { Color_ignore, N_("ignore"), "ignore", "black", "ignore" }, { Color_ignore, 0, 0, 0, 0 } };