X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flengthcommon.C;h=dde8d54c169c5440bd11972b6683fa774217f08b;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=6e90ceff3a8a5245177b68bd97f6879b81d4923f;hpb=ff9b02aabae2253d4176bfd0f2d668ab97d7f908;p=lyx.git diff --git a/src/lengthcommon.C b/src/lengthcommon.C index 6e90ceff3a..dde8d54c16 100644 --- a/src/lengthcommon.C +++ b/src/lengthcommon.C @@ -1,15 +1,43 @@ +/** + * \file lengthcommon.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * \author Matthias Ettrich + * \author John Levon + * + * Full author contact details are available in file CREDITS. + */ + #include #include "lengthcommon.h" -int const num_units = LyXLength::UNIT_NONE; +#include "gettext.h" + + +namespace lyx { + +using std::string; // I am not sure if "mu" should be possible to select (Lgb) -char const * unit_name[num_units] = { "sp", "pt", "bp", "dd", - "mm", "pc", "cc", "cm", - "in", "ex", "em", "mu", - "%", "c%", "p%", "l%" }; +// the latex units +char const * const unit_name[] = { + "sp", "pt", "bp", "dd", "mm", "pc", + "cc", "cm", "in", "ex", "em", "mu", + "text%", "col%", "page%", "line%", + "theight%", "pheight%", "" }; + +int const num_units = int(sizeof(unit_name) / sizeof(unit_name[0]) - 1); + +// the LyX gui units +char const * const unit_name_gui[] = { + 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 Width %"), N_("Column Width %"), N_("Page Width %"), N_("Line Width %"), + N_("Text Height %"), N_("Page Height %"), "" }; LyXLength::UNIT unitFromString(string const & data) { @@ -18,3 +46,6 @@ LyXLength::UNIT unitFromString(string const & data) ++i; return static_cast(i); } + + +} // namespace lyx