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
|
|
|
|
|
|
2006-09-03 12:12:53 +00:00
|
|
|
|
#include "support/types.h"
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
/// return true if the char is a line separator
|
|
|
|
|
inline
|
2006-11-13 09:53:25 +00:00
|
|
|
|
bool isLineSeparatorChar(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)
|
2007-02-26 09:03:21 +00:00
|
|
|
|
bool isLetterChar(char_type c);
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
2007-04-02 15:21:36 +00:00
|
|
|
|
/// return whether \p c is an alphabetic character in the ASCII range
|
|
|
|
|
bool isAlphaASCII(char_type c);
|
|
|
|
|
|
2006-11-13 09:53:25 +00:00
|
|
|
|
/// return true if the char is printable
|
2007-02-26 09:03:21 +00:00
|
|
|
|
bool isPrintable(char_type c);
|
1999-11-15 10:54:16 +00:00
|
|
|
|
|
2006-11-13 09:53:25 +00:00
|
|
|
|
/// return true if the char is printable and not a space
|
2007-02-26 09:03:21 +00:00
|
|
|
|
bool isPrintableNonspace(char_type c);
|
2006-11-13 09:53:25 +00:00
|
|
|
|
|
2006-09-03 12:12:53 +00:00
|
|
|
|
/// return true if a unicode char is a digit.
|
2007-02-26 09:03:21 +00:00
|
|
|
|
bool isDigit(char_type c);
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
2007-04-02 15:21:36 +00:00
|
|
|
|
/// return whether \p c is a digit in the ASCII range
|
|
|
|
|
bool isDigitASCII(char_type c);
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-05-30 02:24:33 +00:00
|
|
|
|
#endif // TEXTUTILS_H
|