]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_macrotemplate.h
index b7f138b6397f078c817fe57478f0d4be537b64d0..bab64d1500d92590de82ab93ad511a3c85ad8b5e 100644 (file)
@@ -3,6 +3,7 @@
 #define MATH_MACROTEMPLATE_H
 
 #include "math_nestinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
@@ -24,20 +25,24 @@ public:
        ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void write(WriteStream & os) const;
        /// Number of arguments
        int numargs() const;
        ///
        void numargs(int);
        ///
-       void draw(Painter &, int, int);
+       string const & name() const;
        ///
-       void metrics(MathStyles st);
+       void draw(Painter &, int x, int y) const;
+       ///
+       void metrics(MathMetricsInfo const & st) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
 private:
        ///
        int numargs_;
-       /// unimplemented
-       void operator=(MathMacroTemplate const &);
+       ///
+       string name_;
 };
 
 #endif