diff options
| author | nyamatongwe <devnull@localhost> | 2003-02-02 01:41:11 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-02-02 01:41:11 +0000 |
| commit | 13ad207b99e16fdf48db60a0ec49098e5a0626c9 (patch) | |
| tree | 77571d9565a2b712ea7e7efbe0df63100817fb25 /include/Scintilla.iface | |
| parent | 9e9e3c45aa3d52ecbae1c483bf2125957bac6038 (diff) | |
| download | scintilla-mirror-13ad207b99e16fdf48db60a0ec49098e5a0626c9.tar.gz | |
Two phase drawing.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index bade44fd2..dd4d2d37e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1022,6 +1022,13 @@ 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 faoregrounds? +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,) + ## New messages go here ## Start of key messages |
