]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_splitinset.h
index 4225bae7c0d96addc25a608bbdd9df1ac5fc24a7..4d3063d61777dcb110537127dd3cd26812e1fa5e 100644 (file)
@@ -1,30 +1,43 @@
 // -*- C++ -*-
+/**
+ * \file math_splitinset.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.
+ */
+
 #ifndef MATH_SPLITINSET_H
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
-#include "LString.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 
 class MathSplitInset : public MathGridInset {
 public:
        ///
-       explicit MathSplitInset(string const & name);
+       explicit MathSplitInset(std::string const & name);
+
        ///
-       MathInset * clone() const;
+       void draw(PainterInfo & pi, int x, int y) const;
+
        ///
+       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
+
        void write(WriteStream & os) const;
        ///
+       void infoize(std::ostream & os) const;
+       ///
        int defaultColSpace(col_type) { return 0; }
        ///
        char defaultColAlign(col_type);
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif