]> git.lyx.org Git - lyx.git/blob - src/mathed/formula.C
more IU
[lyx.git] / src / mathed / formula.C
1 /**
2  * \file formula.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "formula.h"
15 #include "math_cursor.h"
16 #include "math_parser.h"
17 #include "math_hullinset.h"
18 #include "math_mathmlstream.h"
19 #include "textpainter.h"
20
21 #include "BufferView.h"
22 #include "debug.h"
23 #include "LColor.h"
24 #include "lyx_main.h"
25 #include "outputparams.h"
26
27 #include "frontends/Painter.h"
28
29 #include "graphics/PreviewLoader.h"
30
31 #include "insets/render_preview.h"
32
33 #include "support/std_sstream.h"
34
35 #include <boost/bind.hpp>
36
37 using std::string;
38 using std::ostream;
39 using std::ostringstream;
40 using std::vector;
41 using std::auto_ptr;
42 using std::endl;
43
44
45 InsetFormula::InsetFormula(bool chemistry)
46         : par_(MathAtom(new MathHullInset)),
47           preview_(new RenderPreview)
48 {
49         preview_->connect(boost::bind(&InsetFormula::statusChanged, this));
50         if (chemistry)
51                 mutate("chemistry");
52 }
53
54
55 InsetFormula::InsetFormula(InsetFormula const & other)
56         : InsetFormulaBase(other),
57           par_(other.par_),
58           preview_(new RenderPreview)
59 {
60         preview_->connect(boost::bind(&InsetFormula::statusChanged, this));
61 }
62
63
64 InsetFormula::InsetFormula(BufferView *)
65         : par_(MathAtom(new MathHullInset)),
66           preview_(new RenderPreview)
67 {
68         preview_->connect(boost::bind(&InsetFormula::statusChanged, this));
69 }
70
71
72 InsetFormula::InsetFormula(string const & data)
73         : par_(MathAtom(new MathHullInset)),
74           preview_(new RenderPreview)
75 {
76         preview_->connect(boost::bind(&InsetFormula::statusChanged, this));
77         if (!data.size())
78                 return;
79         if (!mathed_parse_normal(par_, data))
80                 lyxerr << "cannot interpret '" << data << "' as math" << endl;
81 }
82
83
84 InsetFormula::~InsetFormula()
85 {}
86
87
88 auto_ptr<InsetBase> InsetFormula::clone() const
89 {
90         return auto_ptr<InsetBase>(new InsetFormula(*this));
91 }
92
93
94 void InsetFormula::write(Buffer const &, ostream & os) const
95 {
96         WriteStream wi(os, false, false);
97         os << par_->fileInsetLabel() << ' ';
98         par_->write(wi);
99 }
100
101
102 int InsetFormula::latex(Buffer const &, ostream & os,
103                         OutputParams const & runparams) const
104 {
105         WriteStream wi(os, runparams.moving_arg, true);
106         par_->write(wi);
107         return wi.line();
108 }
109
110
111 int InsetFormula::plaintext(Buffer const &, ostream & os,
112                         OutputParams const &) const
113 {
114         if (0 && display()) {
115                 Dimension dim;
116                 TextMetricsInfo mi;
117                 par()->metricsT(mi, dim);
118                 TextPainter tpain(dim.width(), dim.height());
119                 par()->drawT(tpain, 0, dim.ascent());
120                 tpain.show(os, 3);
121                 // reset metrics cache to "real" values
122                 //metrics();
123                 return tpain.textheight();
124         } else {
125                 WriteStream wi(os, false, true);
126                 wi << ' ' << (par_->asNestInset()->cell(0)) << ' ';
127                 return wi.line();
128         }
129 }
130
131
132 int InsetFormula::linuxdoc(Buffer const & buf, ostream & os,
133                            OutputParams const & runparams) const
134 {
135         return docbook(buf, os, runparams);
136 }
137
138
139 int InsetFormula::docbook(Buffer const & buf, ostream & os,
140                           OutputParams const & runparams) const
141 {
142         MathMLStream ms(os);
143         ms << MTag("equation");
144         ms <<   MTag("alt");
145         ms <<    "<[CDATA[";
146         int res = plaintext(buf, ms.os(), runparams);
147         ms <<    "]]>";
148         ms <<   ETag("alt");
149         ms <<   MTag("math");
150         ms <<    par_;
151         ms <<   ETag("math");
152         ms << ETag("equation");
153         return ms.line() + res;
154 }
155
156
157 void InsetFormula::read(Buffer const &, LyXLex & lex)
158 {
159         mathed_parse_normal(par_, lex);
160         // remove extra 'mathrm' for chemistry stuff.
161         // will be re-added on write
162         if (par_->asHullInset()->getType() =="chemistry")  {
163                 lyxerr << "this is chemistry" << endl;
164                 if (par_->cell(0).size() == 1) {
165                         lyxerr << "this is size 1" << endl;
166                         if (par_->cell(0)[0]->asFontInset()) {
167                                 lyxerr << "this is a font inset "
168                                        << "replacing " << par_.nucleus()->cell(0) <<
169                                         " with " << par_->cell(0)[0]->cell(0) << endl;
170                         }
171                 }
172         }
173         //metrics();
174 }
175
176
177 namespace {
178
179 bool editing_inset(InsetFormula const * inset)
180 {
181         return mathcursor &&
182                 (const_cast<InsetFormulaBase const *>(mathcursor->formula()) ==
183                  inset);
184 }
185
186 } // namespace anon
187
188
189 void InsetFormula::draw(PainterInfo & pi, int x, int y) const
190 {
191         xo_ = x;
192         yo_ = y;
193
194         // The previews are drawn only when we're not editing the inset.
195         bool const use_preview = !editing_inset(this)
196                 && RenderPreview::activated()
197                 && preview_->previewReady();
198
199         int const w = dim_.wid;
200         int const d = dim_.des;
201         int const a = dim_.asc;
202         int const h = a + d;
203
204         if (use_preview) {
205                 // one pixel gap in front
206                 preview_->draw(pi, x + 1, y);
207         } else {
208                 PainterInfo p(pi.base.bv);
209                 p.base.style = LM_ST_TEXT;
210                 p.base.font  = pi.base.font;
211                 p.base.font.setColor(LColor::math);
212                 if (lcolor.getX11Name(LColor::mathbg)
213                             != lcolor.getX11Name(LColor::background))
214                         p.pain.fillRectangle(x, y - a, w, h, LColor::mathbg);
215
216                 if (editing_inset(this)) {
217                         mathcursor->drawSelection(pi);
218                         //p.pain.rectangle(x, y - a, w, h, LColor::mathframe);
219                 }
220
221                 par_->draw(p, x, y);
222         }
223 }
224
225
226 void InsetFormula::getLabelList(Buffer const & buffer,
227                                 vector<string> & res) const
228 {
229         par()->getLabelList(buffer, res);
230 }
231
232
233 InsetOld::Code InsetFormula::lyxCode() const
234 {
235         return InsetOld::MATH_CODE;
236 }
237
238
239 void InsetFormula::validate(LaTeXFeatures & features) const
240 {
241         par_->validate(features);
242 }
243
244
245 bool InsetFormula::insetAllowed(InsetOld::Code code) const
246 {
247         return
248                    code == InsetOld::LABEL_CODE
249                 || code == InsetOld::REF_CODE
250                 || code == InsetOld::ERT_CODE;
251 }
252
253
254 void InsetFormula::metrics(MetricsInfo & m, Dimension & dim) const
255 {
256         bool const use_preview = !editing_inset(this)
257                 && RenderPreview::activated()
258                 && preview_->previewReady();
259
260         if (use_preview) {
261                 preview_->metrics(m, dim);
262                 // insert a one pixel gap in front of the formula
263                 dim.wid += 1;
264                 if (display())
265                         dim.des += 12;
266         } else {
267                 MetricsInfo mi = m;
268                 mi.base.style = LM_ST_TEXT;
269                 mi.base.font.setColor(LColor::math);
270                 par()->metrics(mi, dim);
271                 dim.asc += 1;
272                 dim.des += 1;
273         }
274
275         dim_ = dim;
276 }
277
278
279 void InsetFormula::mutate(string const & type)
280 {
281         par_.nucleus()->mutate(type);
282 }
283
284
285 //
286 // preview stuff
287 //
288
289 void InsetFormula::statusChanged() const
290 {
291         LyX::cref().updateInset(this);
292 }
293
294
295 namespace {
296
297 string const latex_string(InsetFormula const & inset, Buffer const &)
298 {
299         ostringstream os;
300         WriteStream wi(os, false, false);
301         inset.par()->write(wi);
302         return os.str();
303 }
304
305 } // namespace anon
306
307
308 void InsetFormula::addPreview(lyx::graphics::PreviewLoader & ploader) const
309 {
310         string const snippet = latex_string(*this, ploader.buffer());
311         preview_->addPreview(snippet, ploader);
312 }
313
314
315 void InsetFormula::generatePreview(Buffer const & buffer) const
316 {
317         string const snippet = latex_string(*this, buffer);
318         preview_->addPreview(snippet, buffer);
319         preview_->startLoading(buffer);
320 }