diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-11-11 19:14:30 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-11-11 19:14:30 +1100 |
| commit | 23460f666bf34479850000eed40ba0ea38ca6665 (patch) | |
| tree | 1c199ed2a3adb52f3cb6790b39532235e66e38f2 /src/Document.h | |
| parent | 3684fe443af3fcc0e5ad8ab674203a58c4ccaac3 (diff) | |
| download | scintilla-mirror-23460f666bf34479850000eed40ba0ea38ca6665.tar.gz | |
Implemented idle styling. This allows painting without first styling all visible
text then styling in the background using idle-time.
Diffstat (limited to 'src/Document.h')
| -rw-r--r-- | src/Document.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index ea8ddfbed..71a45879e 100644 --- a/src/Document.h +++ b/src/Document.h @@ -246,6 +246,7 @@ public: bool useTabs; bool tabIndents; bool backspaceUnindents; + double durationStyleOneLine; DecorationList decorations; @@ -400,6 +401,7 @@ public: bool SCI_METHOD SetStyles(Sci_Position length, const char *styles); int GetEndStyled() const { return endStyled; } void EnsureStyledTo(int pos); + void StyleToAdjustingLineDuration(int pos); void LexerChanged(); int GetStyleClock() const { return styleClock; } void IncrementStyleClock(); |
