]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
updates to latexfeatures stuff; allow empty \document_path
[lyx.git] / src / mathed / math_macro.h
index bce7f5b0f202480e091c117bd456409d10edffbe..2c3fdcfadadd270248b0519f2d504034d74302e0 100644 (file)
@@ -51,9 +51,9 @@ public:
        void dump() const;
 
        ///
-       bool idxUp(idx_type &, pos_type &) const;
+       bool idxUp(idx_type &) const;
        ///
-       bool idxDown(idx_type &, pos_type &) const;
+       bool idxDown(idx_type &) const;
        ///
        bool idxLeft(idx_type &, pos_type &) const;
        ///
@@ -63,12 +63,18 @@ public:
        void validate(LaTeXFeatures &) const;
        ///
        bool isMacro() const { return true; }
+       ///
+       bool match(MathInset *) const { return false; }
 
        ///
        void normalize(NormalStream &) const;
        ///
        void maplize(MapleStream &) const;
        ///
+       void mathmlize(MathMLStream &) const;
+       ///
+       void octavize(OctaveStream &) const;
+       ///
        void write(WriteStream & os) const;
 
 private:
@@ -80,6 +86,8 @@ private:
        bool editing() const;
        ///
        bool defining() const;
+       ///
+       void updateExpansion() const;
 
        ///
        MathAtom & tmplate_;