/** * \file InsetMathBig.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include #include "InsetMathBig.h" #include "MathSupport.h" #include "MathStream.h" #include "MathStream.h" #include "frontends/FontMetrics.h" #include "support/lstrings.h" namespace lyx { using std::auto_ptr; InsetMathBig::InsetMathBig(docstring const & name, docstring const & delim) : name_(name), delim_(delim) {} docstring InsetMathBig::name() const { return name_; } auto_ptr InsetMathBig::doClone() const { return auto_ptr(new InsetMathBig(*this)); } InsetMathBig::size_type InsetMathBig::size() const { // order: big Big bigg Bigg biggg Biggg // 0 1 2 3 4 5 return name_[0] == 'B' ? 2 * (name_.size() - 4) + 1: 2 * (name_.size() - 4); } double InsetMathBig::increase() const { // The formula used in amsmath.sty is // 1.2 * (1.0 + size() * 0.5) - 1.0. // We use a smaller step and a bigger offset because our base size // is different. return (size() + 1) * 0.3; } bool InsetMathBig::metrics(MetricsInfo & mi, Dimension & dim) const { double const h = theFontMetrics(mi.base.font).ascent('I'); double const f = increase(); dim.wid = 6; dim.asc = int(h + f * h); dim.des = int(f * h); if (dim_ == dim) return false; dim_ = dim; return true; } void InsetMathBig::draw(PainterInfo & pi, int x, int y) const { // mathed_draw_deco does not use the leading backslash, so remove it // (but don't use ltrim if this is the backslash delimiter). // Replace \| by \Vert (equivalent in LaTeX), since mathed_draw_deco // would treat it as |. docstring const delim = (delim_ == "\\|") ? from_ascii("Vert") : (delim_ == "\\\\") ? from_ascii("\\") : support::ltrim(delim_, "\\"); mathed_draw_deco(pi, x + 1, y - dim_.ascent(), 4, dim_.height(), delim); setPosCache(pi, x, y); } void InsetMathBig::write(WriteStream & os) const { os << '\\' << name_ << delim_; if (delim_[0] == '\\') os.pendingSpace(true); } void InsetMathBig::normalize(NormalStream & os) const { os << '[' << name_ << ' ' << delim_ << ']'; } void InsetMathBig::infoize2(odocstream & os) const { os << name_; } bool InsetMathBig::isBigInsetDelim(docstring const & delim) { // mathed_draw_deco must handle these static char const * const delimiters[] = { "(", ")", "\\{", "\\}", "\\lbrace", "\\rbrace", "[", "]", "|", "/", "\\slash", "\\|", "\\vert", "\\Vert", "'", "\\\\", "\\backslash", "\\langle", "\\lceil", "\\lfloor", "\\rangle", "\\rceil", "\\rfloor", "\\downarrow", "\\Downarrow", "\\uparrow", "\\Uparrow", "\\updownarrow", "\\Updownarrow", "" }; return support::findToken(delimiters, to_utf8(delim)) >= 0; } } // namespace lyx