]> git.lyx.org Git - lyx.git/blob - src/mathed/math_macro.C
mathed uglyfication
[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 "debug.h"
21 #include "LaTeXFeatures.h"
22
23
24 using std::string;
25 using std::max;
26 using std::auto_ptr;
27 using std::endl;
28
29
30 MathMacro::MathMacro(string const & name)
31         : MathNestInset(MathMacroTable::provide(name)->asMacroTemplate()->numargs()),
32                 tmplate_(MathMacroTable::provide(name))
33 {}
34
35
36 MathMacro::MathMacro(MathMacro const & m)
37         : MathNestInset(m),
38                 tmplate_(m.tmplate_) // don't copy 'expanded_'!
39 {}
40
41
42
43 auto_ptr<InsetBase> MathMacro::clone() const
44 {
45         return auto_ptr<InsetBase>(new MathMacro(*this));
46 }
47
48
49 string MathMacro::name() const
50 {
51         return tmplate_->asMacroTemplate()->name();
52 }
53
54
55 bool MathMacro::defining() const
56 {
57         return 0;
58         //return mathcursor && mathcursor->formula()->getInsetName() == name();
59 }
60
61
62 void MathMacro::expand() const
63 {
64         expanded_ = tmplate_->cell(tmplate_->cell(1).empty() ? 0 : 1);
65 }
66
67
68 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
69 {
70         augmentFont(font_, "lyxtex");
71         mi_ = mi;
72
73         if (defining()) {
74
75                 mathed_string_dim(font_, name(), dim_);
76
77         } else if (editing()) {
78
79                 expand();
80                 expanded_.metrics(mi_, dim_);
81                 metricsMarkers();
82
83                 dim_.wid +=  mathed_string_width(font_, name()) + 10;
84
85                 int ww = mathed_string_width(font_, "#1: ");
86
87                 for (idx_type i = 0; i < nargs(); ++i) {
88                         MathArray const & c = cell(i);
89                         c.metrics(mi_);
90                         dim_.wid  = max(dim_.wid, c.width() + ww);
91                         dim_.des += max(c.ascent(),  dim_.asc) + 5;
92                         dim_.des += max(c.descent(), dim_.des) + 5;
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()) {
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 }
144
145
146 void MathMacro::dump() const
147 {
148         MathMacroTable::dump();
149         lyxerr << "\n macro: '" << this << "'\n"
150                << " name: '" << name() << "'\n"
151                << " template: '";
152         WriteStream wi(lyxerr);
153         tmplate_->write(wi);
154         lyxerr << "'" << endl;
155 }
156
157
158 bool MathMacro::idxUpDown(BufferView & bv, bool up, int x) const
159 {
160         CursorSlice & cur = cursorTip(bv);
161         if (up) {
162                 if (!MathNestInset::idxLeft(bv))
163                         return false;
164         } else {
165                 if (!MathNestInset::idxRight(bv))
166                         return false;
167         }
168         cur.pos() = cur.cell().x2pos(x);
169         return true;
170 }
171
172
173 bool MathMacro::idxLeft(BufferView &) const
174 {
175         return false;
176 }
177
178
179 bool MathMacro::idxRight(BufferView &) 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 }