]> git.lyx.org Git - lyx.git/blob - src/mathed/math_macro.C
*** empty log message ***
[lyx.git] / src / mathed / math_macro.C
1 /**
2  * \file math_macro.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 "math_macro.h"
15 #include "math_support.h"
16 #include "math_extern.h"
17 #include "math_macrotable.h"
18 #include "math_macrotemplate.h"
19 #include "math_mathmlstream.h"
20 #include "cursor.h"
21 #include "debug.h"
22 #include "LaTeXFeatures.h"
23
24
25 using std::string;
26 using std::max;
27 using std::auto_ptr;
28 using std::endl;
29
30
31 MathMacro::MathMacro(string const & name)
32         : MathNestInset(MathMacroTable::provide(name)->asMacroTemplate()->numargs()),
33                 tmplate_(MathMacroTable::provide(name))
34 {}
35
36
37 MathMacro::MathMacro(MathMacro const & m)
38         : MathNestInset(m),
39                 tmplate_(m.tmplate_) // don't copy 'expanded_'!
40 {}
41
42
43
44 auto_ptr<InsetBase> MathMacro::clone() const
45 {
46         return auto_ptr<InsetBase>(new MathMacro(*this));
47 }
48
49
50 string MathMacro::name() const
51 {
52         return tmplate_->asMacroTemplate()->name();
53 }
54
55
56 bool MathMacro::defining() const
57 {
58         return false;
59         //return mathcursor->formula()->getInsetName() == name();
60 }
61
62
63 void MathMacro::expand() const
64 {
65         expanded_ = tmplate_->cell(tmplate_->cell(1).empty() ? 0 : 1);
66 }
67
68
69 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
70 {
71         augmentFont(font_, "lyxtex");
72         mi_ = mi;
73
74         if (defining()) {
75
76                 mathed_string_dim(font_, name(), dim);
77
78         } else if (editing(mi.base.bv)) {
79
80                 expand();
81                 expanded_.metrics(mi, dim);
82                 metricsMarkers(dim);
83
84                 dim.wid += mathed_string_width(font_, name()) + 10;
85
86                 int ww = mathed_string_width(font_, "#1: ");
87
88                 for (idx_type i = 0; i < nargs(); ++i) {
89                         MathArray const & c = cell(i);
90                         c.metrics(mi);
91                         dim.wid  = max(dim.wid, c.width() + ww);
92                         dim.des += c.height() + 10;
93                 }
94
95         } else {
96
97                 expand();
98                 expanded_.substitute(*this);
99                 expanded_.metrics(mi, dim);
100
101         }
102
103         dim_ = dim;
104 }
105
106
107 void MathMacro::draw(PainterInfo & pi, int x, int y) const
108 {
109         metrics(mi_, dim_);
110
111         LyXFont texfont;
112         augmentFont(texfont, "lyxtex");
113
114         if (defining()) {
115                 drawStr(pi, texfont, x, y, name());
116                 return;
117         }
118
119         if (editing(pi.base.bv)) {
120                 int h = y - dim_.ascent() + 2 + expanded_.ascent();
121                 drawStr(pi, font_, x + 3, h, name());
122
123                 int const w = mathed_string_width(font_, name());
124                 expanded_.draw(pi, x + w + 12, h);
125                 h += expanded_.descent();
126
127                 Dimension ldim;
128                 mathed_string_dim(font_, "#1: ", ldim);
129
130                 for (idx_type i = 0; i < nargs(); ++i) {
131                         MathArray const & c = cell(i);
132                         h += max(c.ascent(), ldim.asc) + 5;
133                         c.draw(pi, x + ldim.wid, h);
134                         char str[] = "#1:";
135                         str[1] += static_cast<char>(i);
136                         drawStr(pi, texfont, x + 3, h, str);
137                         h += max(c.descent(), ldim.des) + 5;
138                 }
139                 return;
140         }
141
142         expanded_.draw(pi, x, y);
143         setPosCache(pi, x, y);
144 }
145
146
147 void MathMacro::dump() const
148 {
149         MathMacroTable::dump();
150         lyxerr << "\n macro: '" << this << "'\n"
151                << " name: '" << name() << "'\n"
152                << " template: '";
153         WriteStream wi(lyxerr);
154         tmplate_->write(wi);
155         lyxerr << "'" << endl;
156 }
157
158
159 bool MathMacro::idxUpDown(LCursor & cur, bool up) const
160 {
161         if (up) {
162                 if (!MathNestInset::idxLeft(cur))
163                         return false;
164         } else {
165                 if (!MathNestInset::idxRight(cur))
166                         return false;
167         }
168         cur.pos() = cur.cell().x2pos(cur.x_target());
169         return true;
170 }
171
172
173 bool MathMacro::idxLeft(LCursor &) const
174 {
175         return false;
176 }
177
178
179 bool MathMacro::idxRight(LCursor &) const
180 {
181         return false;
182 }
183
184
185 void MathMacro::validate(LaTeXFeatures & features) const
186 {
187         if (name() == "binom" || name() == "mathcircumflex")
188                 features.require(name());
189         //MathInset::validate(features);
190 }
191
192
193 void MathMacro::maple(MapleStream & os) const
194 {
195         updateExpansion();
196         ::maple(expanded_, os);
197 }
198
199
200 void MathMacro::mathmlize(MathMLStream & os) const
201 {
202         updateExpansion();
203         ::mathmlize(expanded_, os);
204 }
205
206
207 void MathMacro::octave(OctaveStream & os) const
208 {
209         updateExpansion();
210         ::octave(expanded_, os);
211 }
212
213
214 void MathMacro::updateExpansion() const
215 {
216         expand();
217         expanded_.substitute(*this);
218 }
219
220
221 void MathMacro::infoize(std::ostream & os) const
222 {
223         os << "Macro: " << name();
224 }
225
226
227 void MathMacro::infoize2(std::ostream & os) const
228 {
229         os << "Macro: " << name();
230 }