]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathString.cpp
Produce a cleaner latex output by avoiding \lyxmathsym when in text mode
[features.git] / src / mathed / InsetMathString.cpp
1 /**
2  * \file InsetMathString.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathString.h"
14 #include "MathStream.h"
15 #include "MathSupport.h"
16
17 #include "Encoding.h"
18
19 #include "support/gettext.h"
20 #include "support/lstrings.h"
21 #include "support/textutils.h"
22
23
24 namespace lyx {
25
26 InsetMathString::InsetMathString(docstring const & s)
27         : str_(s)
28 {}
29
30
31 Inset * InsetMathString::clone() const
32 {
33         return new InsetMathString(*this);
34 }
35
36
37 void InsetMathString::metrics(MetricsInfo & mi, Dimension & dim) const
38 {
39         mathed_string_dim(mi.base.font, str_, dim);
40 }
41
42
43 void InsetMathString::draw(PainterInfo & pi, int x, int y) const
44 {
45         pi.draw(x, y, str_);
46 }
47
48
49 void InsetMathString::normalize(NormalStream & os) const
50 {
51         os << "[string " << str_ << ' ' << "mathalpha" << ']';
52 }
53
54
55 void InsetMathString::maple(MapleStream & os) const
56 {
57         if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
58                 os << ' ' << str_ << ' ';
59                 return;
60         }
61
62         // insert '*' between adjacent chars if type is LM_TC_VAR
63         os << str_[0];
64         for (size_t i = 1; i < str_.size(); ++i)
65                 os << str_[i];
66 }
67
68
69 void InsetMathString::mathematica(MathematicaStream & os) const
70 {
71         os << ' ' << str_ << ' ';
72 }
73
74
75 void InsetMathString::octave(OctaveStream & os) const
76 {
77         if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
78                 os << ' ' << str_ << ' ';
79                 return;
80         }
81
82         // insert '*' between adjacent chars if type is LM_TC_VAR
83         os << str_[0];
84         for (size_t i = 1; i < str_.size(); ++i)
85                 os << str_[i];
86 }
87
88
89 void InsetMathString::mathmlize(MathStream & os) const
90 {
91 /*
92         if (code_ == LM_TC_VAR)
93                 os << "<mi> " << str_ << " </mi>";
94         else if (code_ == LM_TC_CONST)
95                 os << "<mn> " << str_ << " </mn>";
96         else if (code_ == LM_TC_RM || code_ == LM_TC_TEXTRM)
97                 os << "<mtext> " << str_ <<  " </mtext>";
98         else
99 */
100                 os << str_;
101 }
102
103
104 void InsetMathString::write(WriteStream & os) const
105 {
106         if (!os.latex()) {
107                 os << str_;
108                 return;
109         }
110
111         docstring::const_iterator cit = str_.begin();
112         docstring::const_iterator end = str_.end();
113
114         bool in_forced_mode = false;
115         while (cit != end) {
116                 char_type const c = *cit;
117                 try {
118                         docstring command(1, c);
119                         if (c < 0x80 || Encodings::latexMathChar(c, command)) {
120                                 if (os.textMode()) {
121                                         if (c < 0x80 && in_forced_mode) {
122                                                 os << '}';
123                                                 in_forced_mode = false;
124                                         }
125                                         if (c >= 0x80 && !in_forced_mode) {
126                                                 os << "\\ensuremath{";
127                                                 in_forced_mode = true;
128                                         }
129                                 } else if (in_forced_mode) {
130                                         os << '}';
131                                         in_forced_mode = false;
132                                 }
133                         } else {
134                                 if (os.textMode()) {
135                                         if (in_forced_mode) {
136                                                 os << '}';
137                                                 in_forced_mode = false;
138                                         }
139                                 } else if (!in_forced_mode) {
140                                         os << "\\lyxmathsym{";
141                                         in_forced_mode = true;
142                                 }
143                         }
144                         os << command;
145                         // We may need a space if the command contains a macro
146                         // and the last char is ASCII.
147                         if (lyx::support::contains(command, '\\')
148                             && isAlphaASCII(command[command.size() - 1]))
149                                 os.pendingSpace(true);
150                 } catch (EncodingException & e) {
151                         if (os.dryrun()) {
152                                 // FIXME: this is OK for View->Source
153                                 // but math preview will likely fail.
154                                 os << "<" << _("LyX Warning: ")
155                                    << _("uncodable character") << " '";
156                                 os << docstring(1, e.failed_char);
157                                 os << "'>";
158                         } else {
159                                 // throw again
160                                 throw(e);
161                         }
162                 }
163                 ++cit;
164         }
165         if (in_forced_mode)
166                 os << '}';
167 }
168
169
170 } // namespace lyx