diff options
author | nyamatongwe <devnull@localhost> | 2002-11-01 09:27:54 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-11-01 09:27:54 +0000 |
commit | 2236f4c7231858b759c3943900bba00411f6d140 (patch) | |
tree | b37d1802233b3430a1f58b123bb157ebdc387062 | |
parent | 7b26f1605c0ab78a7f3738b66451a3b525c24d89 (diff) | |
download | scintilla-mirror-2236f4c7231858b759c3943900bba00411f6d140.tar.gz |
MARKERDEFINEPIXMAP.
-rw-r--r-- | doc/ScintillaDoc.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 971a0324f..2a8fe708a 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -961,6 +961,7 @@ SCI_GETHIGHLIGHTGUIDE </h3> <pre> SCI_MARKERDEFINE(int markernumber, int markersymbols) +SCI_MARKERDEFINEPIXMAP(int markernumber, const char *xpm) SCI_MARKERSETFORE(int markernumber, int colour) SCI_MARKERSETBACK(int markernumber, int colour) SCI_MARKERADD(int line, int markernumber) @@ -1048,6 +1049,11 @@ SCI_MARKERDELETEHANDLE(int handle) commonly used as an argument to SCI_SETMARGINMASKN when defining a margin to be used for folding. </p> + <p> + Markers can be set to pixmaps using the SCI_MARKERDEFINEPIXMAP + method. The XPM format is used for the pixmap and it is limited to + to pixmaps that use one character per pixel. The data should be null terminated. + </p> <h3> Indicators </h3> |