]> git.lyx.org Git - lyx.git/blob - src/lyxlength.C
remove broken xpm
[lyx.git] / src / lyxlength.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "lyxlength.h"
18 #include "lengthcommon.h"
19 #include "lyxrc.h"
20
21 #include "support/lstrings.h"
22
23 #include "Lsstream.h"
24
25 #include <cstdlib>
26
27 using std::abs;
28
29 LyXLength::LyXLength()
30         : val_(0), unit_(LyXLength::PT)
31 {}
32
33
34 LyXLength::LyXLength(double v, LyXLength::UNIT u)
35         : val_(v), unit_(u)
36 {}
37
38
39 LyXLength::LyXLength(string const & data)
40         : val_(0), unit_(LyXLength::PT)
41 {
42         LyXLength tmp;
43
44         if (!isValidLength(data, &tmp))
45                 return; // should raise an exception
46
47         val_  = tmp.val_;
48         unit_ = tmp.unit_;
49 }
50
51
52 string const LyXLength::asString() const
53 {
54         ostringstream buffer;
55         buffer << val_ << unit_name[unit_]; // setw?
56         return buffer.str().c_str();
57 }
58
59
60 string const LyXLength::asLatexString() const
61 {
62         ostringstream buffer;
63         switch (unit_) {
64         case PTW:
65             buffer << abs(static_cast<int>(val_/100)) << "."
66                    << abs(static_cast<int>(val_)%100) << "\\textwidth";
67             break;
68         case PCW:
69             buffer << abs(static_cast<int>(val_/100)) << "."
70                    << abs(static_cast<int>(val_)%100) << "\\columnwidth";
71             break;
72         case PPW:
73             buffer << abs(static_cast<int>(val_/100)) << "."
74                    << abs(static_cast<int>(val_)%100) << "\\paperwidth";
75             break;
76         case PLW:
77             buffer << abs(static_cast<int>(val_/100)) << "."
78                    << abs(static_cast<int>(val_)%100) << "\\linewidth";
79             break;
80         case PPH:
81             buffer << abs(static_cast<int>(val_/100)) << "."
82                    << abs(static_cast<int>(val_)%100) << "\\paperheight";
83             break;
84         case PTH:
85             buffer << abs(static_cast<int>(val_/100)) << "."
86                    << abs(static_cast<int>(val_)%100) << "\\textheight";
87             break;
88         default:
89             buffer << val_ << unit_name[unit_]; // setw?
90             break;
91         }
92         return buffer.str().c_str();
93 }
94
95
96 double LyXLength::value() const
97 {
98         return val_;
99 }
100
101
102 LyXLength::UNIT LyXLength::unit() const
103 {
104         return unit_;
105 }
106
107
108 void LyXLength::value(double v)
109 {
110         val_ = v;
111 }
112
113
114 void LyXLength::unit(LyXLength::UNIT u)
115 {
116         unit_ = u;
117 }
118
119
120 bool LyXLength::zero() const
121 {
122         return val_ == 0.0;
123 }
124
125
126 int LyXLength::inPixels(int default_width, int default_height) const
127 {
128         // Zoom factor specified by user in percent
129         double const zoom = lyxrc.zoom / 100.0; // [percent]
130
131         // DPI setting for monitor: pixels/inch
132         double const dpi = lyxrc.dpi; // screen resolution [pixels/inch]
133
134         // Pixel values are scaled so that the ratio
135         // between lengths and font sizes on the screen
136         // is the same as on paper.
137
138         // we don't care about sign of value, we
139         // display negative space with text too
140 #ifdef WITH_WARNINGS
141 #warning if you don't care than either call this function differently or let it return negative values and call abs() explicitly when needed (Andre')
142 #endif
143
144         double result = 0.0;
145         int val_sign = val_ < 0.0 ? -1 : 1;
146
147         switch (unit_) {
148         case LyXLength::SP:
149                 // Scaled point: sp = 1/65536 pt
150                 result = zoom * dpi * val_
151                         / (72.27 * 65536); // 4736286.7
152                 break;
153         case LyXLength::PT:
154                 // Point: 1 pt = 1/72.27 inch
155                 result = zoom * dpi * val_
156                         / 72.27; // 72.27
157                 break;
158         case LyXLength::BP:
159                 // Big point: 1 bp = 1/72 inch
160                 result = zoom * dpi * val_
161                         / 72; // 72
162                 break;
163         case LyXLength::DD:
164                 // Didot: 1157dd = 1238 pt?
165                 result = zoom * dpi * val_
166                         / (72.27 / (0.376 * 2.845)); // 67.559735
167                 break;
168         case LyXLength::MM:
169                 // Millimeter: 1 mm = 1/25.4 inch
170                 result = zoom * dpi * val_
171                         / 25.4; // 25.4
172                 break;
173         case LyXLength::PC:
174                 // Pica: 1 pc = 12 pt
175                 result = zoom * dpi * val_
176                         / (72.27 / 12); // 6.0225
177                 break;
178         case LyXLength::CC:
179                 // Cicero: 1 cc = 12 dd
180                 result = zoom * dpi * val_
181                         / (72.27 / (12 * 0.376 * 2.845)); // 5.6299779
182                 break;
183         case LyXLength::CM:
184                 // Centimeter: 1 cm = 1/2.54 inch
185                 result = zoom * dpi * val_
186                         / 2.54; // 2.54
187                 break;
188         case LyXLength::IN:
189                 // Inch
190                 result = zoom * dpi * val_;
191                 break;
192         case LyXLength::EX:
193                 // Ex: The height of an "x"
194                 result = zoom * val_ * default_height / 2; // what to / width?
195                 break;
196         case LyXLength::EM: // what to / width?
197                 // Em: The width of an "m"
198                 result = zoom * val_ * default_height / 2; // Why 2?
199                 break;
200         case LyXLength::MU: // This is probably only allowed in
201                 // math mode
202                 result = zoom * val_ * default_height;
203                 break;
204         case LyXLength::PCW: // Always % of workarea
205         case LyXLength::PTW:
206         case LyXLength::PPW:
207         case LyXLength::PLW:
208                 result = val_ * default_width / 100;
209                 break;
210         case LyXLength::PTH:
211         case LyXLength::PPH:
212                 result = val_ * default_height / 100;
213                 break;
214         case LyXLength::UNIT_NONE:
215                 result = 0;  // this cannot happen
216                 break;
217         }
218         return static_cast<int>(result * val_sign + 0.5);
219 }
220
221
222 int LyXLength::inBP() const
223 {
224         // return any LyXLength value as a one with
225         // the PostScript point, called bp (big points)
226         double result = 0.0;
227         switch (unit_) {
228         case LyXLength::CM:
229                 // 1bp = 0.2835cm
230                 result = val_ * 28.346;
231                 break;
232         case LyXLength::MM:
233                 // 1bp = 0.02835mm
234                 result = val_ * 2.8346;
235                 break;
236         case LyXLength::IN:
237                 // 1pt = 1/72in
238                 result = val_ * 72.0;
239                 break;
240         default:
241                 // no other than bp possible
242                 result = val_;
243                 break;
244         }
245         return static_cast<int>(result + 0.5);
246 }
247
248
249 bool operator==(LyXLength const & l1, LyXLength const & l2)
250 {
251         return l1.value() == l2.value() && l1.unit() == l2.unit();
252 }
253
254
255 bool operator!=(LyXLength const & l1, LyXLength const & l2)
256 {
257         return !(l1 == l2);
258 }