X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_boxinset.h;h=59fd02d1ac3c212638df7f0570ffd254e5109bfb;hb=4bc59f21015e9151841eea3733b97d25cd616fdc;hp=0dfc8e44760caa4c344ca52eca9ec80bab018c9d;hpb=fe87869cb763c613c4dc36294efbd8edff175d54;p=lyx.git diff --git a/src/mathed/math_boxinset.h b/src/mathed/math_boxinset.h index 0dfc8e4476..59fd02d1ac 100644 --- a/src/mathed/math_boxinset.h +++ b/src/mathed/math_boxinset.h @@ -16,9 +16,13 @@ class LyXFont; class MathBoxInset : public MathGridInset { public: /// - explicit MathBoxInset(string const &); + explicit MathBoxInset(string const & name); /// MathInset * clone() const; + /// + void metrics(MathMetricsInfo & mi) const; + /// + void draw(MathPainterInfo & pi, int x, int y) const; /// identifies BoxInsets MathBoxInset * asBoxInset() { return this; } /// identifies BoxInsets @@ -28,9 +32,7 @@ public: /// void write(WriteStream & os) const; /// - void normalize(NormalStream &) const; - /// - void draw(MathPainterInfo &, int x, int y) const; + void normalize(NormalStream & ns) const; private: /// @@ -38,4 +40,6 @@ private: /// string name_; }; + + #endif