]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_funcliminset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_funcliminset.h
index 9510979aa7ed3981cb5e82b66bcd6e9021001c6d..b54a335d1d299fa4a5335431c0aabfb110e4d6d0 100644 (file)
@@ -4,30 +4,30 @@
 
 #include "math_diminset.h"
 
-struct latexkeys;
-
 // "normal" symbols that don't take limits and don't grow in displayed
 // formulae
 
 class MathFuncLimInset : public MathDimInset {
 public:
        ///
-       explicit MathFuncLimInset(latexkeys const *);
+       explicit MathFuncLimInset(string const & name);
        ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void write(WriteStream & os) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void normalize(NormalStream &) const;
        ///
-       void metrics(MathStyles st) const;
+       void metrics(MathMetricsInfo const & st) const;
        ///
        void draw(Painter &, int x, int y) const;
        ///
-       bool isScriptable() const { return true; }
+       bool isScriptable() const;
 
 private:
        ///
-       latexkeys const * sym_;
+       string const name_;
+       ///
+       mutable LyXFont font_;
 };
 #endif