diff options
author | orbitalquark <70453897+orbitalquark@users.noreply.github.com> | 2025-05-12 11:38:13 +1000 |
---|---|---|
committer | orbitalquark <70453897+orbitalquark@users.noreply.github.com> | 2025-05-12 11:38:13 +1000 |
commit | 140a921a133ee63337e8dfe1c7261b7eb86399e9 (patch) | |
tree | 219a6641ddd4fd117bc0b0fa2bb1876d39f4499e /call/ScintillaCall.cxx | |
parent | da1240f14a3fda528e8776cc873d124b6c8703f4 (diff) | |
download | scintilla-mirror-140a921a133ee63337e8dfe1c7261b7eb86399e9.tar.gz |
Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK.
Diffstat (limited to 'call/ScintillaCall.cxx')
-rw-r--r-- | call/ScintillaCall.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/call/ScintillaCall.cxx b/call/ScintillaCall.cxx index 662bb9406..11a1f1d52 100644 --- a/call/ScintillaCall.cxx +++ b/call/ScintillaCall.cxx @@ -1115,6 +1115,14 @@ int ScintillaCall::AutoCGetStyle() { return static_cast<int>(Call(Message::AutoCGetStyle)); } +void ScintillaCall::AutoCSetImageScale(int scalePercent) { + Call(Message::AutoCSetImageScale, scalePercent); +} + +int ScintillaCall::AutoCGetImageScale() { + return static_cast<int>(Call(Message::AutoCGetImageScale)); +} + void ScintillaCall::SetIndent(int indentSize) { Call(Message::SetIndent, indentSize); } |