diff options
author | nyamatongwe <unknown> | 2001-05-22 01:33:04 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-05-22 01:33:04 +0000 |
commit | 6c1e837c5ebb40996f9a65dfa925774d5b10a109 (patch) | |
tree | d1ea38fe6c47b29083918d7429c9d630d6b83c19 /include | |
parent | d729c7673bc2e71477dcc029ce31f7478f97894a (diff) | |
download | scintilla-mirror-6c1e837c5ebb40996f9a65dfa925774d5b10a109.tar.gz |
Support for forced upper and lower case styles.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index b22482cb7..636428e1f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -145,6 +145,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_STYLESETEOLFILLED 2057 #define SCI_STYLERESETDEFAULT 2058 #define SCI_STYLESETUNDERLINE 2059 +#define SC_CASE_MIXED 0 +#define SC_CASE_UPPER 1 +#define SC_CASE_LOWER 2 +#define SCI_STYLESETCASE 2060 #define SCI_STYLESETCHARACTERSET 2066 #define SCI_SETSELFORE 2067 #define SCI_SETSELBACK 2068 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 884f7332b..1431095c3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -327,6 +327,12 @@ fun void StyleResetDefault=2058(,) # Set a style to be underlined or not. set void StyleSetUnderline=2059(int style, bool underline) +val SC_CASE_MIXED=0 +val SC_CASE_UPPER=1 +val SC_CASE_LOWER=2 +# Set a style to be mixed case, or to force upper or lower case. +set void StyleSetCase=2060(int style, int caseForce) + # Set the character set of the font in a style. set void StyleSetCharacterSet=2066(int style, int characterSet) |