]>
Commit | Line | Data |
---|---|---|
65ec6247 RD |
1 | // Scintilla source code edit control |
2 | /** @file KeyWords.h | |
3 | ** Colourise for particular languages. | |
4 | **/ | |
5 | // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> | |
9ce192d4 RD |
6 | // The License.txt file describes the conditions under which this software may be distributed. |
7 | ||
f6bcfd97 BP |
8 | typedef void (*LexerFunction)(unsigned int startPos, int lengthDoc, int initStyle, |
9 | WordList *keywordlists[], Accessor &styler); | |
88a8b04e | 10 | |
65ec6247 RD |
11 | /** |
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. | |
15 | */ | |
f6bcfd97 | 16 | class LexerModule { |
65ec6247 | 17 | protected: |
1a2fb4cd | 18 | const LexerModule *next; |
f6bcfd97 | 19 | int language; |
65ec6247 RD |
20 | LexerFunction fnLexer; |
21 | LexerFunction fnFolder; | |
a834585d RD |
22 | const char * const * wordListDescriptions; |
23 | ||
1a2fb4cd | 24 | static const LexerModule *base; |
65ec6247 RD |
25 | static int nextLanguage; |
26 | ||
f6bcfd97 | 27 | public: |
1a2fb4cd | 28 | const char *languageName; |
88a8b04e | 29 | LexerModule(int language_, LexerFunction fnLexer_, |
a834585d RD |
30 | const char *languageName_=0, LexerFunction fnFolder_=0, |
31 | const char * const wordListDescriptions_[] = NULL); | |
1a2fb4cd | 32 | int GetLanguage() const { return language; } |
a834585d RD |
33 | |
34 | // -1 is returned if no WordList information is available | |
35 | int GetNumWordLists() const; | |
36 | const char *GetWordListDescription(int index) const; | |
37 | ||
65ec6247 | 38 | virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle, |
1a2fb4cd | 39 | WordList *keywordlists[], Accessor &styler) const; |
65ec6247 | 40 | virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle, |
1a2fb4cd RD |
41 | WordList *keywordlists[], Accessor &styler) const; |
42 | static const LexerModule *Find(int language); | |
43 | static const LexerModule *Find(const char *languageName); | |
f6bcfd97 BP |
44 | }; |
45 | ||
65ec6247 RD |
46 | /** |
47 | * Check if a character is a space. | |
48 | * This is ASCII specific but is safe with chars >= 0x80. | |
49 | */ | |
50 | inline bool isspacechar(unsigned char ch) { | |
51 | return (ch == ' ') || ((ch >= 0x09) && (ch <= 0x0d)); | |
52 | } | |
53 | ||
f6bcfd97 | 54 | inline bool iswordchar(char ch) { |
65ec6247 | 55 | return isascii(ch) && (isalnum(ch) || ch == '.' || ch == '_'); |
f6bcfd97 BP |
56 | } |
57 | ||
58 | inline bool iswordstart(char ch) { | |
65ec6247 | 59 | return isascii(ch) && (isalnum(ch) || ch == '_'); |
f6bcfd97 BP |
60 | } |
61 | ||
62 | inline bool isoperator(char ch) { | |
65ec6247 | 63 | if (isascii(ch) && isalnum(ch)) |
f6bcfd97 BP |
64 | return false; |
65 | // '.' left out as it is used to make up numbers | |
66 | if (ch == '%' || ch == '^' || ch == '&' || ch == '*' || | |
67 | ch == '(' || ch == ')' || ch == '-' || ch == '+' || | |
68 | ch == '=' || ch == '|' || ch == '{' || ch == '}' || | |
69 | ch == '[' || ch == ']' || ch == ':' || ch == ';' || | |
70 | ch == '<' || ch == '>' || ch == ',' || ch == '/' || | |
71 | ch == '?' || ch == '!' || ch == '.' || ch == '~') | |
72 | return true; | |
73 | return false; | |
74 | } |