]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_tabularinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_tabularinset.h
index 3778c45a51cfb8705a00341d27f17fb82b71b99c..469983dde2f7a7468f88abe6fd404f2cbaddaeaa 100644 (file)
@@ -1,29 +1,30 @@
 // -*- C++ -*-
-#ifndef MATH_TABULARINSET_H
-#define MATH_TABULARINSET_H
-
-#include "math_gridinset.h"
-
-
 /**
- * Inset for things like \begin{tabular}...\end{tabular}
+ * \file math_tabularinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author André Pönitz
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
+#ifndef MATH_TABULARINSET_H
+#define MATH_TABULARINSET_H
+
+#include "math_gridinset.h"
+
+
+/// Inset for things like \begin{tabular}...\end{tabular}
 class MathTabularInset : public MathGridInset {
 public:
        ///
-       MathTabularInset(string const &, int m, int n);
-       ///
-       MathTabularInset(string const &, int m, int n,
-               char valign, string const & halign);
+       MathTabularInset(std::string const &, int m, int n);
        ///
-       MathTabularInset(string const &, char valign, string const & halign);
+       MathTabularInset(std::string const &, int m, int n,
+               char valign, std::string const & halign);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       MathTabularInset(std::string const &, char valign, std::string const & halign);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -36,13 +37,16 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
+       void infoize(std::ostream & os) const;
+       ///
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif