From abe70b07bd9bec5d94ffc5ce72c5ee7613981ac8 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 5 Jul 2000 04:49:03 +0000 Subject: Changed print colour mode to have black on white as well as invert light states. --- include/Scintilla.iface | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'include/Scintilla.iface') 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) -- cgit v1.2.3