From 63654a7adf0e2960f63d2e20ccf3900d274fa410 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.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'include/Scintilla.h') diff --git a/include/Scintilla.h b/include/Scintilla.h index be1230821..e53931e0f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -238,8 +238,13 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); #define SCI_GETSELECTIONEND SCI_START + 145 #define SCI_SETPRINTMAGNIFICATION SCI_START + 146 #define SCI_GETPRINTMAGNIFICATION SCI_START + 147 -#define SCI_SETPRINTINVERTLIGHT SCI_START + 148 -#define SCI_GETPRINTINVERTLIGHT SCI_START + 149 + +#define SC_PRINT_NORMAL 0 +#define SC_PRINT_INVERTLIGHT 1 +#define SC_PRINT_BLACKONWHITE 2 + +#define SCI_SETPRINTCOLOURMODE SCI_START + 148 +#define SCI_GETPRINTCOLOURMODE SCI_START + 149 #define SCI_CALLTIPSHOW SCI_START + 200 #define SCI_CALLTIPCANCEL SCI_START + 201 -- cgit v1.2.3