]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_macroarg.h
index 3bf884684e8d4f388e0c5489a5bae54510d5ba82..b2bcbade9718ab6001f68391bf470dfb19c9ca45 100644 (file)
 class MathMacroArgument : public MathNestInset {
 public:
        ///
-       explicit MathMacroArgument(int);
+       explicit MathMacroArgument(int, MathTextCodes = LM_TC_MIN);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathStyles st) const;
+       bool isActive() const { return false; }
+       ///
+       void metrics(MathMetricsInfo const & st) const;
        ///
        void draw(Painter &, int x, int y) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void substitute(MathMacro const & macro);
+
        ///
-       void writeNormal(std::ostream &) const;
+       void normalize(NormalStream &) const;
        ///
-       void substitute(MathMacro const & macro);
+       void write(WriteStream & os) const;
 
 private:
        /// A number between 1 and 9
@@ -35,6 +38,10 @@ private:
        char str_[3];
        ///
        bool expanded_;
+       ///
+       mutable MathMetricsInfo mi_;
+       ///
+       MathTextCodes code_;
 };
 
 #endif