diff options
author | nyamatongwe <devnull@localhost> | 2003-01-01 04:47:35 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-01-01 04:47:35 +0000 |
commit | 4cb12c84a0682f82fcd5fc113a5a87ea42ece5c1 (patch) | |
tree | 7f93a12ef5b012a9137992f25275bfacb5f8ffeb /include | |
parent | 3a6568cf58dabdfa4e77b3a2ba7c37a71689052d (diff) | |
download | scintilla-mirror-4cb12c84a0682f82fcd5fc113a5a87ea42ece5c1.tar.gz |
Fixed up line wrapped printing and added property to turn wrapping on or
off for printing.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 4fa58c481..ad6837cb2 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -505,6 +505,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define CARET_EVEN 0x08 #define SCI_SETXCARETPOLICY 2402 #define SCI_SETYCARETPOLICY 2403 +#define SCI_SETPRINTWRAPS 2406 +#define SCI_GETPRINTWRAPS 2407 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_SETLEXER 4001 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 88741ba3c..a1c785452 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1363,6 +1363,12 @@ fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop) # The exclusion zone is given in lines. fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop) +# Set printing to line wrapped (true) or not line wrapped. +set void SetPrintWraps=2406(bool wraps,) + +# Is printing line wrapped. +get bool GetPrintWraps=2407(,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |