diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-23 16:59:41 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-23 16:59:41 +1000 |
commit | 071602224b06d3bc65b8eda49ec8f589ccf66159 (patch) | |
tree | c7e84825e23691624609d1b8d7200eeab41fd41e /src/EditModel.h | |
parent | 7ee2a70c18f899a4845621622241adc578b0400c (diff) | |
download | scintilla-mirror-071602224b06d3bc65b8eda49ec8f589ccf66159.tar.gz |
Implement bidirectional mode bidiL2R for DirectDraw on Win32.
Diffstat (limited to 'src/EditModel.h')
-rw-r--r-- | src/EditModel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/EditModel.h b/src/EditModel.h index 7ad719c12..3da6afb58 100644 --- a/src/EditModel.h +++ b/src/EditModel.h @@ -63,6 +63,8 @@ public: virtual Point GetVisibleOriginInMain() const = 0; virtual Sci::Line LinesOnScreen() const = 0; virtual Range GetHotSpotRange() const = 0; + bool BidirectionalEnabled() const; + bool BidirectionalR2L() const; }; } |