diff options
| author | nyamatongwe <devnull@localhost> | 2002-10-02 03:26:47 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-10-02 03:26:47 +0000 |
| commit | 878b9db415df530b35ae66054228bfbb23a473a3 (patch) | |
| tree | 07a566b2912ab1d77d3e859687a05f806651c87a /include | |
| parent | 158a2b1323dfcbfb53f3c50036747d26306d2394 (diff) | |
| download | scintilla-mirror-878b9db415df530b35ae66054228bfbb23a473a3.tar.gz | |
PixMap marker support.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index a44da5c13..7e070a068 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -129,6 +129,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_MARKERGET 2046 #define SCI_MARKERNEXT 2047 #define SCI_MARKERPREVIOUS 2048 +#define SCI_MARKERDEFINEPIXMAP 2049 #define SC_MARGIN_SYMBOL 0 #define SC_MARGIN_NUMBER 1 #define SCI_SETMARGINTYPEN 2240 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 364e1d3a0..bff157435 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -302,6 +302,9 @@ fun int MarkerNext=2047(int lineStart, int markerMask) # Find the previous line before lineStart that includes a marker in mask. fun int MarkerPrevious=2048(int lineStart, int markerMask) +# Define a marker from a pixmap. +fun void MarkerDefinePixmap=2049(int markerNumber, string pixmap) + enu MarginType=SC_MARGIN_ val SC_MARGIN_SYMBOL=0 val SC_MARGIN_NUMBER=1 |
