]> git.lyx.org Git - lyx.git/blob - src/mathed/math_macrotemplate.C
lyxfont.h no longer #includes LColor.h.
[lyx.git] / src / mathed / math_macrotemplate.C
1 /**
2  * \file math_macrotemplate.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "math_macrotemplate.h"
14 #include "math_mathmlstream.h"
15 #include "math_parser.h"
16 #include "frontends/Painter.h"
17 #include "debug.h"
18 #include "LColor.h"
19
20 using std::auto_ptr;
21 using std::endl;
22
23
24 MathMacroTemplate::MathMacroTemplate()
25         : MathNestInset(2), numargs_(0), name_(), type_("newcommand")
26 {}
27
28
29 MathMacroTemplate::MathMacroTemplate(string const & nm, int numargs,
30                 string const & type, MathArray const & ar1, MathArray const & ar2)
31         : MathNestInset(2), numargs_(numargs), name_(nm), type_(type)
32 {
33         if (numargs_ > 9)
34                 lyxerr << "MathMacroTemplate::MathMacroTemplate: wrong # of arguments: "
35                         << numargs_ << std::endl;
36         cell(0) = ar1;
37         cell(1) = ar2;
38 }
39
40
41
42 MathMacroTemplate::MathMacroTemplate(std::istream & is)
43         : MathNestInset(2), numargs_(0), name_()
44 {
45         MathArray ar;
46         mathed_parse_cell(ar, is);
47         if (ar.size() != 1 || !ar[0]->asMacroTemplate()) {
48                 lyxerr << "cannot read macro from '" << ar << "'" << endl;
49                 return;
50         }
51         operator=( *(ar[0]->asMacroTemplate()) );
52 }
53
54
55 auto_ptr<InsetBase> MathMacroTemplate::clone() const
56 {
57         //lyxerr << "cloning MacroTemplate!" << endl;
58         return auto_ptr<InsetBase>(new MathMacroTemplate(*this));
59 }
60
61
62 int MathMacroTemplate::numargs() const
63 {
64         return numargs_;
65 }
66
67
68 void MathMacroTemplate::numargs(int numargs)
69 {
70         numargs_ = numargs;
71 }
72
73
74 string MathMacroTemplate::name() const
75 {
76         return name_;
77 }
78
79
80 void MathMacroTemplate::metrics(MetricsInfo & mi, Dimension & dim) const
81 {
82         cell(0).metrics(mi);
83         cell(1).metrics(mi);
84         dim_.wid = cell(0).width() + cell(1).width() + 10;
85         dim_.asc = std::max(cell(0).ascent(),  cell(1).ascent())  + 2;
86         dim_.des = std::max(cell(0).descent(), cell(1).descent()) + 2;
87         dim = dim_;
88 }
89
90
91 void MathMacroTemplate::draw(PainterInfo & pi, int x, int y) const
92 {
93         int const w0 = cell(0).width();
94         int const w1 = cell(1).width();
95         cell(0).draw(pi, x + 2, y + 1);
96         pi.pain.rectangle(x, y - dim_.ascent() + 1, w0 + 4, dim_.height(),
97                         LColor::mathline);
98         cell(1).draw(pi, x + 8 + w0, y + 1);
99         pi.pain.rectangle(x + w0 + 6 , y - dim_.ascent() + 1, w1 + 4,
100                         dim_.height(), LColor::mathline);
101 }
102
103
104 void MathMacroTemplate::write(WriteStream & os) const
105 {
106         if (type_ == "def") {
107                 os << "\n\\def\\" << name_.c_str();
108                 for (int i = 1; i <= numargs_; ++i)
109                         os << '#' << i;
110         } else {
111                 // newcommand or renewcommand
112                 os << "\n\\" << type_.c_str() << "{\\" << name_.c_str() << '}';
113                 if (numargs_ > 0)
114                         os << '[' << numargs_ << ']';
115         }
116
117         os << '{' << cell(0) << "}";
118
119         if (os.latex()) {
120                 // writing .tex. done.
121                 os << "\n";
122         } else {
123                 // writing .lyx, write special .tex export only if necessary
124                 if (!cell(1).empty())
125                         os << "\n{" << cell(1) << '}';
126         }
127 }