diff options
| author | nyamatongwe <unknown> | 2011-06-25 07:58:03 +1000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-06-25 07:58:03 +1000 |
| commit | 640bc7546d4d8ad5228e09ed2d280ea12b0690e9 (patch) | |
| tree | 8b0e456078c1db7c0751a9edee6bfbe258a24792 /include/Scintilla.iface | |
| parent | aa198d68b4f938a20aadfb53267fab87f64a7004 (diff) | |
| download | scintilla-mirror-640bc7546d4d8ad5228e09ed2d280ea12b0690e9.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(,) |
