]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetFormulaMacro.cpp
cosmetics
[lyx.git] / src / mathed / InsetFormulaMacro.cpp
1 /**
2  * \file InsetFormulaMacro.cpp
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 "InsetFormulaMacro.h"
15 #include "MacroTable.h"
16 #include "MathMacroTemplate.h"
17
18 #include "BufferView.h"
19 #include "Cursor.h"
20 #include "support/debug.h"
21 #include "support/gettext.h"
22 #include "Lexer.h"
23 #include "OutputParams.h"
24
25 #include "frontends/FontMetrics.h"
26 #include "frontends/Painter.h"
27
28 #include "support/lstrings.h"
29
30 #include <sstream>
31
32 using namespace std;
33 using namespace lyx::support;
34
35 namespace lyx {
36
37
38 InsetFormulaMacro::InsetFormulaMacro()
39         : InsetMathNest(2), name_("unknownA")
40 {}
41
42
43 InsetFormulaMacro::InsetFormulaMacro
44                 (docstring const & name, int nargs, docstring const & type)
45         : InsetMathNest(2), name_(name)
46 {
47         MathMacroTable::create(MathAtom(new MathMacroTemplate(name, nargs, type)));
48 }
49
50
51 InsetFormulaMacro::InsetFormulaMacro(string const & s)
52         : InsetMathNest(2), name_("unknownB")
53 {
54         istringstream is(s);
55         read(is);
56 }
57
58
59 Inset * InsetFormulaMacro::clone() const
60 {
61         return new InsetFormulaMacro(*this);
62 }
63
64
65 void InsetFormulaMacro::write(ostream & os) const
66 {
67         os << "FormulaMacro\n";
68         WriteStream wi(os, false, false);
69         tmpl()->write(wi);
70 }
71
72
73 int InsetFormulaMacro::latex(odocstream & os,
74                              OutputParams const & runparams) const
75 {
76         //lyxerr << "InsetFormulaMacro::latex" << endl;
77         WriteStream wi(os, runparams.moving_arg, true);
78         tmpl()->write(wi);
79         return 2;
80 }
81
82
83 int InsetFormulaMacro::plaintext(odocstream & os, OutputParams const &) const
84 {
85         odocstringstream oss;
86         WriteStream wi(oss, false, true);
87         tmpl()->write(wi);
88
89         docstring const str = oss.str();
90         os << str;
91         return str.size();
92 }
93
94
95 int InsetFormulaMacro::docbook(ostream & os,
96                                OutputParams const & runparams) const
97 {
98         return plaintext(os, runparams);
99 }
100
101
102 void InsetFormulaMacro::read(Lexer & lex)
103 {
104         read(lex.getStream());
105 }
106
107
108 void InsetFormulaMacro::read(istream & is)
109 {
110         auto_ptr<MathMacroTemplate> p(new MathMacroTemplate(is));
111         name_ = p->name();
112         MathMacroTable::create(MathAtom(p.release()));
113 }
114
115
116 string InsetFormulaMacro::prefix() const
117 {
118         return to_utf8(bformat(_(" Macro: %1$s: "), lyx::from_utf8(name_)));
119 }
120
121
122 void InsetFormulaMacro::metrics(MetricsInfo & mi, Dimension & dim) const
123 {
124         //lyxerr << "InsetFormulaMacro: " << this << " -- " << &tmpl() << endl;
125         tmpl()->metrics(mi, dim);
126         dim.asc += 5;
127         dim.des += 5;
128         dim.wid += 10 + theFontMetrics(mi.base.font).width(prefix());
129         dim_ = dim;
130 }
131
132
133 void InsetFormulaMacro::draw(PainterInfo & p, int x, int y) const
134 {
135         // label
136         Font font = p.base.font;
137         font.setColor(Color_math);
138
139         PainterInfo pi(p.base.bv, p.pain);
140         pi.base.style = LM_ST_TEXT;
141         pi.base.font  = font;
142
143         int const a = y - dim_.asc + 1;
144         int const w = dim_.wid - 2;
145         int const h = dim_.height() - 2;
146
147         // Color_mathbg used to be "AntiqueWhite" but is "linen" now, too
148         pi.pain.fillRectangle(x, a, w, h, Color_mathmacrobg);
149         pi.pain.rectangle(x, a, w, h, Color_mathframe);
150
151         // FIXME
152 #if 0
153         Cursor & cur = p.base.bv->cursor();
154         if (cur.isInside(this))
155                 cur.drawSelection(pi);
156 #endif
157
158         pi.pain.text(x + 2, y, prefix(), font);
159
160         // body
161         tmpl()->draw(pi,
162                 x + theFontMetrics(p.base.font).width(prefix()) + 5,
163                 y);
164
165         setPosCache(pi, x, y);
166 }
167
168
169 MathAtom & InsetFormulaMacro::tmpl() const
170 {
171         return MathMacroTable::provide(name_);
172 }
173
174
175 } // namespace lyx