aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-05 04:49:03 +0000
committernyamatongwe <devnull@localhost>2000-07-05 04:49:03 +0000
commit63654a7adf0e2960f63d2e20ccf3900d274fa410 (patch)
treedbaabe79f4af1f9fef1b514ed64466165560a098 /include/Scintilla.h
parentdb04c9f43e663e771b0eeeca0cae3b8924afb35e (diff)
downloadscintilla-mirror-63654a7adf0e2960f63d2e20ccf3900d274fa410.tar.gz
Changed print colour mode to have black on white as well as invert light
states.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h9
1 files changed, 7 insertions, 2 deletions
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