]> 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 56f452d66314b72a28e96918dfeab8a65170dc45..4d3063d61777dcb110537127dd3cd26812e1fa5e 100644 (file)
@@ -1,26 +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"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 
 class MathSplitInset : public MathGridInset {
-public: 
+public:
        ///
-       explicit MathSplitInset(int n);
+       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) { return 'l'; }
+       char defaultColAlign(col_type);
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       std::string name_;
 };
 
 #endif