]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/scintilla/include/KeyWords.h
Added RTLD_GLOBAL to dlopen() flags which is needed if libraries depend
[wxWidgets.git] / contrib / src / stc / scintilla / include / KeyWords.h
index 1b42ecdd93e9a4c049e1e57e365e0497a6d92b5c..2cc03b788f5606ab81a98cc3c2722211993d06a0 100644 (file)
@@ -3,39 +3,6 @@
 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
 // The License.txt file describes the conditions under which this software may be distributed.
 
-typedef void (*LexerFunction)(unsigned int startPos, int lengthDoc, int initStyle,
-                  WordList *keywordlists[], StylingContext &styler);
-                  
-class LexerModule {
-       static LexerModule *base;
-       LexerModule *next;
-       int language;
-       LexerFunction fn;
-public:
-       LexerModule(int language_, LexerFunction fn_);
-       static void Colourise(unsigned int startPos, int lengthDoc, int initStyle,
-                  int language, WordList *keywordlists[], StylingContext &styler);
-};
-
-inline bool iswordchar(char ch) {
-       return isalnum(ch) || ch == '.' || ch == '_';
-}
-
-inline bool iswordstart(char ch) {
-       return isalnum(ch) || ch == '_';
-}
-
-inline bool isoperator(char ch) {
-       if (isalnum(ch))
-               return false;
-       // '.' left out as it is used to make up numbers
-       if (ch == '%' || ch == '^' || ch == '&' || ch == '*' ||
-               ch == '(' || ch == ')' || ch == '-' || ch == '+' ||
-               ch == '=' || ch == '|' || ch == '{' || ch == '}' ||
-               ch == '[' || ch == ']' || ch == ':' || ch == ';' ||
-               ch == '<' || ch == '>' || ch == ',' || ch == '/' ||
-               ch == '?' || ch == '!' || ch == '.' || ch == '~')
-               return true;
-       return false;
-}
+void ColouriseDoc(int codePage, int startPos, int lengthDoc, int initStyle, 
+       int language, WordList *keywordlists[], StylingContext &styler);