]> git.lyx.org Git - lyx.git/blob - src/mathed/formulamacro.C
a04e1b09488243a430768fe4e483a6f221b1964e
[lyx.git] / src / mathed / formulamacro.C
1 /*
2  *  File:        formulamacro.C
3  *  Purpose:     Implementation of the formula macro LyX inset
4  *  Author:      André Pönitz, based on ideas of Alejandro Aguilar Sierra
5  *  Created:     March 2001
6  *  Description: Allows the edition of math macros inside Lyx.
7  *
8  *  Copyright: 2001  The LyX Project
9  *
10  *   You are free to use and modify this code under the terms of
11  *   the GNU General Public Licence version 2 or later.
12  */
13
14 #include <config.h>
15
16 #include "formulamacro.h"
17 #include "lfuns.h"
18 #include "math_cursor.h"
19 #include "math_parser.h"
20 #include "math_macro.h"
21 #include "math_macrotable.h"
22 #include "math_macrotemplate.h"
23 #include "metricsinfo.h"
24 #include "math_support.h"
25 #include "math_mathmlstream.h"
26 #include "BufferView.h"
27 #include "gettext.h"
28 #include "latexrunparams.h"
29 #include "frontends/Painter.h"
30 #include "frontends/font_metrics.h"
31 #include "support/lyxlib.h"
32 #include "support/lstrings.h"
33 #include "support/LOstream.h"
34 #include "debug.h"
35 #include "lyxlex.h"
36 #include "lyxtext.h"
37 #include "Lsstream.h"
38
39 using std::ostream;
40
41 extern MathCursor * mathcursor;
42
43
44 InsetFormulaMacro::InsetFormulaMacro()
45 {
46         // inset name is inherited from Inset
47         setInsetName("unknown");
48 }
49
50
51 InsetFormulaMacro::InsetFormulaMacro(string const & name, int nargs)
52 {
53         setInsetName(name);
54         MathMacroTable::create(MathAtom(new MathMacroTemplate(name, nargs)));
55 }
56
57
58 InsetFormulaMacro::InsetFormulaMacro(string const & s)
59 {
60         std::istringstream is(STRCONV(s));
61         read(is);
62 }
63
64
65 Inset * InsetFormulaMacro::clone(Buffer const &) const
66 {
67         return new InsetFormulaMacro(*this);
68 }
69
70
71 // Inset * InsetFormulaMacro::clone(Buffer const &, bool) const
72 // {
73 //      return new InsetFormulaMacro(*this);
74 // }
75
76
77 void InsetFormulaMacro::write(Buffer const *, ostream & os) const
78 {
79         os << "FormulaMacro ";
80         WriteStream wi(os, false, false);
81         par()->write(wi);
82 }
83
84
85 int InsetFormulaMacro::latex(Buffer const *, ostream & os,
86                              LatexRunParams const & runparams) const
87 {
88         WriteStream wi(os, runparams.moving_arg, true);
89         par()->write(wi);
90         return 2;
91 }
92
93
94 int InsetFormulaMacro::ascii(Buffer const *, ostream & os, int) const
95 {
96         WriteStream wi(os, false, true);
97         par()->write(wi);
98         return 0;
99 }
100
101
102 int InsetFormulaMacro::linuxdoc(Buffer const * buf, ostream & os) const
103 {
104         return ascii(buf, os, 0);
105 }
106
107
108 int InsetFormulaMacro::docbook(Buffer const * buf, ostream & os, bool) const
109 {
110         return ascii(buf, os, 0);
111 }
112
113
114 void InsetFormulaMacro::read(Buffer const *, LyXLex & lex)
115 {
116         read(lex.getStream());
117 }
118
119
120 void InsetFormulaMacro::read(std::istream & is)
121 {
122         MathMacroTemplate * p = new MathMacroTemplate(is);
123         setInsetName(p->name());
124         MathMacroTable::create(MathAtom(p));
125         //metrics();
126 }
127
128
129 string InsetFormulaMacro::prefix() const
130 {
131         return bformat(_(" Macro: %s: "), getInsetName());
132 }
133
134
135 void InsetFormulaMacro::metrics(MetricsInfo & mi, Dimension & dim) const
136 {
137         par()->metrics(mi, dim_);
138         dim_.asc += 5;
139         dim_.des += 5;
140         dim_.wid += 10 + font_metrics::width(prefix(), mi.base.font);
141         dim = dim_;
142 }
143
144
145 MathAtom const & InsetFormulaMacro::par() const
146 {
147         return MathMacroTable::provide(getInsetName());
148 }
149
150
151 MathAtom & InsetFormulaMacro::par()
152 {
153         return MathMacroTable::provide(getInsetName());
154 }
155
156
157 Inset::Code InsetFormulaMacro::lyxCode() const
158 {
159         return Inset::MATHMACRO_CODE;
160 }
161
162
163 void InsetFormulaMacro::draw(PainterInfo & p, int x, int y) const
164 {
165         // label
166         LyXFont font = p.base.font;
167         font.setColor(LColor::math);
168
169         PainterInfo pi(p.base.bv);
170         pi.base.style = LM_ST_TEXT;
171         pi.base.font  = font;
172
173         int const a = y - dim_.asc + 1;
174         int const w = dim_.wid - 2;
175         int const h = dim_.height() - 2;
176
177         // LColor::mathbg used to be "AntiqueWhite" but is "linen" now, too
178         pi.pain.fillRectangle(x, a, w, h, LColor::mathmacrobg);
179         pi.pain.rectangle(x, a, w, h, LColor::mathframe);
180
181         if (mathcursor &&
182                         const_cast<InsetFormulaBase const *>(mathcursor->formula()) == this)
183                 mathcursor->drawSelection(pi);
184
185         pi.pain.text(x + 2, y, prefix(), font);
186
187         // formula
188         par()->draw(pi, x + font_metrics::width(prefix(), p.base.font) + 5, y);
189         xo_ = x;
190         yo_ = y;
191 }