]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMacro.C
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathMacro.C
index 1bf8dadc39d102af019ce691bcc55d089e974a5b..bb0966d8b64720374529e30e77d3b8d9ae57ddd9 100644 (file)
@@ -14,7 +14,7 @@
 #include "InsetMathMacro.h"
 #include "MathSupport.h"
 #include "MathExtern.h"
-#include "MathMLStream.h"
+#include "MathStream.h"
 
 #include "buffer.h"
 #include "cursor.h"
 #include "LaTeXFeatures.h"
 #include "frontends/Painter.h"
 
-using lyx::docstring;
+
+namespace lyx {
 
 using std::string;
 using std::max;
 using std::auto_ptr;
 using std::endl;
+using std::vector;
 
 
-MathMacro::MathMacro(string const & name, int numargs)
+MathMacro::MathMacro(docstring const & name, int numargs)
        : InsetMathNest(numargs), name_(name)
 {}
 
@@ -42,7 +44,7 @@ auto_ptr<InsetBase> MathMacro::doClone() const
 }
 
 
-string MathMacro::name() const
+docstring MathMacro::name() const
 {
        return name_;
 }
@@ -60,17 +62,17 @@ void MathMacro::cursorPos(BufferView const & bv,
 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (!MacroTable::globalMacros().has(name())) {
-               mathed_string_dim(mi.base.font, lyx::from_utf8("Unknown: " + name()), dim);
+               mathed_string_dim(mi.base.font, "Unknown: " + name(), dim);
        } else if (editing(mi.base.bv)) {
                // FIXME UNICODE
-               asArray(lyx::from_utf8(MacroTable::globalMacros().get(name()).def()), tmpl_);
+               asArray(MacroTable::globalMacros().get(name()).def(), tmpl_);
                LyXFont font = mi.base.font;
-               augmentFont(font, "lyxtex");
+               augmentFont(font, from_ascii("lyxtex"));
                tmpl_.metrics(mi, dim);
                // FIXME UNICODE
-               dim.wid += mathed_string_width(font, lyx::from_utf8(name())) + 10;
+               dim.wid += mathed_string_width(font, name()) + 10;
                // FIXME UNICODE
-               int ww = mathed_string_width(font, lyx::from_ascii("#1: "));
+               int ww = mathed_string_width(font, from_ascii("#1: "));
                for (idx_type i = 0; i < nargs(); ++i) {
                        MathArray const & c = cell(i);
                        c.metrics(mi);
@@ -90,25 +92,24 @@ void MathMacro::draw(PainterInfo & pi, int x, int y) const
 {
        if (!MacroTable::globalMacros().has(name())) {
                // FIXME UNICODE
-               drawStrRed(pi, x, y, lyx::from_utf8("Unknown: " + name()));
+               drawStrRed(pi, x, y, "Unknown: " + name());
        } else if (editing(pi.base.bv)) {
                LyXFont font = pi.base.font;
-               augmentFont(font, "lyxtex");
+               augmentFont(font, from_ascii("lyxtex"));
                int h = y - dim_.ascent() + 2 + tmpl_.ascent();
-               // FIXME UNICODE
-               docstring dn = lyx::from_utf8(name());
-               pi.pain.text(x + 3, h, dn, font);
-               int const w = mathed_string_width(font, dn);
+               pi.pain.text(x + 3, h, name(), font);
+               int const w = mathed_string_width(font, name());
                tmpl_.draw(pi, x + w + 12, h);
                h += tmpl_.descent();
                Dimension ldim;
-               mathed_string_dim(font, lyx::from_ascii("#1: "), ldim);
+               string t = "#1: ";
+               mathed_string_dim(font, name(), ldim);
                for (idx_type i = 0; i < nargs(); ++i) {
                        MathArray const & c = cell(i);
                        h += max(c.ascent(), ldim.asc) + 5;
                        c.draw(pi, x + ldim.wid, h);
-                       lyx::char_type str[] = { '#', '1', ':', '\0' };
-                       str[1] += static_cast<lyx::char_type>(i);
+                       char_type str[] = { '#', '1', ':', '\0' };
+                       str[1] += static_cast<char_type>(i);
                        pi.pain.text(x + 3, h, str, font);
                        h += max(c.descent(), ldim.des) + 5;
                }
@@ -130,7 +131,7 @@ void MathMacro::drawSelection(PainterInfo & pi, int x, int y) const
 void MathMacro::validate(LaTeXFeatures & features) const
 {
        if (name() == "binom" || name() == "mathcircumflex")
-               features.require(name());
+               features.require(to_utf8(name()));
 }
 
 
@@ -155,21 +156,21 @@ InsetBase * MathMacro::editXY(LCursor & cur, int x, int y)
 void MathMacro::maple(MapleStream & os) const
 {
        updateExpansion();
-       ::maple(expanded_, os);
+       lyx::maple(expanded_, os);
 }
 
 
-void MathMacro::mathmlize(MathMLStream & os) const
+void MathMacro::mathmlize(MathStream & os) const
 {
        updateExpansion();
-       ::mathmlize(expanded_, os);
+       lyx::mathmlize(expanded_, os);
 }
 
 
 void MathMacro::octave(OctaveStream & os) const
 {
        updateExpansion();
-       ::octave(expanded_, os);
+       lyx::octave(expanded_, os);
 }
 
 
@@ -179,14 +180,17 @@ void MathMacro::updateExpansion() const
 }
 
 
-void MathMacro::infoize(std::ostream & os) const
+void MathMacro::infoize(odocstream & os) const
 {
        os << "Macro: " << name();
 }
 
 
-void MathMacro::infoize2(std::ostream & os) const
+void MathMacro::infoize2(odocstream & os) const
 {
        os << "Macro: " << name();
 
 }
+
+
+} // namespace lyx