]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathPhantom.h
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathPhantom.h
index 9cce40df23bf3cbaff76f079af7fcab1eb17dc06..b31500e644b2383c153c4be9404bc385d84b2abd 100644 (file)
@@ -23,30 +23,40 @@ public:
        enum Kind {
                phantom,
                vphantom,
-               hphantom
+               hphantom,
+               smash,
+               smasht,
+               smashb,
+               mathclap,
+               mathllap,
+               mathrlap
        };
        ///
        explicit InsetMathPhantom(Buffer * buf, Kind);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        ///
-       void write(WriteStream & os) const;
+       void write(TeXMathStream & os) const override;
        /// write normalized content
-       void normalize(NormalStream & ns) const;
+       void normalize(NormalStream & ns) const override;
        ///
-       void infoize(odocstream & os) const;
+       void infoize(odocstream & os) const override;
        ///
-       InsetCode lyxCode() const { return MATH_PHANTOM_CODE; }
+       InsetCode lyxCode() const override { return MATH_PHANTOM_CODE; }
        /// Nothing for now
-       void mathmlize(MathStream &) const {}
+       void mathmlize(MathMLStream &) const override {}
        /// Nothing for HTML
-       void htmlize(HtmlStream &) const {}
+       void htmlize(HtmlStream &) const override {}
+       /// request "external features"
+       void validate(LaTeXFeatures & features) const override;
+       /// Does the contents appear in LaTeX output?
+       bool visibleContents() const;
 
 private:
        ///
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        ///
        Kind kind_;
 };