A bit more re-organization.
[lyx.git] / src / mathed / InsetMathDecoration.cpp
blob0ece491a7d8b94e4a2d44e55e0ca6d7f9385551f
1 /**
2 * \file InsetMathDecoration.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Alejandro Aguilar Sierra
7 * \author André Pönitz
9 * Full author contact details are available in file CREDITS.
12 #include <config.h>
14 #include "InsetMathDecoration.h"
16 #include "MathData.h"
17 #include "MathParser.h"
18 #include "MathSupport.h"
19 #include "MathStream.h"
20 #include "MetricsInfo.h"
22 #include "LaTeXFeatures.h"
24 #include "support/debug.h"
26 #include <ostream>
29 namespace lyx {
32 InsetMathDecoration::InsetMathDecoration(Buffer * buf, latexkeys const * key)
33 : InsetMathNest(buf, 1), key_(key)
35 // lyxerr << " creating deco " << key->name << endl;
39 Inset * InsetMathDecoration::clone() const
41 return new InsetMathDecoration(*this);
45 bool InsetMathDecoration::upper() const
47 return key_->name.substr(0, 5) != "under";
51 bool InsetMathDecoration::isScriptable() const
53 return
54 key_->name == "overbrace" ||
55 key_->name == "underbrace" ||
56 key_->name == "overleftarrow" ||
57 key_->name == "overrightarrow" ||
58 key_->name == "overleftrightarrow" ||
59 key_->name == "underleftarrow" ||
60 key_->name == "underrightarrow" ||
61 key_->name == "underleftrightarrow";
65 bool InsetMathDecoration::protect() const
67 return
68 key_->name == "overbrace" ||
69 key_->name == "underbrace" ||
70 key_->name == "overleftarrow" ||
71 key_->name == "overrightarrow" ||
72 key_->name == "overleftrightarrow" ||
73 key_->name == "underleftarrow" ||
74 key_->name == "underrightarrow" ||
75 key_->name == "underleftrightarrow";
79 bool InsetMathDecoration::wide() const
81 return
82 key_->name == "overline" ||
83 key_->name == "underline" ||
84 key_->name == "overbrace" ||
85 key_->name == "underbrace" ||
86 key_->name == "overleftarrow" ||
87 key_->name == "overrightarrow" ||
88 key_->name == "overleftrightarrow" ||
89 key_->name == "widehat" ||
90 key_->name == "widetilde" ||
91 key_->name == "underleftarrow" ||
92 key_->name == "underrightarrow" ||
93 key_->name == "underleftrightarrow";
97 void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const
99 cell(0).metrics(mi, dim);
101 dh_ = 6; //mathed_char_height(LM_TC_VAR, mi, 'I', ascent_, descent_);
102 dw_ = 6; //mathed_char_width(LM_TC_VAR, mi, 'x');
104 if (upper()) {
105 dy_ = -dim.asc - dh_;
106 dim.asc += dh_ + 1;
107 } else {
108 dy_ = dim.des + 1;
109 dim.des += dh_ + 2;
112 metricsMarkers(dim);
116 void InsetMathDecoration::draw(PainterInfo & pi, int x, int y) const
118 cell(0).draw(pi, x + 1, y);
119 Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
120 if (wide())
121 mathed_draw_deco(pi, x + 1, y + dy_, dim0.wid, dh_, key_->name);
122 else
123 mathed_draw_deco(pi, x + 1 + (dim0.wid - dw_) / 2,
124 y + dy_, dw_, dh_, key_->name);
125 drawMarkers(pi, x, y);
126 setPosCache(pi, x, y);
130 void InsetMathDecoration::write(WriteStream & os) const
132 MathEnsurer ensurer(os);
133 if (os.fragile() && protect())
134 os << "\\protect";
135 os << '\\' << key_->name << '{' << cell(0) << '}';
139 void InsetMathDecoration::normalize(NormalStream & os) const
141 os << "[deco " << key_->name << ' ' << cell(0) << ']';
145 void InsetMathDecoration::infoize(odocstream & os) const
147 os << "Deco: " << key_->name;
151 void InsetMathDecoration::validate(LaTeXFeatures & features) const
153 if (!key_->requires.empty())
154 features.require(to_utf8(key_->requires));
155 InsetMathNest::validate(features);
159 } // namespace lyx