X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_tabularinset.h;h=88224601b2efb5a67e9513c8200e2f86deabe97b;hb=b447408de232872fef1537fca542abc23702d572;hp=7e1bfe92a4c9e7ad4d876d34d590f9f566b19c19;hpb=ca4efc12c2e8015c9ad2a0fc8a85b0d80e6bae36;p=lyx.git diff --git a/src/mathed/math_tabularinset.h b/src/mathed/math_tabularinset.h index 7e1bfe92a4..88224601b2 100644 --- a/src/mathed/math_tabularinset.h +++ b/src/mathed/math_tabularinset.h @@ -1,33 +1,36 @@ // -*- 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(std::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, + char valign, std::string const & halign); /// - MathTabularInset(string const &, char valign, string const & halign); + MathTabularInset(std::string const &, char valign, std::string const & halign); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// MathTabularInset * asTabularInset() { return this; } /// @@ -42,7 +45,7 @@ public: private: /// - string name_; + std::string name_; }; #endif