diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-07-01 12:20:47 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-07-01 12:20:47 +1000 |
| commit | ed43d472889655b39777a7b2e8f01e487acf62b4 (patch) | |
| tree | e50682f73436bdef0fd9b3672118503a643c08d2 /include/Scintilla.iface | |
| parent | 97ab4ab3569aa625c0ed2722080619c97bd52c17 (diff) | |
| download | scintilla-mirror-ed43d472889655b39777a7b2e8f01e487acf62b4.tar.gz | |
Deprecate single phase drawing.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 135be3b4e..8406fa6fc 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1419,13 +1419,6 @@ get bool GetVScrollBar=2281(,) # Append a string to the end of the document without changing the selection. fun void AppendText=2282(int length, string text) -# Is drawing done in two phases with backgrounds drawn before foregrounds? -get bool GetTwoPhaseDraw=2283(,) - -# In twoPhaseDraw mode, drawing is performed in two phases, first the background -# and then the foreground. This avoids chopping off characters that overlap the next run. -set void SetTwoPhaseDraw=2284(bool twoPhase,) - enu PhasesDraw=SC_PHASES_ val SC_PHASES_ONE=0 val SC_PHASES_TWO=1 @@ -4870,3 +4863,11 @@ set void SetKeysUnicode=2521(bool keysUnicode,) # Are keys always interpreted as Unicode? get bool GetKeysUnicode=2522(,) + +# Is drawing done in two phases with backgrounds drawn before foregrounds? +get bool GetTwoPhaseDraw=2283(,) + +# In twoPhaseDraw mode, drawing is performed in two phases, first the background +# and then the foreground. This avoids chopping off characters that overlap the next run. +set void SetTwoPhaseDraw=2284(bool twoPhase,) + |
