X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flengthcommon.C;h=dfabab4e7dbdc95206e8ae3827ac789ea5f9ecf9;hb=2523638092e2024bac408eee98ad2094bc4e4089;hp=071cda6e4438d97a128f790982a6d5e1986a9e82;hpb=2e385ab589e5ccc90f3a13aa45b2c5fca3b02d60;p=lyx.git diff --git a/src/lengthcommon.C b/src/lengthcommon.C index 071cda6e44..dfabab4e7d 100644 --- a/src/lengthcommon.C +++ b/src/lengthcommon.C @@ -10,40 +10,40 @@ int const num_units = LyXLength::UNIT_NONE; // I am not sure if "mu" should be possible to select (Lgb) // unit_name is for compatibility. Can be deleted when all works well. -// means, when we have full language support for the lengths -// in all gui's (Herbert 2002-11-01) -char const * unit_name[num_units] = { - "sp", "pt", "bp", "dd", "mm", "pc", - "cc", "cm", "in", "ex", "em", "mu", +// means, when we have full language support for the lengths +// in all gui's (Herbert 2002-11-01) +char const * unit_name[num_units] = { + "sp", "pt", "bp", "dd", "mm", "pc", + "cc", "cm", "in", "ex", "em", "mu", "text%", "col%", "page%", "line%", - "theight%", "pheight%" }; + "theight%", "pheight%" }; // the latex units -char const * unit_name_ltx[num_units] = { - "sp", "pt", "bp", "dd", "mm", "pc", - "cc", "cm", "in", "ex", "em", "mu", +char const * unit_name_ltx[num_units] = { + "sp", "pt", "bp", "dd", "mm", "pc", + "cc", "cm", "in", "ex", "em", "mu", // in 1.4 the following names should be used. then no // translation into the latex ones are needed // "textheight", "columnwidth", "pagewidth", "linewidth", -// "textheight", "pageheight" }; +// "textheight", "pageheight" }; "text%", "col%", "page%", "line%", - "theight%", "pheight%" }; + "theight%", "pheight%" }; // the LyX gui units -char const * unit_name_gui[num_units] = { - N_("sp"), N_("pt"), N_("bp"), N_("dd"), N_("mm"), N_("pc"), - N_("cc"), N_("cm"), N_("in"), N_("ex"), N_("em"), N_("mu"), +char const * unit_name_gui[num_units] = { + N_("sp"), N_("pt"), N_("bp"), N_("dd"), N_("mm"), N_("pc"), + N_("cc"), N_("cm"), N_("in"), N_("ex"), N_("em"), N_("mu"), N_("text%"), N_("col%"), N_("page%"), N_("line%"), - N_("theight%"), N_("pheight%") }; + N_("theight%"), N_("pheight%") }; // this one maybe better ???? but there can be problems with // xforms (Herbert) // N_("textwidth%"), N_("columnwidth%"), N_("pagewidth%"), N_("linewidth%"), -// N_("textheight%"), N_("pageheight%") }; +// N_("textheight%"), N_("pageheight%") }; // or altenative this ones // N_("twidth%"), N_("cwidth%"), N_("pwidth%"), N_("lwidth%"), -// N_("theight%"), N_("pheight%") }; +// N_("theight%"), N_("pheight%") }; LyXLength::UNIT unitFromString(string const & data) { @@ -52,4 +52,3 @@ LyXLength::UNIT unitFromString(string const & data) ++i; return static_cast(i); } -