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 line separator
|
|
|
|
|
inline
|
2006-09-03 07:02:38 +00:00
|
|
|
|
bool isLineSeparatorChar(lyx::char_type c)
|
2002-08-14 17:15:18 +00:00
|
|
|
|
{
|
2003-10-28 11:18:40 +00:00
|
|
|
|
return c == ' ';
|
2002-05-30 02:24:33 +00:00
|
|
|
|
}
|
2002-08-14 17:15:18 +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
|
2006-04-08 09:09:57 +00:00
|
|
|
|
bool isLetterChar(unsigned char c)
|
2002-08-14 17:15:18 +00:00
|
|
|
|
{
|
2003-10-28 11:18:40 +00:00
|
|
|
|
return (c >= 'A' && c <= 'Z')
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|| (c >= 'a' && c <= 'z')
|
2003-10-28 11:18:40 +00:00
|
|
|
|
|| (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
|
2006-04-08 09:09:57 +00:00
|
|
|
|
bool isPrintable(unsigned char c)
|
2002-08-14 17:15:18 +00:00
|
|
|
|
{
|
2003-10-28 11:18:40 +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
|
2006-04-08 09:09:57 +00:00
|
|
|
|
bool isPrintableNonspace(unsigned char c)
|
2002-08-14 17:15:18 +00:00
|
|
|
|
{
|
2006-04-08 09:09:57 +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
|
2006-04-08 09:09:57 +00:00
|
|
|
|
bool isDigit(unsigned char ch)
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
|
|
|
|
return ch >= '0' && ch <= '9';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
#endif // TEXTUTILS_H
|