]> git.lyx.org Git - lyx.git/blobdiff - src/support/lstrings.h
Add quote style information to languages
[lyx.git] / src / support / lstrings.h
index c04357ec7a8dc0e5473579fe153db7c98d4970cb..d0f74803658fdadeafb6161ebcf6b40516a1be14 100644 (file)
@@ -45,7 +45,9 @@ bool isStrUnsignedInt(std::string const & str);
 bool isStrDbl(std::string const & str);
 
 /// does the string contain a digit?
-bool hasDigit(docstring const & str);
+bool hasDigitASCII(docstring const & str);
+
+bool isHexChar(char_type);
 
 bool isHex(docstring const & str);
 
@@ -101,6 +103,14 @@ docstring const lowercase(docstring const & s);
 /// Does not depend on the locale.
 docstring const uppercase(docstring const & s);
 
+/// Returns the superscript of \p c or \p c if no superscript exists.
+/// Does not depend on the locale.
+char_type superscript(char_type c);
+
+/// Returns the subscript of \p c or \p c if no subscript exists.
+/// Does not depend on the locale.
+char_type subscript(char_type c);
+
 /// Does str start with c?
 bool prefixIs(docstring const & str, char_type c);
 
@@ -275,6 +285,9 @@ docstring const getStringFromVector(std::vector<docstring> const & vec,
 /// found, else -1. The last item in \p str must be "".
 int findToken(char const * const str[], std::string const & search_token);
 
+/// A test string that is supposed to be translated into the gettext code
+std::string const languageTestString();
+
 template <class Arg1>
 docstring bformat(docstring const & fmt, Arg1);