]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathSupport.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / MathSupport.h
index 626181aeeca961083b3731ab21a860ffa29dd824..a1396e2338eb8ce06f42a943ce0542cdce69116a 100644 (file)
@@ -16,7 +16,7 @@
 #include "support/docstring.h"
 
 #include <string>
-
+#include <vector>
 
 namespace lyx {
 
@@ -32,9 +32,12 @@ void mathed_char_dim(LyXFont const &, char_type c, Dimension & dim);
 int mathed_char_width(LyXFont const &, char_type c);
 
 void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
-       std::string const & name);
+       docstring const & name);
+
+void mathed_string_dim(LyXFont const & font,
+                      docstring const & s,
+                      Dimension & dim);
 
-void mathed_string_dim(LyXFont const & font, docstring const & s, Dimension & dim);
 int mathed_string_width(LyXFont const &, docstring const & s);
 
 void drawStrRed(PainterInfo & pi, int x, int y, docstring const & s);
@@ -42,19 +45,18 @@ void drawStrBlack(PainterInfo & pi, int x, int y, docstring const & s);
 
 void math_font_max_dim(LyXFont const &, int & asc, int & desc);
 
-void augmentFont(LyXFont & f, std::string const & cmd);
+void augmentFont(LyXFont & f, docstring const & cmd);
 
-bool isFontName(std::string const & name);
+bool isFontName(docstring const & name);
 
 // converts single cell to string
-std::string asString(MathArray const & ar);
+docstring asString(MathArray const & ar);
 // converts single inset to string
-std::string asString(InsetMath const &);
-std::string asString(MathAtom const &);
+docstring asString(InsetMath const &);
+docstring asString(MathAtom const &);
 // converts string to single cell
 void asArray(docstring const & str, MathArray & ar);
 
-
 } // namespace lyx
 
 #endif