diff options
author | XhmikosR <xhmikosr@users.sourceforge.net> | 2011-04-07 11:49:10 +0000 |
---|---|---|
committer | XhmikosR <xhmikosr@users.sourceforge.net> | 2011-04-07 11:49:10 +0000 |
commit | c48653e2f74a655d0ce03db8942e7071969d0b91 (patch) | |
tree | 92b09a8d0a92b8f6662d21d666b8b7359c088c84 /scintilla/include | |
parent | cb025f715a049c891d295b8b716c248caeaa83c7 (diff) | |
download | notepad2-mod-c48653e2f74a655d0ce03db8942e7071969d0b91.zip notepad2-mod-c48653e2f74a655d0ce03db8942e7071969d0b91.tar.gz notepad2-mod-c48653e2f74a655d0ce03db8942e7071969d0b91.tar.bz2 |
update scintilla
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@463 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'scintilla/include')
-rw-r--r-- | scintilla/include/Scintilla.h | 2 | ||||
-rw-r--r-- | scintilla/include/Scintilla.iface | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/scintilla/include/Scintilla.h b/scintilla/include/Scintilla.h index 65bbeb8..1f07bbe 100644 --- a/scintilla/include/Scintilla.h +++ b/scintilla/include/Scintilla.h @@ -136,6 +136,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_MARKERDEFINE 2040
#define SCI_MARKERSETFORE 2041
#define SCI_MARKERSETBACK 2042
+#define SCI_MARKERSETBACKSELECTED 2292
+#define SCI_MARKERENABLEHIGHLIGHT 2293
#define SCI_MARKERADD 2043
#define SCI_MARKERDELETE 2044
#define SCI_MARKERDELETEALL 2045
diff --git a/scintilla/include/Scintilla.iface b/scintilla/include/Scintilla.iface index c3bcc55..805c0ea 100644 --- a/scintilla/include/Scintilla.iface +++ b/scintilla/include/Scintilla.iface @@ -292,6 +292,12 @@ fun void MarkerSetFore=2041(int markerNumber, colour fore) # Set the background colour used for a particular marker number.
fun void MarkerSetBack=2042(int markerNumber, colour back)
+# Set the background colour used for a particular marker number when its folding block is selected.
+fun void MarkerSetBackSelected=2292(int markerNumber, colour back)
+
+# Enable/disable highlight for current folding bloc (smallest one that contains the caret)
+fun void MarkerEnableHighlight=2293(bool enabled,)
+
# Add a marker to a line, returning an ID which can be used to find or delete the marker.
fun int MarkerAdd=2043(int line, int markerNumber)
|