]> git.lyx.org Git - lyx.git/blob - src/lyxlength.h
fix typo that put too many include paths for most people
[lyx.git] / src / lyxlength.h
1 // -*- C++ -*-
2 /**
3  * \file lyxlength.h
4  * Copyright 1995-2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Matthias Ettrich
8  */
9
10
11 #ifndef LYX_LENGTH_H
12 #define LYX_LENGTH_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "LString.h"
19
20 /**
21  * LyXLength - Represents latex length measurement
22  */
23 class LyXLength {
24 public:
25         /// length units
26         enum UNIT {
27                 SP, ///< Scaled point (65536sp = 1pt) TeX's smallest unit.
28                 PT, ///< Point = 1/72.27in = 0.351mm
29                 BP, ///< Big point (72bp = 1in), also PostScript point
30                 DD, ///< Didot point = 1/72 of a French inch, = 0.376mm
31                 MM, ///< Millimeter = 2.845pt
32                 PC, ///< Pica = 12pt = 4.218mm
33                 CC, ///< Cicero = 12dd = 4.531mm
34                 CM, ///< Centimeter = 10mm = 2.371pc
35                 IN, ///< Inch = 25.4mm = 72.27pt = 6.022pc
36                 EX, ///< Height of a small "x" for the current font.
37                 EM, ///< Width of capital "M" in current font.
38                 MU, ///< Math unit (18mu = 1em) for positioning in math mode
39                 PW, ///< Percent of columnwidth both "%" or "%c"
40                 PE, ///< FIXME
41                 PP, ///< Percent of pagewidth
42                 PL, ///< Percent of linewidth
43                 UNIT_NONE ///< no unit
44         };
45
46         ///
47         LyXLength();
48         ///
49         LyXLength(double v, LyXLength::UNIT u);
50
51         /// "data" must be a decimal number, followed by a unit
52         explicit LyXLength(string const & data);
53
54         ///
55         double value() const;
56         ///
57         LyXLength::UNIT unit() const;
58         ///
59         void value(double);
60         ///
61         void unit(LyXLength::UNIT unit);
62         ///
63         bool zero() const;
64         /// return string representation
65         string const asString() const;
66         /// return string representation for LaTeX
67         string const asLatexString() const;
68         /// return the on-screen size of this length
69         int inPixels(int default_width, int default_height) const;
70
71         /** If "data" is valid, the length represented by it is
72           stored into "result", if that is not 0. */
73         friend bool isValidLength(string const & data, LyXLength * result = 0);
74
75 private:
76         ///
77         double          val_;
78         ///
79         LyXLength::UNIT unit_;
80 };
81
82 ///
83 bool operator==(LyXLength const & l1, LyXLength const & l2);
84 ///
85 bool operator!=(LyXLength const & l1, LyXLength const & l2);
86 ///
87 bool isValidLength(string const & data, LyXLength * result);
88 /// return the name of the given unit number
89 char const * stringFromUnit(int unit);
90
91 #endif // LYXLENGTH_H