]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.C
the DocIterator stuff
[lyx.git] / src / mathed / math_macro.C
index f25d081c13a3a8c2019592ff84e41f28b47df8a6..eba161e677a7545d587b2433ea7610b7553b0d2e 100644 (file)
@@ -1,22 +1,15 @@
-/*
- *  File:        math_macro.C
- *  Purpose:     Implementation of macro class for mathed
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
- *  Created:     November 1996
- *  Description: WYSIWYG math macros
+/**
+ * \file math_macro.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  Dependencies: Math
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
- *
- *  Version: 0.2, Math & Lyx project.
- *
- *  This code is under the GNU General Public Licence version 2 or later.
+ * Full author contact details are available in file CREDITS.
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_macro.h"
 #include "math_support.h"
 #include "math_macrotable.h"
 #include "math_macrotemplate.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "support/lstrings.h"
-#include "support/LAssert.h"
+#include "cursor.h"
 #include "debug.h"
 #include "LaTeXFeatures.h"
 
 
+using std::string;
 using std::max;
+using std::auto_ptr;
+using std::endl;
 
 
 MathMacro::MathMacro(string const & name)
@@ -47,13 +41,13 @@ MathMacro::MathMacro(MathMacro const & m)
 
 
 
-MathInset * MathMacro::clone() const
+auto_ptr<InsetBase> MathMacro::clone() const
 {
-       return new MathMacro(*this);
+       return auto_ptr<InsetBase>(new MathMacro(*this));
 }
 
 
-string const & MathMacro::name() const
+string MathMacro::name() const
 {
        return tmplate_->asMacroTemplate()->name();
 }
@@ -68,50 +62,52 @@ bool MathMacro::defining() const
 
 void MathMacro::expand() const
 {
-       expanded_ = tmplate_->xcell(tmplate_->cell(1).empty() ? 0 : 1);
+       expanded_ = tmplate_->cell(tmplate_->cell(1).empty() ? 0 : 1);
 }
 
 
-void MathMacro::metrics(MathMetricsInfo & mi) const
+void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        augmentFont(font_, "lyxtex");
        mi_ = mi;
 
        if (defining()) {
-               mathed_string_dim(font_, name(), dim_);
-               return;
-       }
 
-       if (editing()) {
+               mathed_string_dim(font_, name(), dim);
+
+       } else if (editing(mi.base.bv)) {
+
                expand();
-               dim_ = expanded_.metrics(mi_);
-               metricsMarkers2(2); 
+               expanded_.metrics(mi_, dim);
+               metricsMarkers(dim);
 
-               dim_.w +=  mathed_string_width(font_, name()) + 10;
+               dim.wid += mathed_string_width(font_, name()) + 10;
 
-               Dimension ldim;
-               mathed_string_dim(font_, "#1: ", ldim);
+               int ww = mathed_string_width(font_, "#1: ");
 
                for (idx_type i = 0; i < nargs(); ++i) {
-                       MathXArray const & c = xcell(i);
+                       MathArray const & c = cell(i);
                        c.metrics(mi_);
-                       dim_.w  = max(dim_.w, c.width() + ldim.w);
-                       dim_.d += max(c.ascent(),  ldim.a) + 5;
-                       dim_.d += max(c.descent(), ldim.d) + 5;
+                       dim.wid  = max(dim.wid, c.width() + ww);
+                       dim.des += max(c.ascent(),  dim.asc) + 5;
+                       dim.des += max(c.descent(), dim.des) + 5;
                }
-               return;
+
+       } else {
+
+               expand();
+               expanded_.substitute(*this);
+               expanded_.metrics(mi_, dim);
+
        }
 
-       expand();
-       expanded_.data().substitute(*this);
-       expanded_.metrics(mi_);
-       dim_ = expanded_.dim();
+       dim_ = dim;
 }
 
 
-void MathMacro::draw(MathPainterInfo & pi, int x, int y) const
+void MathMacro::draw(PainterInfo & pi, int x, int y) const
 {
-       metrics(mi_);
+       metrics(mi_, dim_);
 
        LyXFont texfont;
        augmentFont(texfont, "lyxtex");
@@ -121,8 +117,8 @@ void MathMacro::draw(MathPainterInfo & pi, int x, int y) const
                return;
        }
 
-       if (editing()) {
-               int h = y - ascent() + 2 + expanded_.ascent();
+       if (editing(pi.base.bv)) {
+               int h = y - dim_.ascent() + 2 + expanded_.ascent();
                drawStr(pi, font_, x + 3, h, name());
 
                int const w = mathed_string_width(font_, name());
@@ -133,13 +129,13 @@ void MathMacro::draw(MathPainterInfo & pi, int x, int y) const
                mathed_string_dim(font_, "#1: ", ldim);
 
                for (idx_type i = 0; i < nargs(); ++i) {
-                       MathXArray const & c = xcell(i);
-                       h += max(c.ascent(), ldim.a) + 5;
-                       c.draw(pi, x + ldim.w, h);
+                       MathArray const & c = cell(i);
+                       h += max(c.ascent(), ldim.asc) + 5;
+                       c.draw(pi, x + ldim.wid, h);
                        char str[] = "#1:";
                        str[1] += static_cast<char>(i);
                        drawStr(pi, texfont, x + 3, h, str);
-                       h += max(c.descent(), ldim.d) + 5;
+                       h += max(c.descent(), ldim.des) + 5;
                }
                return;
        }
@@ -151,30 +147,36 @@ void MathMacro::draw(MathPainterInfo & pi, int x, int y) const
 void MathMacro::dump() const
 {
        MathMacroTable::dump();
-       lyxerr << "\n macro: '" << this << "'\n";
-       lyxerr << " name: '" << name() << "'\n";
-       lyxerr << " template: '";
+       lyxerr << "\n macro: '" << this << "'\n"
+              << " name: '" << name() << "'\n"
+              << " template: '";
        WriteStream wi(lyxerr);
        tmplate_->write(wi);
-       lyxerr << "'\n";
+       lyxerr << "'" << endl;
 }
 
 
-bool MathMacro::idxUpDown(idx_type & idx, pos_type &, bool up) const
+bool MathMacro::idxUpDown(LCursor & cur, bool up) const
 {
-       pos_type pos;
-       return
-               up ? MathNestInset::idxLeft(idx, pos) : MathNestInset::idxRight(idx, pos);
+       if (up) {
+               if (!MathNestInset::idxLeft(cur))
+                       return false;
+       } else {
+               if (!MathNestInset::idxRight(cur))
+                       return false;
+       }
+       cur.pos() = cur.cell().x2pos(cur.x_target());
+       return true;
 }
 
 
-bool MathMacro::idxLeft(idx_type &, pos_type &) const
+bool MathMacro::idxLeft(LCursor &) const
 {
        return false;
 }
 
 
-bool MathMacro::idxRight(idx_type &, pos_type &) const
+bool MathMacro::idxRight(LCursor &) const
 {
        return false;
 }
@@ -188,48 +190,41 @@ void MathMacro::validate(LaTeXFeatures & features) const
 }
 
 
-void MathMacro::maplize(MapleStream & os) const
+void MathMacro::maple(MapleStream & os) const
 {
        updateExpansion();
-       ::maplize(expanded_.data(), os);
+       ::maple(expanded_, os);
 }
 
 
 void MathMacro::mathmlize(MathMLStream & os) const
 {
        updateExpansion();
-       ::mathmlize(expanded_.data(), os);
+       ::mathmlize(expanded_, os);
 }
 
 
-void MathMacro::octavize(OctaveStream & os) const
+void MathMacro::octave(OctaveStream & os) const
 {
        updateExpansion();
-       ::octavize(expanded_.data(), os);
+       ::octave(expanded_, os);
 }
 
 
-void MathMacro::normalize(NormalStream & os) const
+void MathMacro::updateExpansion() const
 {
-       os << "[macro " << name() << " ";
-       for (idx_type i = 0; i < nargs(); ++i)
-               os << cell(i) << ' ';
-       os << ']';
+       expand();
+       expanded_.substitute(*this);
 }
 
 
-void MathMacro::write(WriteStream & os) const
+void MathMacro::infoize(std::ostream & os) const
 {
-       os << '\\' << name();
-       for (idx_type i = 0; i < nargs(); ++i)
-               os << '{' << cell(i) << '}';
-       if (nargs() == 0)
-               os << ' ';
+       os << "Macro: " << name();
 }
 
 
-void MathMacro::updateExpansion() const
+void MathMacro::infoize2(std::ostream & os) const
 {
-       expand();
-       expanded_.data().substitute(*this);
+       os << "Macro: " << name();
 }