Update to Scintilla 5.5.2.

This commit is contained in:
Martijn Laan 2024-09-26 14:51:17 +02:00
parent e4b524a3b3
commit ad8e79a8ab
No known key found for this signature in database
GPG Key ID: E2DD568CF6098F6A
3 changed files with 16 additions and 3 deletions

View File

@ -12,9 +12,6 @@ unit ScintInt.InnoSetup;
interface
const
SCI_LINEINDENT = 2813;
SCI_LINEDEDENT = 2814;
SC_MARK_BACKFORE = 34;
SC_CMDKEYS_DEFAULT = 0;
SC_CMDKEYS_VSCODE_WINDOWS = 1;

View File

@ -252,6 +252,17 @@ const
SCI_STYLESETHOTSPOT = 2409;
SCI_STYLESETCHECKMONOSPACED = 2254;
SCI_STYLEGETCHECKMONOSPACED = 2255;
SC_STRETCH_ULTRA_CONDENSED = 1;
SC_STRETCH_EXTRA_CONDENSED = 2;
SC_STRETCH_CONDENSED = 3;
SC_STRETCH_SEMI_CONDENSED = 4;
SC_STRETCH_NORMAL = 5;
SC_STRETCH_SEMI_EXPANDED = 6;
SC_STRETCH_EXPANDED = 7;
SC_STRETCH_EXTRA_EXPANDED = 8;
SC_STRETCH_ULTRA_EXPANDED = 9;
SCI_STYLESETSTRETCH = 2258;
SCI_STYLEGETSTRETCH = 2259;
SCI_STYLESETINVISIBLEREPRESENTATION = 2256;
SCI_STYLEGETINVISIBLEREPRESENTATION = 2257;
SC_ELEMENT_LIST = 0;
@ -312,6 +323,7 @@ const
SCI_GETCHARACTERCATEGORYOPTIMIZATION = 2721;
SCI_BEGINUNDOACTION = 2078;
SCI_ENDUNDOACTION = 2079;
SCI_GETUNDOSEQUENCE = 2799;
SCI_GETUNDOACTIONS = 2790;
SCI_SETUNDOSAVEPOINT = 2791;
SCI_GETUNDOSAVEPOINT = 2792;
@ -726,7 +738,9 @@ const
SCI_CANCEL = 2325;
SCI_DELETEBACK = 2326;
SCI_TAB = 2327;
SCI_LINEINDENT = 2813;
SCI_BACKTAB = 2328;
SCI_LINEDEDENT = 2814;
SCI_NEWLINE = 2329;
SCI_FORMFEED = 2330;
SCI_VCHOME = 2331;
@ -951,6 +965,8 @@ const
SCI_GETLAYOUTTHREADS = 2776;
SCI_COPYALLOWLINE = 2519;
SCI_CUTALLOWLINE = 2810;
SCI_SETCOPYSEPARATOR = 2811;
SCI_GETCOPYSEPARATOR = 2812;
SCI_GETCHARACTERPOINTER = 2520;
SCI_GETRANGEPOINTER = 2643;
SCI_GETGAPPOSITION = 2644;

Binary file not shown.