]> git.lyx.org Git - lyx.git/blob - src/Length.h
Fix #10778 (issue with CJK and language nesting)
[lyx.git] / src / Length.h
1 // -*- C++ -*-
2 /**
3  * \file Length.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Matthias Ettrich
8  * \author Lars Gullik Bjønnes
9  * \author Jean-Marc Lasgouttes
10  * \author John Levon
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef LENGTH_H
16 #define LENGTH_H
17
18 #include "support/strfwd.h"
19
20
21 namespace lyx {
22
23 class MetricsBase;
24
25 // Solaris/x86 version 9 and earlier define these
26 #undef PC
27 #undef SP
28
29 /////////////////////////////////////////////////////////////////////
30 //
31 // Length
32 //
33 /////////////////////////////////////////////////////////////////////
34
35
36 /**
37  * Length - Represents latex length measurement
38  */
39 class Length {
40 public:
41         /// length units
42         enum UNIT {
43                 BP, ///< Big point (72bp = 1in), also PostScript point
44                 CC, ///< Cicero = 12dd = 4.531mm
45                 CM, ///< Centimeter = 10mm = 2.371pc
46                 DD, ///< Didot point = 1/72 of a French inch, = 0.376mm
47                 EM, ///< Width of capital "M" in current font.
48                 EX, ///< Height of a small "x" for the current font.
49                 IN, ///< Inch = 25.4mm = 72.27pt = 6.022pc
50                 MM, ///< Millimeter = 2.845pt
51                 MU, ///< Math unit (18mu = 1em) for positioning in math mode
52                 PC, ///< Pica = 12pt = 4.218mm
53                 PT, ///< Point = 1/72.27in = 0.351mm
54                 SP, ///< Scaled point (65536sp = 1pt) TeX's smallest unit.
55                 PTW, //< Percent of TextWidth
56                 PCW, //< Percent of ColumnWidth
57                 PPW, //< Percent of PageWidth
58                 PLW, //< Percent of LineWidth
59                 PTH, //< Percent of TextHeight          // Herbert 2002-05-16
60                 PPH, //< Percent of PaperHeight         // Herbert 2002-05-16
61                 UNIT_NONE ///< no unit
62         };
63
64         ///
65         Length();
66         ///
67         Length(double v, Length::UNIT u);
68
69         /// "data" must be a decimal number, followed by a unit
70         explicit Length(std::string const & data);
71
72         ///
73         double value() const;
74         ///
75         Length::UNIT unit() const;
76         ///
77         void value(double);
78         ///
79         void unit(Length::UNIT unit);
80         ///
81         bool zero() const;
82         ///
83         bool empty() const;
84         /// return string representation
85         std::string const asString() const;
86         /// return string representation
87         docstring const asDocstring() const;
88         /// return string representation for LaTeX
89         std::string const asLatexString() const;
90         /// return string representation for HTML
91         std::string const asHTMLString() const;
92         /** return the on-screen size of this length.
93          *
94          *      If the second argument is not provided, then the unit EM will
95          *      only be approximated. It is better if possible to use
96          *      FontMetrics::em() to get this value.
97          */
98         int inPixels(int text_width, int em_width = 0) const;
99         /** return the on-screen size of this length
100          *
101          *  This version of the function uses the right EM definition.
102          */
103         int inPixels(MetricsBase const &) const;
104         /// return the value in Big Postscript points.
105         /// Caution: Inaccurate for em, ex, mu and percent units.
106         int inBP() const;
107
108         /// return the default unit (centimeter or inch)
109         static UNIT defaultUnit();
110
111         friend bool isValidLength(std::string const & data, Length * result);
112
113 private:
114         /// Convert value to inch for text width and em width given in inch
115         double inInch(double text_width, double em_width) const;
116         ///
117         double val_;
118         ///
119         Length::UNIT unit_;
120 };
121
122 ///
123 bool operator==(Length const & l1, Length const & l2);
124 ///
125 bool operator!=(Length const & l1, Length const & l2);
126 /** Test whether \p data represents a valid length.
127  *
128  * \returns whether \p data is a valid length
129  * \param data Length in LyX format. Since the only difference between LyX
130  * and LaTeX format is the representation of length variables as units (e.g.
131  * \c text% vs. \c \\textwidth) you can actually use this function as well
132  * for testing LaTeX lengths as long as they only contain real units like pt.
133  * \param result Pointer to a Length variable. If \p result is not 0 and
134  * \p data is valid, the length represented by it is stored into \p result.
135  */
136 bool isValidLength(std::string const & data, Length * result = 0);
137 /// return the LyX name of the given unit number
138 char const * stringFromUnit(int unit);
139
140
141 /////////////////////////////////////////////////////////////////////
142 //
143 // GlueLength
144 //
145 /////////////////////////////////////////////////////////////////////
146
147 class GlueLength {
148 public:
149         ///
150         GlueLength() {}
151         ///
152         explicit GlueLength(Length const & len);
153         ///
154         GlueLength(Length const & len,
155                       Length const & plus,
156                       Length const & minus);
157
158         /** "data" must be a decimal number, followed by a unit, and
159           optional "glue" indicated by "+" and "-".  You may abbreviate
160           reasonably.  Examples:
161           1.2 cm  //  4mm +2pt  //  2cm -4mm +2mm  //  4+0.1-0.2cm
162           The traditional Latex format is also accepted, like
163           4cm plus 10pt minus 10pt */
164         explicit GlueLength(std::string const & data);
165
166         ///
167         Length const & len() const;
168         ///
169         Length const & plus() const;
170         ///
171         Length const & minus() const;
172
173
174         /// conversion
175         std::string const asString() const;
176         ///
177         std::string const asLatexString() const;
178
179         friend bool isValidGlueLength(std::string const & data,
180                                       GlueLength* result);
181
182 private:
183         /// the normal vlaue
184         Length len_;
185         /// extra stretch
186         Length plus_;
187         /// extra shrink
188         Length minus_;
189 };
190
191 ///
192 bool operator==(GlueLength const & l1, GlueLength const & l2);
193 ///
194 bool operator!=(GlueLength const & l1, GlueLength const & l2);
195 /** If "data" is valid, the length represented by it is
196     stored into "result", if that is not 0. */
197 bool isValidGlueLength(std::string const & data, GlueLength * result = 0);
198
199 /// the number of units possible
200 extern int const num_units;
201
202 /**
203  * array of unit names
204  *
205  * FIXME: I am not sure if "mu" should be possible to select (Lgb)
206  */
207 extern char const * const unit_name[];
208 extern char const * const unit_name_gui[];
209
210 /// return the unit given a string representation such as "cm"
211 Length::UNIT unitFromString(std::string const & data);
212
213
214 } // namespace lyx
215
216 #endif // LENGTH_H