]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSplit.h
Improve spacing of BOX elements
[lyx.git] / src / mathed / InsetMathSplit.h
index 213bea6bcc15b11f4abeefb68d0f304c43e6844b..8893e7fe1d9e638515a0532d40269e00303dc564 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.
  */
@@ -21,31 +21,45 @@ namespace lyx {
 class InsetMathSplit : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathSplit(std::string const & name, char valign = 'c');
-
+       explicit InsetMathSplit(Buffer * buf, docstring const & name,
+               char valign = 'c', bool numbered = false);
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
-
        ///
-       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & flag) const;
 
        void write(WriteStream & os) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
+       ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
        int defaultColSpace(col_type) { return 0; }
        ///
+       int displayColSpace(col_type col) const;
+       ///
        char defaultColAlign(col_type);
+       ///
+       char displayColAlign(idx_type idx) const;
+       ///
+       InsetCode lyxCode() const { return MATH_SPLIT_CODE; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       std::string name_;
+       virtual Inset * clone() const;
+       ///
+       docstring name_;
+       ///
+       bool numbered_;
 };
 
 
-
 } // namespace lyx
 #endif