]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathSpace.h
Introduce a return value for mathmlize(). We will need this to be able
[features.git] / src / mathed / InsetMathSpace.h
index 579f29a3ab104ea675b33002504e33a254a2bea5..442fe2e799c2f15ea239fd24b68b6e165dbeb616 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.
  */
@@ -13,6 +13,7 @@
 #define MATH_SPACEINSET_H
 
 #include "InsetMath.h"
+#include "Length.h"
 
 
 namespace lyx {
@@ -22,9 +23,13 @@ namespace lyx {
 class InsetMathSpace : public InsetMath {
 public:
        ///
-       explicit InsetMathSpace(int sp);
+       explicit InsetMathSpace();
        ///
-       explicit InsetMathSpace(docstring const & name);
+       explicit InsetMathSpace(std::string const & name, std::string const & length);
+       ///
+       explicit InsetMathSpace(Length const & length);
+       ///
+       ~InsetMathSpace();
        ///
        InsetMathSpace const * asSpaceInset() const { return this; }
        ///
@@ -47,13 +52,31 @@ public:
        ///
        void octave(OctaveStream &) const;
        ///
+       docstring mathmlize(MathStream & ms) const;
+       ///
        void write(WriteStream & os) const;
+       /// generate something that will be understood by the Dialogs.
+       std::string const createDialogStr() const;
+       ///
+       bool hasSettings() const { return true; }
+       ///
+       docstring contextMenu(BufferView const &, int, int) const;
+       ///
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
+       ///
+       InsetCode lyxCode() const { return MATH_SPACE_CODE; }
+
+protected:
+       ///
+       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 private:
        virtual Inset * clone() const;
        ///
-       int space_;
+       bool isNegative() const;
        ///
-       Dimension dim_;
+       int space_;
+       /// amount of space for \\hspace
+       Length length_;
 };