]> git.lyx.org Git - features.git/blob - src/mathed/formula.C
first shot at preview is working
[features.git] / src / mathed / formula.C
1 /*
2 *  File:        formula.C
3 *  Purpose:     Implementation of formula inset
4 *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
5 *  Created:     January 1996
6 *  Description: Allows the edition of math paragraphs inside Lyx.
7 *
8 *  Copyright: 1996-1998 Alejandro Aguilar Sierra
9 *
10 *  Version: 0.4, Lyx project.
11 *
12 *   You are free to use and modify this code under the terms of
13 *   the GNU General Public Licence version 2 or later.
14 */
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include <config.h>
21
22 #include "formula.h"
23 #include "commandtags.h"
24 #include "math_cursor.h"
25 #include "math_parser.h"
26 #include "math_charinset.h"
27 #include "math_arrayinset.h"
28 #include "math_deliminset.h"
29 #include "lyx_main.h"
30 #include "BufferView.h"
31 #include "gettext.h"
32 #include "debug.h"
33 #include "frontends/Alert.h"
34 #include "support/LOstream.h"
35 #include "support/LAssert.h"
36 #include "support/filetools.h" // LibFileSearch
37 #include "frontends/LyXView.h"
38 #include "frontends/Painter.h"
39 #include "lyxrc.h"
40 #include "math_hullinset.h"
41 #include "math_support.h"
42 #include "math_mathmlstream.h"
43 #include "textpainter.h"
44 #include "preview.h"
45
46 #include "graphics/GraphicsCacheItem.h"
47
48 using std::ostream;
49 using std::ifstream;
50 using std::istream;
51 using std::pair;
52 using std::endl;
53 using std::vector;
54 using std::getline;
55
56
57
58 InsetFormula::InsetFormula()
59         : par_(MathAtom(new MathHullInset))
60 {}
61
62
63 InsetFormula::InsetFormula(MathInsetTypes t)
64         : par_(MathAtom(new MathHullInset(t)))
65 {}
66
67
68 InsetFormula::InsetFormula(string const & s)
69 {
70         if (s.size()) {
71                 bool res = mathed_parse_normal(par_, s);
72
73                 if (!res)
74                         res = mathed_parse_normal(par_, "$" + s + "$");
75
76                 if (!res) {
77                         lyxerr << "cannot interpret '" << s << "' as math\n";
78                         par_ = MathAtom(new MathHullInset(LM_OT_SIMPLE));
79                 }
80         }
81         metrics();
82 }
83
84
85 Inset * InsetFormula::clone(Buffer const &, bool) const
86 {
87         return new InsetFormula(*this);
88 }
89
90
91 void InsetFormula::write(Buffer const *, ostream & os) const
92 {
93         os << "Formula ";
94         WriteStream wi(os, false, false);
95         par_->write(wi);
96 }
97
98
99 int InsetFormula::latex(Buffer const *, ostream & os, bool fragile, bool) const
100 {
101         WriteStream wi(os, fragile, true);
102         par_->write(wi);
103         return wi.line();
104 }
105
106
107 int InsetFormula::ascii(Buffer const *, ostream & os, int) const
108 {
109 #if 0
110         TextMetricsInfo mi;
111         par()->metricsT(mi);
112         TextPainter tpain(par()->width(), par()->height());
113         par()->drawT(tpain, 0, par()->ascent());
114         tpain.show(os);
115         // reset metrics cache to "real" values
116         metrics();
117         return tpain.textheight();
118 #else
119         WriteStream wi(os, false, true);
120         par_->write(wi);
121         return wi.line();
122 #endif
123 }
124
125
126 int InsetFormula::linuxdoc(Buffer const * buf, ostream & os) const
127 {
128         return docbook(buf, os, false);
129 }
130
131
132 int InsetFormula::docbook(Buffer const * buf, ostream & os, bool) const
133 {
134         MathMLStream ms(os);
135         ms << MTag("equation");
136         ms <<   MTag("alt");
137         ms <<    "<[CDATA[";
138         int res = ascii(buf, ms.os(), 0);
139         ms <<    "]]>";
140         ms <<   ETag("alt");
141         ms <<   MTag("math");
142         ms <<    par_.nucleus();
143         ms <<   ETag("math");
144         ms << ETag("equation");
145         return ms.line() + res;
146 }
147
148
149 void InsetFormula::read(Buffer const *, LyXLex & lex)
150 {
151         mathed_parse_normal(par_, lex);
152         metrics();
153 }
154
155
156 //ostream & operator<<(ostream & os, LyXCursor const & c)
157 //{
158 //      os << '[' << c.x() << ' ' << c.y() << ' ' << c.pos() << ']';
159 //      return os;
160 //}
161
162
163 void InsetFormula::draw(BufferView * bv, LyXFont const & font,
164                         int y, float & xx, bool) const
165 {
166         metrics(bv, font);
167
168         int x = int(xx);
169         int w = par_->width();
170         int h = par_->height();
171         int a = par_->ascent();
172
173         MathPainterInfo pi(bv->painter());
174         pi.base.font  = font;
175         pi.base.font.setColor(LColor::math);
176         pi.base.style = display() ? LM_ST_DISPLAY : LM_ST_TEXT;
177
178         if (lcolor.getX11Name(LColor::mathbg)!=lcolor.getX11Name(LColor::background))
179                 pi.pain.fillRectangle(x, y - a, w, h, LColor::mathbg);
180
181         if (mathcursor &&
182                         const_cast<InsetFormulaBase const *>(mathcursor->formula()) == this)
183         {
184                 mathcursor->drawSelection(pi);
185                 pi.pain.rectangle(x, y - a, w, h, LColor::mathframe);
186         }
187
188         par_->draw(pi, x, y);
189
190         // preview stuff
191 #if 0
192         ostringstream os;
193         WriteStream wi(os, false, false);
194         par_->write(wi);
195         if (preview(os.str(), preview_)) {
196                 cerr << "image could be drawn\n";
197                 pi.pain.image(x + 40, y, 50, 50, *(preview_->image()));
198         }
199 #endif
200
201         xx += par_->width();
202         xo_ = x;
203         yo_ = y;
204
205         setCursorVisible(false);
206 }
207
208
209 vector<string> const InsetFormula::getLabelList() const
210 {
211         return hull()->getLabelList();
212 }
213
214
215 UpdatableInset::RESULT
216 InsetFormula::localDispatch(BufferView * bv, kb_action action,
217          string const & arg)
218 {
219         RESULT result = DISPATCHED;
220
221         switch (action) {
222
223                 case LFUN_BREAKLINE:
224                         bv->lockedInsetStoreUndo(Undo::INSERT);
225                         mathcursor->breakLine();
226                         mathcursor->normalize();
227                         updateLocal(bv, true);
228                         break;
229
230                 case LFUN_MATH_NUMBER:
231                 {
232                         //lyxerr << "toggling all numbers\n";
233                         if (display()) {
234                                 bv->lockedInsetStoreUndo(Undo::INSERT);
235                                 bool old = hull()->numberedType();
236                                 for (MathInset::row_type row = 0; row < par_->nrows(); ++row)
237                                         hull()->numbered(row, !old);
238                                 bv->owner()->message(old ? _("No number") : _("Number"));
239                                 updateLocal(bv, true);
240                         }
241                         break;
242                 }
243
244                 case LFUN_MATH_NONUMBER:
245                 {
246                         //lyxerr << "toggling line number\n";
247                         if (display()) {
248                                 bv->lockedInsetStoreUndo(Undo::INSERT);
249                                 MathCursor::row_type row = mathcursor->hullRow();
250                                 bool old = hull()->numbered(row);
251                                 bv->owner()->message(old ? _("No number") : _("Number"));
252                                 hull()->numbered(row, !old);
253                                 updateLocal(bv, true);
254                         }
255                         break;
256                 }
257
258                 case LFUN_INSERT_LABEL:
259                 {
260                         bv->lockedInsetStoreUndo(Undo::INSERT);
261
262                         MathCursor::row_type row = mathcursor->hullRow();
263                         string old_label = hull()->label(row);
264                         string new_label = arg;
265
266                         if (new_label.empty()) {
267                                 string const default_label =
268                                         (lyxrc.label_init_length >= 0) ? "eq:" : "";
269                                 pair<bool, string> const res = old_label.empty()
270                                         ? Alert::askForText(_("Enter new label to insert:"), default_label)
271                                         : Alert::askForText(_("Enter label:"), old_label);
272                                 if (!res.first)
273                                         break;
274                                 new_label = frontStrip(strip(res.second));
275                         }
276
277                         //if (new_label == old_label)
278                         //      break;  // Nothing to do
279
280                         if (!new_label.empty()) {
281                                 lyxerr << "setting label to '" << new_label << "'\n";
282                                 hull()->numbered(row, true);
283                         }
284
285 #warning FIXME: please check you really mean repaint() ... is it needed,
286 #warning and if so, should it be update() instead ? 
287                         if (!new_label.empty() && bv->ChangeRefsIfUnique(old_label, new_label))
288                                 bv->repaint();
289
290                         hull()->label(row, new_label);
291
292                         updateLocal(bv, true);
293                         break;
294                 }
295
296                 case LFUN_MATH_MUTATE:
297                 {
298                         bv->lockedInsetStoreUndo(Undo::EDIT);
299                         int x;
300                         int y;
301                         mathcursor->getPos(x, y);
302                         hull()->mutate(arg);
303                         mathcursor->setPos(x, y);
304                         mathcursor->normalize();
305                         updateLocal(bv, true);
306                         break;
307                 }
308
309                 case LFUN_MATH_EXTERN:
310                 {
311                         bv->lockedInsetStoreUndo(Undo::EDIT);
312                         if (mathcursor)
313                                 mathcursor->handleExtern(arg);
314                         // re-compute inset dimension
315                         metrics(bv);
316                         updateLocal(bv, true);
317                         break;
318                 }
319
320                 case LFUN_MATH_DISPLAY:
321                 {
322                         int x = 0;
323                         int y = 0;
324                         mathcursor->getPos(x, y);
325                         if (getType() == LM_OT_SIMPLE)
326                                 hull()->mutate(LM_OT_EQUATION);
327                         else
328                                 hull()->mutate(LM_OT_SIMPLE);
329                         mathcursor->setPos(x, y);
330                         mathcursor->normalize();
331                         updateLocal(bv, true);
332                         break;
333                 }
334
335                 case LFUN_PASTESELECTION:
336                 {
337                         string const clip = bv->getClipboard();
338                 if (!clip.empty())
339                                 mathed_parse_normal(par_, clip);
340                         break;
341                 }
342
343                 default:
344                         result = InsetFormulaBase::localDispatch(bv, action, arg);
345         }
346
347         return result;
348 }
349
350
351 bool InsetFormula::display() const
352 {
353         return getType() != LM_OT_SIMPLE;
354 }
355
356
357 MathHullInset const * InsetFormula::hull() const
358 {
359         lyx::Assert(par_->asHullInset());
360         return par_->asHullInset();
361 }
362
363
364 MathHullInset * InsetFormula::hull()
365 {
366         lyx::Assert(par_->asHullInset());
367         return par_->asHullInset();
368 }
369
370
371 Inset::Code InsetFormula::lyxCode() const
372 {
373         return Inset::MATH_CODE;
374 }
375
376
377 void InsetFormula::validate(LaTeXFeatures & features) const
378 {
379         par_->validate(features);
380 }
381
382
383 bool InsetFormula::insetAllowed(Inset::Code code) const
384 {
385         return
386                 (code == Inset::LABEL_CODE && display())
387                 || code == Inset::REF_CODE      
388                 || code == Inset::ERT_CODE;
389 }
390
391
392 int InsetFormula::ascent(BufferView *, LyXFont const &) const
393 {
394         return par_->ascent() + 1;
395 }
396
397
398 int InsetFormula::descent(BufferView *, LyXFont const &) const
399 {
400         return par_->descent() + 1;
401 }
402
403
404 int InsetFormula::width(BufferView * bv, LyXFont const & font) const
405 {
406         metrics(bv, font);
407         return par_->width();
408 }
409
410
411 MathInsetTypes InsetFormula::getType() const
412 {
413         return hull()->getType();
414 }