diff options
| author | nyamatongwe <unknown> | 2000-07-05 04:49:03 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-07-05 04:49:03 +0000 |
| commit | abe70b07bd9bec5d94ffc5ce72c5ee7613981ac8 (patch) | |
| tree | dbaabe79f4af1f9fef1b514ed64466165560a098 /include/Scintilla.iface | |
| parent | a21ce1bbb8c3f6e1330a451ca7e0d9ba7ce628db (diff) | |
| download | scintilla-mirror-abe70b07bd9bec5d94ffc5ce72c5ee7613981ac8.tar.gz | |
Changed print colour mode to have black on white as well as invert light
states.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 28c60f13d..ce52f1c70 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -502,12 +502,18 @@ set void SetPrintMagnification=2146(int magnification,) # Returns the print magnification. get int GetPrintMagnification=2147(,) -# Set to invert the light value of each style for printing. -# Used to produce reasonable print output when black background used. -set void SetPrintInvertLight=2148(bool invert,) - -# Returns the invert light value property. -get bool GetPrintInvertLight=2149(,) +# PrintColourMode - use same colours as screen. +val SC_PRINT_NORMAL=0 +# PrintColourMode - invert the light value of each style for printing. +val SC_PRINT_INVERTLIGHT=1 +# PrintColourMode - force black text on white background for printing. +val SC_PRINT_BLACKONWHITE=2 + +# Modify colours when printing for clearer printed text. +set void SetPrintColourMode=2148(int mode,) + +# Returns the print colour mode. +get int GetPrintColourMode=2149(,) # Show a call tip containing a definition near position pos. fun void CallTipShow=2200(position pos, string definition) |
