]> git.lyx.org Git - lyx.git/blob - src/lengthcommon.cpp
f76093800e4b2f717907d7d0e1ea210a74b18fca
[lyx.git] / src / lengthcommon.cpp
1 /**
2  * \file lengthcommon.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Matthias Ettrich
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "Length.h"
16 #include "gettext.h"
17
18 #include <string>
19
20
21 namespace lyx {
22
23 using std::string;
24
25 // I am not sure if "mu" should be possible to select (Lgb)
26
27 // the latex units
28 char const * const unit_name[] = {
29         "sp", "pt", "bp", "dd", "mm", "pc",
30         "cc", "cm", "in", "ex", "em", "mu",
31         "text%",  "col%", "page%", "line%",
32         "theight%", "pheight%", "" };
33
34 int const num_units = int(sizeof(unit_name) / sizeof(unit_name[0]) - 1);
35
36 // the LyX gui units
37 char const * const unit_name_gui[] = {
38         N_("sp"), N_("pt"), N_("bp"), N_("dd"), N_("mm"), N_("pc"),
39         N_("cc[[unit of measure]]"), N_("cm"), N_("in"), N_("ex"), N_("em"), N_("mu"),
40         N_("Text Width %"), N_("Column Width %"), N_("Page Width %"), N_("Line Width %"),
41         N_("Text Height %"), N_("Page Height %"), "" };
42
43 Length::UNIT unitFromString(string const & data)
44 {
45         int i = 0;
46         while (i < num_units && data != unit_name[i])
47                 ++i;
48         return static_cast<Length::UNIT>(i);
49 }
50
51
52 } // namespace lyx