]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/include/KeyWords.h
1 // Scintilla source code edit control
3 ** Colourise for particular languages.
5 // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 typedef void (*LexerFunction
)(unsigned int startPos
, int lengthDoc
, int initStyle
,
9 WordList
*keywordlists
[], Accessor
&styler
);
12 * A LexerModule is responsible for lexing and folding a particular language.
13 * The class maintains a list of LexerModules which can be searched to find a
14 * module appropriate to a particular language.
20 const char *languageName
;
21 LexerFunction fnLexer
;
22 LexerFunction fnFolder
;
24 static LexerModule
*base
;
25 static int nextLanguage
;
28 LexerModule(int language_
, LexerFunction fnLexer_
,
29 const char *languageName_
=0, LexerFunction fnFolder_
=0);
30 int GetLanguage() { return language
; }
31 virtual void Lex(unsigned int startPos
, int lengthDoc
, int initStyle
,
32 WordList
*keywordlists
[], Accessor
&styler
);
33 virtual void Fold(unsigned int startPos
, int lengthDoc
, int initStyle
,
34 WordList
*keywordlists
[], Accessor
&styler
);
35 static LexerModule
*Find(int language
);
36 static LexerModule
*Find(const char *languageName
);
40 * Check if a character is a space.
41 * This is ASCII specific but is safe with chars >= 0x80.
43 inline bool isspacechar(unsigned char ch
) {
44 return (ch
== ' ') || ((ch
>= 0x09) && (ch
<= 0x0d));
47 inline bool iswordchar(char ch
) {
48 return isascii(ch
) && (isalnum(ch
) || ch
== '.' || ch
== '_');
51 inline bool iswordstart(char ch
) {
52 return isascii(ch
) && (isalnum(ch
) || ch
== '_');
55 inline bool isoperator(char ch
) {
56 if (isascii(ch
) && isalnum(ch
))
58 // '.' left out as it is used to make up numbers
59 if (ch
== '%' || ch
== '^' || ch
== '&' || ch
== '*' ||
60 ch
== '(' || ch
== ')' || ch
== '-' || ch
== '+' ||
61 ch
== '=' || ch
== '|' || ch
== '{' || ch
== '}' ||
62 ch
== '[' || ch
== ']' || ch
== ':' || ch
== ';' ||
63 ch
== '<' || ch
== '>' || ch
== ',' || ch
== '/' ||
64 ch
== '?' || ch
== '!' || ch
== '.' || ch
== '~')