]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathMacro.C
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathMacro.C
1 /**
2  * \file InsetMathMacro.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 "InsetMathMacro.h"
15 #include "MathSupport.h"
16 #include "MathExtern.h"
17 #include "MathStream.h"
18
19 #include "buffer.h"
20 #include "cursor.h"
21 #include "debug.h"
22 #include "BufferView.h"
23 #include "LaTeXFeatures.h"
24 #include "frontends/Painter.h"
25
26
27 namespace lyx {
28
29 using std::string;
30 using std::max;
31 using std::auto_ptr;
32 using std::endl;
33 using std::vector;
34
35
36 MathMacro::MathMacro(docstring const & name, int numargs)
37         : InsetMathNest(numargs), name_(name)
38 {}
39
40
41 auto_ptr<InsetBase> MathMacro::doClone() const
42 {
43         return auto_ptr<InsetBase>(new MathMacro(*this));
44 }
45
46
47 docstring MathMacro::name() const
48 {
49         return name_;
50 }
51
52
53 void MathMacro::cursorPos(BufferView const & bv,
54                 CursorSlice const & sl, bool boundary, int & x, int & y) const
55 {
56         // We may have 0 arguments, but InsetMathNest requires at least one.
57         if (nargs() > 0)
58                 InsetMathNest::cursorPos(bv, sl, boundary, x, y);
59 }
60
61
62 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
63 {
64         if (!MacroTable::globalMacros().has(name())) {
65                 mathed_string_dim(mi.base.font, "Unknown: " + name(), dim);
66         } else if (editing(mi.base.bv)) {
67                 // FIXME UNICODE
68                 asArray(MacroTable::globalMacros().get(name()).def(), tmpl_);
69                 LyXFont font = mi.base.font;
70                 augmentFont(font, from_ascii("lyxtex"));
71                 tmpl_.metrics(mi, dim);
72                 // FIXME UNICODE
73                 dim.wid += mathed_string_width(font, name()) + 10;
74                 // FIXME UNICODE
75                 int ww = mathed_string_width(font, from_ascii("#1: "));
76                 for (idx_type i = 0; i < nargs(); ++i) {
77                         MathArray const & c = cell(i);
78                         c.metrics(mi);
79                         dim.wid  = max(dim.wid, c.width() + ww);
80                         dim.des += c.height() + 10;
81                 }
82         } else {
83                 MacroTable::globalMacros().get(name()).expand(cells_, expanded_);
84                 expanded_.metrics(mi, dim);
85         }
86         metricsMarkers2(dim);
87         dim_ = dim;
88 }
89
90
91 void MathMacro::draw(PainterInfo & pi, int x, int y) const
92 {
93         if (!MacroTable::globalMacros().has(name())) {
94                 // FIXME UNICODE
95                 drawStrRed(pi, x, y, "Unknown: " + name());
96         } else if (editing(pi.base.bv)) {
97                 LyXFont font = pi.base.font;
98                 augmentFont(font, from_ascii("lyxtex"));
99                 int h = y - dim_.ascent() + 2 + tmpl_.ascent();
100                 pi.pain.text(x + 3, h, name(), font);
101                 int const w = mathed_string_width(font, name());
102                 tmpl_.draw(pi, x + w + 12, h);
103                 h += tmpl_.descent();
104                 Dimension ldim;
105                 string t = "#1: ";
106                 mathed_string_dim(font, name(), ldim);
107                 for (idx_type i = 0; i < nargs(); ++i) {
108                         MathArray const & c = cell(i);
109                         h += max(c.ascent(), ldim.asc) + 5;
110                         c.draw(pi, x + ldim.wid, h);
111                         char_type str[] = { '#', '1', ':', '\0' };
112                         str[1] += static_cast<char_type>(i);
113                         pi.pain.text(x + 3, h, str, font);
114                         h += max(c.descent(), ldim.des) + 5;
115                 }
116         } else {
117                 expanded_.draw(pi, x, y);
118         }
119         drawMarkers2(pi, x, y);
120 }
121
122
123 void MathMacro::drawSelection(PainterInfo & pi, int x, int y) const
124 {
125         // We may have 0 arguments, but InsetMathNest requires at least one.
126         if (nargs() > 0)
127                 InsetMathNest::drawSelection(pi, x, y);
128 }
129
130
131 void MathMacro::validate(LaTeXFeatures & features) const
132 {
133         if (name() == "binom" || name() == "mathcircumflex")
134                 features.require(to_utf8(name()));
135 }
136
137
138 InsetBase * MathMacro::editXY(LCursor & cur, int x, int y)
139 {
140         // We may have 0 arguments, but InsetMathNest requires at least one.
141         if (nargs() > 0) {
142                 // Prevent crash due to cold coordcache
143                 // FIXME: This is only a workaround, the call of
144                 // InsetMathNest::editXY is correct. The correct fix would
145                 // ensure that the coordcache of the arguments is valid.
146                 if (!editing(&cur.bv())) {
147                         edit(cur, true);
148                         return this;
149                 }
150                 return InsetMathNest::editXY(cur, x, y);
151         }
152         return this;
153 }
154
155
156 void MathMacro::maple(MapleStream & os) const
157 {
158         updateExpansion();
159         lyx::maple(expanded_, os);
160 }
161
162
163 void MathMacro::mathmlize(MathStream & os) const
164 {
165         updateExpansion();
166         lyx::mathmlize(expanded_, os);
167 }
168
169
170 void MathMacro::octave(OctaveStream & os) const
171 {
172         updateExpansion();
173         lyx::octave(expanded_, os);
174 }
175
176
177 void MathMacro::updateExpansion() const
178 {
179         //expanded_.substitute(*this);
180 }
181
182
183 void MathMacro::infoize(odocstream & os) const
184 {
185         os << "Macro: " << name();
186 }
187
188
189 void MathMacro::infoize2(odocstream & os) const
190 {
191         os << "Macro: " << name();
192
193 }
194
195
196 } // namespace lyx