]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathTabular.h
Fix #11827
[lyx.git] / src / mathed / InsetMathTabular.h
index da12246d6d82ab2ec4e3c3b22dac50f6295ab205..481d28ef0e723ed48d42ba4009c1614bcfaef5e5 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.
  */
 #include "InsetMathGrid.h"
 
 
+namespace lyx {
+
+
 /// Inset for things like \begin{tabular}...\end{tabular}
 class InsetMathTabular : public InsetMathGrid {
 public:
        ///
-       InsetMathTabular(std::string const &, int m, int n);
+       InsetMathTabular(Buffer * buf, docstring const &, int m, int n);
        ///
-       InsetMathTabular(std::string const &, int m, int n,
-               char valign, std::string const & halign);
-       ///
-       InsetMathTabular(std::string const &, char valign, std::string const & halign);
+       InsetMathTabular(Buffer * buf, docstring const &, int m, int n,
+               char valign, docstring const & halign);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -37,16 +38,26 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
+       ///
+       InsetCode lyxCode() const { return MATH_TABULAR_CODE; }
+       ///
+       int leftMargin() const { return 4; } //override
+       ///
+       int rightMargin() const { return 2; } //override
+       ///
+       bool handlesMulticolumn() const { return true; } //override
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       Inset * clone() const;
        ///
-       std::string name_;
+       docstring name_;
 };
 
+} // namespace lyx
+
 #endif