1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file textutils.h
|
2002-09-25 10:03:41 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 10:03:41 +00:00
|
|
|
|
* \author Matthias Ettrich
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-05-30 02:24:33 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
// FIXME: I can think of a better name for this file ...
|
2002-08-14 17:15:18 +00:00
|
|
|
|
|
1999-11-15 10:54:16 +00:00
|
|
|
|
#ifndef TEXTUTILS_H
|
|
|
|
|
#define TEXTUTILS_H
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if the char is a word separator
|
2000-02-29 02:19:17 +00:00
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsSeparatorChar(char c)
|
|
|
|
|
{
|
2000-02-29 02:19:17 +00:00
|
|
|
|
return (c == ' ');
|
|
|
|
|
}
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if the char is a line separator
|
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsLineSeparatorChar(char c)
|
|
|
|
|
{
|
2002-05-30 02:24:33 +00:00
|
|
|
|
return (c == ' ');
|
|
|
|
|
}
|
2002-08-14 17:15:18 +00:00
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
|
|
|
|
|
/// return true if the char is "punctuation"
|
2000-02-29 02:19:17 +00:00
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsKommaChar(char c)
|
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
|
return (c == ','
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|| c == '('
|
|
|
|
|
|| c == ')'
|
|
|
|
|
|| c == '['
|
|
|
|
|
|| c == ']'
|
|
|
|
|
|| c == '{'
|
|
|
|
|
|| c == '}'
|
|
|
|
|
|| c == ';'
|
|
|
|
|
|| c == '.'
|
|
|
|
|
|| c == ':'
|
|
|
|
|
|| c == '-'
|
|
|
|
|
|| c == '?'
|
|
|
|
|
|| c == '!'
|
|
|
|
|
|| c == '&'
|
|
|
|
|
|| c == '@'
|
|
|
|
|
|| c == '+'
|
|
|
|
|
|| c == '-'
|
|
|
|
|
|| c == '~'
|
|
|
|
|
|| c == '#'
|
|
|
|
|
|| c == '%'
|
|
|
|
|
|| c == '^'
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|| c == '/'
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|| c == '\\'
|
1999-09-27 18:44:28 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if a char is alphabetical (including accented chars)
|
2000-02-29 02:19:17 +00:00
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsLetterChar(unsigned char c)
|
|
|
|
|
{
|
1999-11-15 10:54:16 +00:00
|
|
|
|
return ((c >= 'A' && c <= 'Z')
|
|
|
|
|
|| (c >= 'a' && c <= 'z')
|
|
|
|
|
|| (c >= 192)); // in iso-8859-x these are accented chars
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if the char is printable (masked to 7-bit ASCII)
|
2000-02-29 02:19:17 +00:00
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsPrintable(unsigned char c)
|
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
return ((c & 127) >= ' ');
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
|
|
|
|
|
2002-08-14 17:15:18 +00:00
|
|
|
|
/// return true if the char is printable and not a space (masked to 7-bit ASCII)
|
2000-07-04 20:32:37 +00:00
|
|
|
|
inline
|
2002-08-14 17:15:18 +00:00
|
|
|
|
bool IsPrintableNonspace(unsigned char c)
|
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
return IsPrintable(c) && (c != ' ');
|
2000-07-04 20:32:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// completely pointless FIXME
|
2000-02-29 02:19:17 +00:00
|
|
|
|
inline
|
2001-06-25 00:06:33 +00:00
|
|
|
|
bool IsDigit(unsigned char ch)
|
|
|
|
|
{
|
|
|
|
|
return ch >= '0' && ch <= '9';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if the char is alphanumeric
|
2001-06-25 00:06:33 +00:00
|
|
|
|
inline
|
|
|
|
|
bool IsLetterCharOrDigit(unsigned char ch)
|
1999-11-15 10:54:16 +00:00
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
return IsLetterChar(ch) || IsDigit(ch);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2002-08-14 17:15:18 +00:00
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
#endif // TEXTUTILS_H
|