]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCases.h
Fix bug #8746: Images have to have alt tags.
[lyx.git] / src / mathed / InsetMathCases.h
index 9f06cbdde82ba8197ccc4de6bea9cb727584476f..f753f12166646e0a63c6eb40e02a0bddee47c837 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -23,15 +23,17 @@ class LaTeXFeatures;
 class InsetMathCases : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathCases(row_type rows = 1u);
+       explicit InsetMathCases(Buffer * buf, row_type rows = 1u);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///
+       Dimension const dimension(BufferView const &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & flag) const;
 
        ///
@@ -41,11 +43,17 @@ public:
        ///
        void maple(MapleStream &) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void write(WriteStream & os) const;
        ///
        void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_CASES_CODE; }
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };