aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-10-03 12:08:09 +0000
committernyamatongwe <devnull@localhost>2003-10-03 12:08:09 +0000
commitdc7601539e9d80c0c9a1f80dc877cc0f579c89fb (patch)
treeafdb48a77a6bdf2e5cd055368de106eb0c556443 /include/Scintilla.h
parent0529eb9c710b6c396da8dbd0c29417485927768a (diff)
downloadscintilla-mirror-dc7601539e9d80c0c9a1f80dc877cc0f579c89fb.tar.gz
Rectangular selection by keyboard from Philippe.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index d1ec2fb53..d9a3f2dba 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -543,6 +543,21 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_POSITIONAFTER 2418
#define SCI_COPYRANGE 2419
#define SCI_COPYTEXT 2420
+#define SC_SEL_STREAM 0
+#define SC_SEL_RECTANGLE 1
+#define SC_SEL_LINES 2
+#define SCI_SETSELECTIONMODE 2422
+#define SCI_GETSELECTIONMODE 2423
+#define SCI_GETLINESELSTARTPOSITION 2424
+#define SCI_GETLINESELENDPOSITION 2425
+#define SCI_LINEDOWNRECTEXTEND 2426
+#define SCI_LINEUPRECTEXTEND 2427
+#define SCI_CHARLEFTRECTEXTEND 2428
+#define SCI_CHARRIGHTRECTEXTEND 2429
+#define SCI_VCHOMERECTEXTEND 2430
+#define SCI_LINEENDRECTEXTEND 2431
+#define SCI_PAGEUPRECTEXTEND 2432
+#define SCI_PAGEDOWNRECTEXTEND 2433
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001