diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 | ||||
-rw-r--r-- | include/ScintillaCall.h | 2 | ||||
-rw-r--r-- | include/ScintillaMessages.h | 2 |
4 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index a90dd3571..e2555b862 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -475,6 +475,8 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_AUTOCGETMAXHEIGHT 2211 #define SCI_AUTOCSETSTYLE 2109 #define SCI_AUTOCGETSTYLE 2120 +#define SCI_AUTOCSETIMAGESCALE 2815 +#define SCI_AUTOCGETIMAGESCALE 2816 #define SCI_SETINDENT 2122 #define SCI_GETINDENT 2123 #define SCI_SETUSETABS 2124 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index ef0a9a384..af34b71db 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1174,6 +1174,12 @@ set void AutoCSetStyle=2109(int style,) # Get the style number used for auto-completion and user lists fonts. get int AutoCGetStyle=2120(,) +# Set the scale factor in percent for auto-completion list images. +set void AutoCSetImageScale=2815(int scalePercent,) + +# Get the scale factor in percent for auto-completion list images. +get int AutoCGetImageScale=2816(,) + # Set the number of spaces used for one level of indentation. set void SetIndent=2122(int indentSize,) diff --git a/include/ScintillaCall.h b/include/ScintillaCall.h index b31978725..a2387f876 100644 --- a/include/ScintillaCall.h +++ b/include/ScintillaCall.h @@ -324,6 +324,8 @@ public: int AutoCGetMaxHeight(); void AutoCSetStyle(int style); int AutoCGetStyle(); + void AutoCSetImageScale(int scalePercent); + int AutoCGetImageScale(); void SetIndent(int indentSize); int Indent(); void SetUseTabs(bool useTabs); diff --git a/include/ScintillaMessages.h b/include/ScintillaMessages.h index d7ec27c39..67b4f69c6 100644 --- a/include/ScintillaMessages.h +++ b/include/ScintillaMessages.h @@ -249,6 +249,8 @@ enum class Message { AutoCGetMaxHeight = 2211, AutoCSetStyle = 2109, AutoCGetStyle = 2120, + AutoCSetImageScale = 2815, + AutoCGetImageScale = 2816, SetIndent = 2122, GetIndent = 2123, SetUseTabs = 2124, |