diff options
| author | nyamatongwe <devnull@localhost> | 2011-06-25 07:58:03 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-06-25 07:58:03 +1000 |
| commit | a35215c303f35e22892193728026b408d083a665 (patch) | |
| tree | 388603057382fa1d784e6fee72e88ba80f5e03a3 /include/Scintilla.iface | |
| parent | 85dc0204832948824579888601f33c7894b5dd50 (diff) | |
| download | scintilla-mirror-a35215c303f35e22892193728026b408d083a665.tar.gz | |
Initial implementation of RGBA images.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index d9272a1dc..28273f012 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -268,6 +268,7 @@ val SC_MARK_FULLRECT=26 val SC_MARK_LEFTRECT=27 val SC_MARK_AVAILABLE=28 val SC_MARK_UNDERLINE=29 +val SC_MARK_RGBAIMAGE=30 val SC_MARK_CHARACTER=10000 @@ -2153,6 +2154,20 @@ set void SetIdentifier=2622(int identifier,) # Get the identifier. get int GetIdentifier=2623(,) +# Set the width for future RGBA image data. +set void RGBAImageSetWidth=2624(int width,) + +# Set the height for future RGBA image data. +set void RGBAImageSetHeight=2625(int height,) + +# Define a marker from RGBA data. +# It has the width and height from RGBAImageSetWidth/Height +fun void MarkerDefineRGBAImage=2626(int markerNumber, string pixels) + +# Register an RGBA image for use in autocompletion lists. +# It has the width and height from RGBAImageSetWidth/Height +fun void RegisterRGBAImage=2627(int type, string pixels) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |
