]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathRoot.h
Removed unused private variable
[lyx.git] / src / mathed / InsetMathRoot.h
index cfcac0a7f3189b68bf368cbd8fd6093e3009c7ae..cb5c34ff2029d6890dc76dfd06721e15d54990d6 100644 (file)
@@ -30,6 +30,10 @@ public:
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       idx_type firstIdx() const { return 1; }
+       ///
+       idx_type lastIdx() const { return 1; }
 
        ///
        void write(WriteStream & os) const;
@@ -38,6 +42,8 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void maple(MapleStream &) const;
        ///
        void mathematica(MathematicaStream &) const;
@@ -45,11 +51,18 @@ public:
        void octave(OctaveStream &) const;
        ///
        InsetCode lyxCode() const { return MATH_ROOT_CODE; }
+       ///
+       void validate(LaTeXFeatures &) const;
 
 private:
        virtual Inset * clone() const;
 };
 
+void mathed_root_metrics(MetricsInfo & mi, MathData const & nucleus,
+                         MathData const * root, Dimension & dim);
+
+void mathed_draw_root(PainterInfo & pi, int x, int y, MathData const & nucleus,
+                      MathData const * root, Dimension const & dim);
 
 
 } // namespace lyx