diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 7 | ||||
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 10 |
3 files changed, 16 insertions, 2 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 49ca762ae..9d3b000b8 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -94,7 +94,12 @@ #define SCE_H_QUESTION 18 #define SCE_H_VALUE 19 #define SCE_H_XCCOMMENT 20 -#define SCE_H_SGML 21 +#define SCE_H_SGML_DEFAULT 21 +#define SCE_H_SGML_COMMAND 22 +#define SCE_H_SGML_1ST_PARAM 23 +#define SCE_H_SGML_STRING 24 +#define SCE_H_SGML_COMMENT 25 +#define SCE_H_SGML_ERROR 26 #define SCE_HJ_START 40 #define SCE_HJ_DEFAULT 41 #define SCE_HJ_COMMENT 42 diff --git a/include/Scintilla.h b/include/Scintilla.h index 9d5edb70a..abe1581a4 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -132,6 +132,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define STYLE_BRACEBAD 35 #define STYLE_CONTROLCHAR 36 #define STYLE_INDENTGUIDE 37 +#define STYLE_LASTPREDEFINED 39 #define STYLE_MAX 127 #define SC_CHARSET_ANSI 0 #define SC_CHARSET_DEFAULT 1 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index b96958039..1d1d17074 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -294,12 +294,15 @@ set void SetMarginSensitiveN=2246(int margin, bool sensitive) # Retrieve the mouse click sensitivity of a margin. get bool GetMarginSensitiveN=2247(int margin,) +# Styles in range 32..37 are predefined for parts of the UI and are not used as normal styles. +# Styles 38 and 39 are for future use. val STYLE_DEFAULT=32 val STYLE_LINENUMBER=33 val STYLE_BRACELIGHT=34 val STYLE_BRACEBAD=35 val STYLE_CONTROLCHAR=36 val STYLE_INDENTGUIDE=37 +val STYLE_LASTPREDEFINED=39 val STYLE_MAX=127 # Character set identifiers are used in StyleSetCharacterSet. @@ -1331,7 +1334,12 @@ val SCE_H_VALUE=19 # X-Code val SCE_H_XCCOMMENT=20 # SGML -val SCE_H_SGML=21 +val SCE_H_SGML_DEFAULT=21 +val SCE_H_SGML_COMMAND=22 +val SCE_H_SGML_1ST_PARAM=23 +val SCE_H_SGML_STRING=24 +val SCE_H_SGML_COMMENT=25 +val SCE_H_SGML_ERROR=26 # Embedded Javascript val SCE_HJ_START=40 val SCE_HJ_DEFAULT=41 |