]> git.saurik.com Git - wxWidgets.git/commitdiff
new and improved wxSTC
authorRobin Dunn <robin@alldunn.com>
Tue, 26 Sep 2000 05:15:39 +0000 (05:15 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 26 Sep 2000 05:15:39 +0000 (05:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/include/wx/stc/SciLexer.h [deleted file]
contrib/include/wx/stc/stc.h
contrib/samples/stc/stctest.cpp
contrib/src/stc/ScintillaWX.cpp
contrib/src/stc/stc.cpp
include/wx/stc/SciLexer.h [deleted file]
include/wx/stc/stc.h
samples/stc/stctest.cpp
src/stc/ScintillaWX.cpp
src/stc/stc.cpp

diff --git a/contrib/include/wx/stc/SciLexer.h b/contrib/include/wx/stc/SciLexer.h
deleted file mode 100644 (file)
index d869758..0000000
+++ /dev/null
@@ -1,181 +0,0 @@
-// Scintilla source code edit control
-// SciLexer - interface to the added lexer functions in the SciLexer version of the edit control
-// Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#ifndef SCILEXER_H
-#define SCILEXER_H
-
-// SciLexer features - not in standard Scintilla
-
-#define SCLEX_CONTAINER 0
-#define SCLEX_NULL 1
-#define SCLEX_PYTHON 2
-#define SCLEX_CPP 3
-#define SCLEX_HTML 4
-#define SCLEX_XML 5
-#define SCLEX_PERL 6
-#define SCLEX_SQL 7
-#define SCLEX_VB 8
-#define SCLEX_PROPERTIES 9
-#define SCLEX_ERRORLIST 10
-#define SCLEX_MAKEFILE 11
-#define SCLEX_BATCH 12
-#define SCLEX_XCODE 13
-#define SCLEX_LATEX 14
-
-// Lexical states for SCLEX_PYTHON
-#define SCE_P_DEFAULT 0
-#define SCE_P_COMMENTLINE 1
-#define SCE_P_NUMBER 2
-#define SCE_P_STRING 3
-#define SCE_P_CHARACTER 4
-#define SCE_P_WORD 5
-#define SCE_P_TRIPLE 6
-#define SCE_P_TRIPLEDOUBLE 7
-#define SCE_P_CLASSNAME 8
-#define SCE_P_DEFNAME 9
-#define SCE_P_OPERATOR 10
-#define SCE_P_IDENTIFIER 11
-#define SCE_P_COMMENTBLOCK 12
-#define SCE_P_STRINGEOL 13
-
-// Lexical states for SCLEX_CPP, SCLEX_VB
-#define SCE_C_DEFAULT 0
-#define SCE_C_COMMENT 1
-#define SCE_C_COMMENTLINE 2
-#define SCE_C_COMMENTDOC 3
-#define SCE_C_NUMBER 4
-#define SCE_C_WORD 5
-#define SCE_C_STRING 6
-#define SCE_C_CHARACTER 7
-#define SCE_C_UUID 8
-#define SCE_C_PREPROCESSOR 9
-#define SCE_C_OPERATOR 10
-#define SCE_C_IDENTIFIER 11
-#define SCE_C_STRINGEOL 12
-
-// Lexical states for SCLEX_HTML, SCLEX_xML
-#define SCE_H_DEFAULT 0
-#define SCE_H_TAG 1
-#define SCE_H_TAGUNKNOWN 2
-#define SCE_H_ATTRIBUTE 3
-#define SCE_H_ATTRIBUTEUNKNOWN 4
-#define SCE_H_NUMBER 5
-#define SCE_H_DOUBLESTRING 6
-#define SCE_H_SINGLESTRING 7
-#define SCE_H_OTHER 8
-#define SCE_H_COMMENT 9
-#define SCE_H_ENTITY 10
-// XML and ASP
-#define SCE_H_TAGEND 11
-#define SCE_H_XMLSTART 12
-#define SCE_H_XMLEND 13
-#define SCE_H_SCRIPT 14
-#define SCE_H_ASP 15
-#define SCE_H_ASPAT 16
-// Embedded Javascript
-#define SCE_HJ_START 40
-#define SCE_HJ_DEFAULT 41
-#define SCE_HJ_COMMENT 42
-#define SCE_HJ_COMMENTLINE 43
-#define SCE_HJ_COMMENTDOC 44
-#define SCE_HJ_NUMBER 45
-#define SCE_HJ_WORD 46
-#define SCE_HJ_KEYWORD 47
-#define SCE_HJ_DOUBLESTRING 48
-#define SCE_HJ_SINGLESTRING 49
-#define SCE_HJ_SYMBOLS 50
-#define SCE_HJ_STRINGEOL 51
-// ASP Javascript
-#define SCE_HJA_START 55
-#define SCE_HJA_DEFAULT 56
-#define SCE_HJA_COMMENT 57
-#define SCE_HJA_COMMENTLINE 58
-#define SCE_HJA_COMMENTDOC 59
-#define SCE_HJA_NUMBER 60
-#define SCE_HJA_WORD 61
-#define SCE_HJA_KEYWORD 62
-#define SCE_HJA_DOUBLESTRING 63
-#define SCE_HJA_SINGLESTRING 64
-#define SCE_HJA_SYMBOLS 65
-#define SCE_HJA_STRINGEOL 66
-// Embedded VBScript
-#define SCE_HB_START 70
-#define SCE_HB_DEFAULT 71
-#define SCE_HB_COMMENTLINE 72
-#define SCE_HB_NUMBER 73
-#define SCE_HB_WORD 74
-#define SCE_HB_STRING 75
-#define SCE_HB_IDENTIFIER 76
-#define SCE_HB_STRINGEOL 77
-// ASP VBScript
-#define SCE_HBA_START 80
-#define SCE_HBA_DEFAULT 81
-#define SCE_HBA_COMMENTLINE 82
-#define SCE_HBA_NUMBER 83
-#define SCE_HBA_WORD 84
-#define SCE_HBA_STRING 85
-#define SCE_HBA_IDENTIFIER 86
-#define SCE_HBA_STRINGEOL 87
-// Embedded Python
-#define SCE_HP_START 90
-#define SCE_HP_DEFAULT 91
-#define SCE_HP_COMMENTLINE 92
-#define SCE_HP_NUMBER 93
-#define SCE_HP_STRING 94
-#define SCE_HP_CHARACTER 95
-#define SCE_HP_WORD 96
-#define SCE_HP_TRIPLE 97
-#define SCE_HP_TRIPLEDOUBLE 98
-#define SCE_HP_CLASSNAME 99
-#define SCE_HP_DEFNAME 100
-#define SCE_HP_OPERATOR 101
-#define SCE_HP_IDENTIFIER 102
-// ASP Python
-#define SCE_HPA_START 105
-#define SCE_HPA_DEFAULT 106
-#define SCE_HPA_COMMENTLINE 107
-#define SCE_HPA_NUMBER 108
-#define SCE_HPA_STRING 109
-#define SCE_HPA_CHARACTER 110
-#define SCE_HPA_WORD 111
-#define SCE_HPA_TRIPLE 112
-#define SCE_HPA_TRIPLEDOUBLE 113
-#define SCE_HPA_CLASSNAME 114
-#define SCE_HPA_DEFNAME 115
-#define SCE_HPA_OPERATOR 116
-#define SCE_HPA_IDENTIFIER 117
-
-// Lexical states for SCLEX_PERL
-#define SCE_PL_DEFAULT 0
-#define SCE_PL_HERE 1
-#define SCE_PL_COMMENTLINE 2
-#define SCE_PL_POD 3
-#define SCE_PL_NUMBER 4
-#define SCE_PL_WORD 5
-#define SCE_PL_STRING 6
-#define SCE_PL_CHARACTER 7
-#define SCE_PL_PUNCTUATION 8
-#define SCE_PL_PREPROCESSOR 9
-#define SCE_PL_OPERATOR 10
-#define SCE_PL_IDENTIFIER 11
-#define SCE_PL_SCALAR 12
-#define SCE_PL_ARRAY 13
-#define SCE_PL_HASH 14
-#define SCE_PL_SYMBOLTABLE 15
-#define SCE_PL_REF 16
-#define SCE_PL_REGEX 17
-#define SCE_PL_REGSUBST 18
-#define SCE_PL_LONGQUOTE 19
-#define SCE_PL_BACKTICKS 20
-#define SCE_PL_DATASECTION 21
-    
-// Lexical states for SCLEX_LATEX
-#define SCE_L_DEFAULT 0
-#define SCE_L_COMMAND 1
-#define SCE_L_TAG 2
-#define SCE_L_MATH 3
-#define SCE_L_COMMENT 4
-
-#endif
index 659e6f2745da15223be2a89eaf0bdcc820216457..f98e25d714c3ac692e7e1407af477bf779e63c9c 100644 (file)
 
 
 #include <wx/wx.h>
-#include "SciLexer.h"
 
 //----------------------------------------------------------------------
-// constants and stuff
-
-enum wxSTC_UndoType {
-    wxSTC_UndoCollectNone,
-    wxSTC_UndoCollectAutoStart
-};
-
-
-enum wxSTC_EOL {
-    wxSTC_EOL_CRLF,
-    wxSTC_EOL_CR,
-    wxSTC_EOL_LF
-};
-
-enum wxSTC_EDGE {
-    wxSTC_EDGE_NONE,
-    wxSTC_EDGE_LINE,
-    wxSTC_EDGE_BACKGROUND
-};
-
-
-
-const int wxSTC_LEX_STYLE_MAX     = 31;
-const int wxSTC_STYLE_DEFAULT     = 32;
-const int wxSTC_STYLE_LINENUMBER  = 33;
-const int wxSTC_STYLE_BRACELIGHT  = 34;
-const int wxSTC_STYLE_BRACEBAD    = 35;
-const int wxSTC_STYLE_CONTROLCHAR = 36;
-const int wxSTC_STYLE_MAX         = 127;
-const int wxSTC_STYLE_MASK        = 31;
-
-const int wxSTC_MARKER_MAX        = 31;
-const int wxSTC_MARK_CIRCLE       = 0;
-const int wxSTC_MARK_ROUNDRECT    = 1;
-const int wxSTC_MARK_ARROW        = 2;
-const int wxSTC_MARK_SMALLRECT    = 3;
-const int wxSTC_MARK_SHORTARROW   = 4;
-const int wxSTC_MARK_EMPTY        = 5;
-const int wxSTC_MARK_ARROWDOWN    = 6;
-const int wxSTC_MARK_MINUS        = 7;
-const int wxSTC_MARK_PLUS         = 8;
-
-const int wxSTC_MARKNUM_FOLDER    = 30;
-const int wxSTC_MARKNUM_FOLDEROPEN= 31;
-const int wxSTC_MASK_FOLDERS      = ((1 << wxSTC_MARKNUM_FOLDER) | (1 << wxSTC_MARKNUM_FOLDEROPEN));
-
-const int wxSTC_INDIC_MAX         = 7;
-const int wxSTC_INDIC_PLAIN       = 0;
-const int wxSTC_INDIC_SQUIGGLE    = 1;
-const int wxSTC_INDIC_TT          = 2;
-const int wxSTC_INDIC_DIAGONAL    = 3;
-const int wxSTC_INDIC_STRIKE      = 4;
-const int wxSTC_INDIC0_MASK       = 32;
-const int wxSTC_INDIC1_MASK       = 64;
-const int wxSTC_INDIC2_MASK       = 128;
-const int wxSTC_INDICS_MASK       = (wxSTC_INDIC0_MASK | wxSTC_INDIC1_MASK | wxSTC_INDIC2_MASK);
-
-
-const int wxSTC_FOLDLEVELBASE       = 0x0400;
-const int wxSTC_FOLDLEVELWHITEFLAG  = 0x1000;
-const int wxSTC_FOLDLEVELHEADERFLAG = 0x2000;
-const int wxSTC_FOLDLEVELNUMBERMASK = 0x0FFF;
-
-
-// key commands
-enum {
-    wxSTC_CMD_LINEDOWN = 2300,
-    wxSTC_CMD_LINEDOWNEXTEND,
-    wxSTC_CMD_LINEUP,
-    wxSTC_CMD_LINEUPEXTEND,
-    wxSTC_CMD_CHARLEFT,
-    wxSTC_CMD_CHARLEFTEXTEND,
-    wxSTC_CMD_CHARRIGHT,
-    wxSTC_CMD_CHARRIGHTEXTEND,
-    wxSTC_CMD_WORDLEFT,
-    wxSTC_CMD_WORDLEFTEXTEND,
-    wxSTC_CMD_WORDRIGHT,
-    wxSTC_CMD_WORDRIGHTEXTEND,
-    wxSTC_CMD_HOME,
-    wxSTC_CMD_HOMEEXTEND,
-    wxSTC_CMD_LINEEND,
-    wxSTC_CMD_LINEENDEXTEND,
-    wxSTC_CMD_DOCUMENTSTART,
-    wxSTC_CMD_DOCUMENTSTARTEXTEND,
-    wxSTC_CMD_DOCUMENTEND,
-    wxSTC_CMD_DOCUMENTENDEXTEND,
-    wxSTC_CMD_PAGEUP,
-    wxSTC_CMD_PAGEUPEXTEND,
-    wxSTC_CMD_PAGEDOWN,
-    wxSTC_CMD_PAGEDOWNEXTEND,
-    wxSTC_CMD_EDITTOGGLEOVERTYPE,
-    wxSTC_CMD_CANCEL,
-    wxSTC_CMD_DELETEBACK,
-    wxSTC_CMD_TAB,
-    wxSTC_CMD_BACKTAB,
-    wxSTC_CMD_NEWLINE,
-    wxSTC_CMD_FORMFEED,
-    wxSTC_CMD_VCHOME,
-    wxSTC_CMD_VCHOMEEXTEND,
-    wxSTC_CMD_ZOOMIN,
-    wxSTC_CMD_ZOOMOUT,
-    wxSTC_CMD_DELWORDLEFT,
-    wxSTC_CMD_DELWORDRIGHT,
-    wxSTC_CMD_LINECUT,
-    wxSTC_CMD_LINEDELETE,
-    wxSTC_CMD_LINETRANSPOSE,
-    wxSTC_CMD_LOWERCASE,
-    wxSTC_CMD_UPPERCASE,
-    wxSTC_CMD_LINESCROLLDOWN,
-    wxSTC_CMD_LINESCROLLUP
-};
-
-
-enum wxSTC_LEX {
-    wxSTC_LEX_CONTAINER=0,
-    wxSTC_LEX_NULL,
-    wxSTC_LEX_PYTHON,
-    wxSTC_LEX_CPP,
-    wxSTC_LEX_HTML,
-    wxSTC_LEX_XML,
-    wxSTC_LEX_PERL,
-    wxSTC_LEX_SQL,
-    wxSTC_LEX_VB,
-    wxSTC_LEX_PROPERTIES,
-    wxSTC_LEX_ERRORLIST,
-    wxSTC_LEX_MAKEFILE,
-    wxSTC_LEX_BATCH,
-    wxSTC_LEX_XCODE,
-    wxSTC_LEX_LATEX
-};
-
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py.  Do not edit this file.  Edit stc.h.in instead
+//       and regenerate
+
+#define wxSTC_INVALID_POSITION -1
+#define wxSTC_START 2000
+#define wxSTC_OPTIONAL_START 3000
+#define wxSTC_LEXER_START 4000
+#define wxSTC_CMD_REDO 2011
+#define wxSTC_CMD_SELECTALL 2013
+#define wxSTC_WS_INVISIBLE 0
+#define wxSTC_WS_VISIBLEALWAYS 1
+#define wxSTC_WS_VISIBLEAFTERINDENT 2
+#define wxSTC_EOL_CRLF 0
+#define wxSTC_EOL_CR 1
+#define wxSTC_EOL_LF 2
+
+// The SC_CP_UTF8 value can be used to enter Unicode mode.
+// This is the same value as CP_UTF8 in Windows
+#define wxSTC_CP_UTF8 65001
+#define wxSTC_MARKER_MAX 31
+#define wxSTC_MARK_CIRCLE 0
+#define wxSTC_MARK_ROUNDRECT 1
+#define wxSTC_MARK_ARROW 2
+#define wxSTC_MARK_SMALLRECT 3
+#define wxSTC_MARK_SHORTARROW 4
+#define wxSTC_MARK_EMPTY 5
+#define wxSTC_MARK_ARROWDOWN 6
+#define wxSTC_MARK_MINUS 7
+#define wxSTC_MARK_PLUS 8
+#define wxSTC_MARKNUM_FOLDER 30
+#define wxSTC_MARKNUM_FOLDEROPEN 31
+#define wxSTC_MARGIN_SYMBOL 0
+#define wxSTC_MARGIN_NUMBER 1
+#define wxSTC_STYLE_DEFAULT 32
+#define wxSTC_STYLE_LINENUMBER 33
+#define wxSTC_STYLE_BRACELIGHT 34
+#define wxSTC_STYLE_BRACEBAD 35
+#define wxSTC_STYLE_CONTROLCHAR 36
+#define wxSTC_STYLE_INDENTGUIDE 37
+#define wxSTC_STYLE_MAX 127
+
+// Character set identifiers are used in StyleSetCharacterSet.
+// The values are the same as the Windows *_CHARSET values.
+#define wxSTC_CHARSET_ANSI 0
+#define wxSTC_CHARSET_DEFAULT 1
+#define wxSTC_CHARSET_BALTIC 186
+#define wxSTC_CHARSET_CHINESEBIG5 136
+#define wxSTC_CHARSET_EASTEUROPE 238
+#define wxSTC_CHARSET_GB2312 134
+#define wxSTC_CHARSET_GREEK 161
+#define wxSTC_CHARSET_HANGUL 129
+#define wxSTC_CHARSET_MAC 77
+#define wxSTC_CHARSET_OEM 255
+#define wxSTC_CHARSET_RUSSIAN 204
+#define wxSTC_CHARSET_SHIFTJIS 128
+#define wxSTC_CHARSET_SYMBOL 2
+#define wxSTC_CHARSET_TURKISH 162
+#define wxSTC_CHARSET_JOHAB 130
+#define wxSTC_CHARSET_HEBREW 177
+#define wxSTC_CHARSET_ARABIC 178
+#define wxSTC_CHARSET_VIETNAMESE 163
+#define wxSTC_CHARSET_THAI 222
+#define wxSTC_INDIC_MAX 7
+#define wxSTC_INDIC_PLAIN 0
+#define wxSTC_INDIC_SQUIGGLE 1
+#define wxSTC_INDIC_TT 2
+#define wxSTC_INDIC_DIAGONAL 3
+#define wxSTC_INDIC_STRIKE 4
+#define wxSTC_INDIC0_MASK 32
+#define wxSTC_INDIC1_MASK 64
+#define wxSTC_INDIC2_MASK 128
+#define wxSTC_INDICS_MASK 32 | 64 | 128
+
+// PrintColourMode - use same colours as screen.
+#define wxSTC_PRINT_NORMAL 0
+
+// PrintColourMode - invert the light value of each style for printing.
+#define wxSTC_PRINT_INVERTLIGHT 1
+
+// PrintColourMode - force black text on white background for printing.
+#define wxSTC_PRINT_BLACKONWHITE 2
+#define wxSTC_FIND_DOWN 1
+#define wxSTC_FIND_WHOLEWORD 2
+#define wxSTC_FIND_MATCHCASE 4
+#define wxSTC_FIND_WORDSTART 0x00100000
+
+// SCFIND_REGEXP is not yet implemented.
+#define wxSTC_FIND_REGEXP 0x00200000
+#define wxSTC_CMD_UNDO 2176
+#define wxSTC_CMD_CUT 2177
+#define wxSTC_CMD_COPY 2178
+#define wxSTC_CMD_PASTE 2179
+#define wxSTC_FOLDLEVELBASE 0x400
+#define wxSTC_FOLDLEVELWHITEFLAG 0x1000
+#define wxSTC_FOLDLEVELHEADERFLAG 0x2000
+#define wxSTC_FOLDLEVELNUMBERMASK 0x0FFF
+#define wxSTC_CMD_LINEDOWN 2300
+#define wxSTC_CMD_LINEDOWNEXTEND 2301
+#define wxSTC_CMD_LINEUP 2302
+#define wxSTC_CMD_LINEUPEXTEND 2303
+#define wxSTC_CMD_CHARLEFT 2304
+#define wxSTC_CMD_CHARLEFTEXTEND 2305
+#define wxSTC_CMD_CHARRIGHT 2306
+#define wxSTC_CMD_CHARRIGHTEXTEND 2307
+#define wxSTC_CMD_WORDLEFT 2308
+#define wxSTC_CMD_WORDLEFTEXTEND 2309
+#define wxSTC_CMD_WORDRIGHT 2310
+#define wxSTC_CMD_WORDRIGHTEXTEND 2311
+#define wxSTC_CMD_HOME 2312
+#define wxSTC_CMD_HOMEEXTEND 2313
+#define wxSTC_CMD_LINEEND 2314
+#define wxSTC_CMD_LINEENDEXTEND 2315
+#define wxSTC_CMD_DOCUMENTSTART 2316
+#define wxSTC_CMD_DOCUMENTSTARTEXTEND 2317
+#define wxSTC_CMD_DOCUMENTEND 2318
+#define wxSTC_CMD_DOCUMENTENDEXTEND 2319
+#define wxSTC_CMD_PAGEUP 2320
+#define wxSTC_CMD_PAGEUPEXTEND 2321
+#define wxSTC_CMD_PAGEDOWN 2322
+#define wxSTC_CMD_PAGEDOWNEXTEND 2323
+#define wxSTC_CMD_EDITTOGGLEOVERTYPE 2324
+#define wxSTC_CMD_CANCEL 2325
+#define wxSTC_CMD_DELETEBACK 2326
+#define wxSTC_CMD_TAB 2327
+#define wxSTC_CMD_BACKTAB 2328
+#define wxSTC_CMD_NEWLINE 2329
+#define wxSTC_CMD_FORMFEED 2330
+#define wxSTC_CMD_VCHOME 2331
+#define wxSTC_CMD_VCHOMEEXTEND 2332
+#define wxSTC_CMD_ZOOMIN 2333
+#define wxSTC_CMD_ZOOMOUT 2334
+#define wxSTC_CMD_DELWORDLEFT 2335
+#define wxSTC_CMD_DELWORDRIGHT 2336
+#define wxSTC_CMD_LINECUT 2337
+#define wxSTC_CMD_LINEDELETE 2338
+#define wxSTC_CMD_LINETRANSPOSE 2339
+#define wxSTC_CMD_LOWERCASE 2340
+#define wxSTC_CMD_UPPERCASE 2341
+#define wxSTC_CMD_LINESCROLLDOWN 2342
+#define wxSTC_CMD_LINESCROLLUP 2343
+#define wxSTC_EDGE_NONE 0
+#define wxSTC_EDGE_LINE 1
+#define wxSTC_EDGE_BACKGROUND 2
+
+// Show caret within N lines of edge when it's scrolled to view
+#define wxSTC_CARET_SLOP 0x01
+
+// Center caret on screen when it's scrolled to view
+#define wxSTC_CARET_CENTER 0x02
+
+// OR this with CARET_CENTER to reposition even when visible, or
+// OR this with CARET_SLOP to reposition whenever outside slop border
+#define wxSTC_CARET_STRICT 0x04
+
+// Notifications
+// Type of modification and the action which caused the modification
+// These are defined as a bit mask to make it easy to specify which notifications are wanted.
+// One bit is set from each of SC_MOD_* and SC_PERFORMED_*.
+#define wxSTC_MOD_INSERTTEXT 0x1
+#define wxSTC_MOD_DELETETEXT 0x2
+#define wxSTC_MOD_CHANGESTYLE 0x4
+#define wxSTC_MOD_CHANGEFOLD 0x8
+#define wxSTC_PERFORMED_USER 0x10
+#define wxSTC_PERFORMED_UNDO 0x20
+#define wxSTC_PERFORMED_REDO 0x40
+#define wxSTC_LASTSTEPINUNDOREDO 0x100
+#define wxSTC_MOD_CHANGEMARKER 0x200
+#define wxSTC_MOD_BEFOREINSERT 0x400
+#define wxSTC_MOD_BEFOREDELETE 0x800
+#define wxSTC_MODEVENTMASKALL 0xF77
+
+// Symbolic key codes and modifier flags
+// ASCII and other printable characters below 256
+// Extended keys above 300
+#define wxSTC_KEY_DOWN 300
+#define wxSTC_KEY_UP 301
+#define wxSTC_KEY_LEFT 302
+#define wxSTC_KEY_RIGHT 303
+#define wxSTC_KEY_HOME 304
+#define wxSTC_KEY_END 305
+#define wxSTC_KEY_PRIOR 306
+#define wxSTC_KEY_NEXT 307
+#define wxSTC_KEY_DELETE 308
+#define wxSTC_KEY_INSERT 309
+#define wxSTC_KEY_ESCAPE 7
+#define wxSTC_KEY_BACK 8
+#define wxSTC_KEY_TAB 9
+#define wxSTC_KEY_RETURN 13
+#define wxSTC_KEY_ADD 310
+#define wxSTC_KEY_SUBTRACT 311
+#define wxSTC_KEY_DIVIDE 312
+#define wxSTC_SCMOD_SHIFT 1
+#define wxSTC_SCMOD_CTRL 2
+#define wxSTC_SCMOD_ALT 4
+
+// For SciLexer.h
+#define wxSTC_LEX_CONTAINER 0
+#define wxSTC_LEX_NULL 1
+#define wxSTC_LEX_PYTHON 2
+#define wxSTC_LEX_CPP 3
+#define wxSTC_LEX_HTML 4
+#define wxSTC_LEX_XML 5
+#define wxSTC_LEX_PERL 6
+#define wxSTC_LEX_SQL 7
+#define wxSTC_LEX_VB 8
+#define wxSTC_LEX_PROPERTIES 9
+#define wxSTC_LEX_ERRORLIST 10
+#define wxSTC_LEX_MAKEFILE 11
+#define wxSTC_LEX_BATCH 12
+#define wxSTC_LEX_XCODE 13
+#define wxSTC_LEX_LATEX 14
+#define wxSTC_LEX_LUA 15
+#define wxSTC_LEX_DIFF 16
+
+// Lexical states for SCLEX_PYTHON
+#define wxSTC_P_DEFAULT 0
+#define wxSTC_P_COMMENTLINE 1
+#define wxSTC_P_NUMBER 2
+#define wxSTC_P_STRING 3
+#define wxSTC_P_CHARACTER 4
+#define wxSTC_P_WORD 5
+#define wxSTC_P_TRIPLE 6
+#define wxSTC_P_TRIPLEDOUBLE 7
+#define wxSTC_P_CLASSNAME 8
+#define wxSTC_P_DEFNAME 9
+#define wxSTC_P_OPERATOR 10
+#define wxSTC_P_IDENTIFIER 11
+#define wxSTC_P_COMMENTBLOCK 12
+#define wxSTC_P_STRINGEOL 13
+
+// Lexical states for SCLEX_CPP, SCLEX_VB
+#define wxSTC_C_DEFAULT 0
+#define wxSTC_C_COMMENT 1
+#define wxSTC_C_COMMENTLINE 2
+#define wxSTC_C_COMMENTDOC 3
+#define wxSTC_C_NUMBER 4
+#define wxSTC_C_WORD 5
+#define wxSTC_C_STRING 6
+#define wxSTC_C_CHARACTER 7
+#define wxSTC_C_UUID 8
+#define wxSTC_C_PREPROCESSOR 9
+#define wxSTC_C_OPERATOR 10
+#define wxSTC_C_IDENTIFIER 11
+#define wxSTC_C_STRINGEOL 12
+#define wxSTC_C_VERBATIM 13
+
+// Lexical states for SCLEX_HTML, SCLEX_XML
+#define wxSTC_H_DEFAULT 0
+#define wxSTC_H_TAG 1
+#define wxSTC_H_TAGUNKNOWN 2
+#define wxSTC_H_ATTRIBUTE 3
+#define wxSTC_H_ATTRIBUTEUNKNOWN 4
+#define wxSTC_H_NUMBER 5
+#define wxSTC_H_DOUBLESTRING 6
+#define wxSTC_H_SINGLESTRING 7
+#define wxSTC_H_OTHER 8
+#define wxSTC_H_COMMENT 9
+#define wxSTC_H_ENTITY 10
+
+// XML and ASP
+#define wxSTC_H_TAGEND 11
+#define wxSTC_H_XMLSTART 12
+#define wxSTC_H_XMLEND 13
+#define wxSTC_H_SCRIPT 14
+#define wxSTC_H_ASP 15
+#define wxSTC_H_ASPAT 16
+#define wxSTC_H_CDATA 17
+#define wxSTC_H_QUESTION 18
+
+// More HTML
+#define wxSTC_H_VALUE 19
+
+// Embedded Javascript
+#define wxSTC_HJ_START 40
+#define wxSTC_HJ_DEFAULT 41
+#define wxSTC_HJ_COMMENT 42
+#define wxSTC_HJ_COMMENTLINE 43
+#define wxSTC_HJ_COMMENTDOC 44
+#define wxSTC_HJ_NUMBER 45
+#define wxSTC_HJ_WORD 46
+#define wxSTC_HJ_KEYWORD 47
+#define wxSTC_HJ_DOUBLESTRING 48
+#define wxSTC_HJ_SINGLESTRING 49
+#define wxSTC_HJ_SYMBOLS 50
+#define wxSTC_HJ_STRINGEOL 51
+
+// ASP Javascript
+#define wxSTC_HJA_START 55
+#define wxSTC_HJA_DEFAULT 56
+#define wxSTC_HJA_COMMENT 57
+#define wxSTC_HJA_COMMENTLINE 58
+#define wxSTC_HJA_COMMENTDOC 59
+#define wxSTC_HJA_NUMBER 60
+#define wxSTC_HJA_WORD 61
+#define wxSTC_HJA_KEYWORD 62
+#define wxSTC_HJA_DOUBLESTRING 63
+#define wxSTC_HJA_SINGLESTRING 64
+#define wxSTC_HJA_SYMBOLS 65
+#define wxSTC_HJA_STRINGEOL 66
+
+// Embedded VBScript
+#define wxSTC_HB_START 70
+#define wxSTC_HB_DEFAULT 71
+#define wxSTC_HB_COMMENTLINE 72
+#define wxSTC_HB_NUMBER 73
+#define wxSTC_HB_WORD 74
+#define wxSTC_HB_STRING 75
+#define wxSTC_HB_IDENTIFIER 76
+#define wxSTC_HB_STRINGEOL 77
+
+// ASP VBScript
+#define wxSTC_HBA_START 80
+#define wxSTC_HBA_DEFAULT 81
+#define wxSTC_HBA_COMMENTLINE 82
+#define wxSTC_HBA_NUMBER 83
+#define wxSTC_HBA_WORD 84
+#define wxSTC_HBA_STRING 85
+#define wxSTC_HBA_IDENTIFIER 86
+#define wxSTC_HBA_STRINGEOL 87
+
+// Embedded Python
+#define wxSTC_HP_START 90
+#define wxSTC_HP_DEFAULT 91
+#define wxSTC_HP_COMMENTLINE 92
+#define wxSTC_HP_NUMBER 93
+#define wxSTC_HP_STRING 94
+#define wxSTC_HP_CHARACTER 95
+#define wxSTC_HP_WORD 96
+#define wxSTC_HP_TRIPLE 97
+#define wxSTC_HP_TRIPLEDOUBLE 98
+#define wxSTC_HP_CLASSNAME 99
+#define wxSTC_HP_DEFNAME 100
+#define wxSTC_HP_OPERATOR 101
+#define wxSTC_HP_IDENTIFIER 102
+
+// ASP Python
+#define wxSTC_HPA_START 105
+#define wxSTC_HPA_DEFAULT 106
+#define wxSTC_HPA_COMMENTLINE 107
+#define wxSTC_HPA_NUMBER 108
+#define wxSTC_HPA_STRING 109
+#define wxSTC_HPA_CHARACTER 110
+#define wxSTC_HPA_WORD 111
+#define wxSTC_HPA_TRIPLE 112
+#define wxSTC_HPA_TRIPLEDOUBLE 113
+#define wxSTC_HPA_CLASSNAME 114
+#define wxSTC_HPA_DEFNAME 115
+#define wxSTC_HPA_OPERATOR 116
+#define wxSTC_HPA_IDENTIFIER 117
+
+// PHP
+#define wxSTC_HPHP_DEFAULT 118
+#define wxSTC_HPHP_HSTRING 119
+#define wxSTC_HPHP_SIMPLESTRING 120
+#define wxSTC_HPHP_WORD 121
+#define wxSTC_HPHP_NUMBER 122
+#define wxSTC_HPHP_VARIABLE 123
+#define wxSTC_HPHP_COMMENT 124
+#define wxSTC_HPHP_COMMENTLINE 125
+#define wxSTC_HPHP_STRINGEOL 126
+
+// Lexical states for SCLEX_PERL
+#define wxSTC_PL_DEFAULT 0
+#define wxSTC_PL_HERE 1
+#define wxSTC_PL_COMMENTLINE 2
+#define wxSTC_PL_POD 3
+#define wxSTC_PL_NUMBER 4
+#define wxSTC_PL_WORD 5
+#define wxSTC_PL_STRING 6
+#define wxSTC_PL_CHARACTER 7
+#define wxSTC_PL_PUNCTUATION 8
+#define wxSTC_PL_PREPROCESSOR 9
+#define wxSTC_PL_OPERATOR 10
+#define wxSTC_PL_IDENTIFIER 11
+#define wxSTC_PL_SCALAR 12
+#define wxSTC_PL_ARRAY 13
+#define wxSTC_PL_HASH 14
+#define wxSTC_PL_SYMBOLTABLE 15
+#define wxSTC_PL_REF 16
+#define wxSTC_PL_REGEX 17
+#define wxSTC_PL_REGSUBST 18
+#define wxSTC_PL_LONGQUOTE 19
+#define wxSTC_PL_BACKTICKS 20
+#define wxSTC_PL_DATASECTION 21
+
+// Lexical states for SCLEX_LATEX
+#define wxSTC_L_DEFAULT 0
+#define wxSTC_L_COMMAND 1
+#define wxSTC_L_TAG 2
+#define wxSTC_L_MATH 3
+#define wxSTC_L_COMMENT 4
+
+// Lexical states for SCLEX_LUA
+#define wxSTC_LUA_DEFAULT 0
+#define wxSTC_LUA_COMMENT 1
+#define wxSTC_LUA_COMMENTLINE 2
+#define wxSTC_LUA_COMMENTDOC 3
+#define wxSTC_LUA_NUMBER 4
+#define wxSTC_LUA_WORD 5
+#define wxSTC_LUA_STRING 6
+#define wxSTC_LUA_CHARACTER 7
+#define wxSTC_LUA_LITERALSTRING 8
+#define wxSTC_LUA_PREPROCESSOR 9
+#define wxSTC_LUA_OPERATOR 10
+#define wxSTC_LUA_IDENTIFIER 11
+#define wxSTC_LUA_STRINGEOL 12
+#define wxSTC_ERR_DEFAULT 0
+#define wxSTC_ERR_PYTHON 1
+#define wxSTC_ERR_GCC 2
+#define wxSTC_ERR_MS 3
+#define wxSTC_ERR_CMD 4
+#define wxSTC_ERR_BORLAND 5
+#define wxSTC_ERR_PERL 6
+
+// END of generated section
+//----------------------------------------------------------------------
+// Others
 
+#define wxSTC_MASK_FOLDERS ((1 << wxSTC_MARKNUM_FOLDER) | (1 << wxSTC_MARKNUM_FOLDEROPEN))
 
-const int wxSTC_CARET_SLOP    = 0x01;
-const int WXSTC_CARET_CENTER  = 0x02;
-const int wxSTC_CARET_STRICT  = 0x04;
 
-const int wxSTC_MARGIN_SYMBOL = 0;
-const int wxSTC_MARGIN_NUMBER = 1;
 
+//----------------------------------------------------------------------
 
 class  ScintillaWX;                      // forward declare
 class  WordList;
@@ -195,297 +478,762 @@ public:
     ~wxStyledTextCtrl();
 #endif
 
+//----------------------------------------------------------------------
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py.  Do not edit this file.  Edit stc.h.in instead
+//       and regenerate
 
-    // Text retrieval and modification
-    wxString GetText();
-    bool     SetText(const wxString& text);
-    wxString GetLine(int line);
-    void     ReplaceSelection(const wxString& text);
-    void     SetReadOnly(bool readOnly);
-    bool     GetReadOnly();
-    wxString GetTextRange(int startPos, int endPos);
-    wxString GetStyledTextRange(int startPos, int endPos);
-#ifndef SWIG
-    void     GetTextRange(int startPos, int endPos, char* buff);
-    void     GetStyledTextRange(int startPos, int endPos, char* buff);
-#endif
-    void     AddText(const wxString& text);
-    void     AddStyledText(const wxString& text);
-    void     InsertText(int pos, const wxString& text);
-    void     ClearAll();
-    char     GetCharAt(int pos);
-    char     GetStyleAt(int pos);
-    void     SetStyleBits(int bits);
-    int      GetStyleBits();
-
-
-    // Clipboard
-    void     Cut();
-    void     Copy();
-    void     Paste();
-    bool     CanPaste();
-    void     ClearClipbrd();  // avoiding name conflict with virtual in wxWindow
-
-
-    // Undo and Redo
-    void     Undo();
-    bool     CanUndo();
-    void     EmptyUndoBuffer();
-    void     Redo();
-    bool     CanRedo();
-    void     SetUndoCollection(wxSTC_UndoType type);
-    wxSTC_UndoType GetUndoCollection();
-    void     BeginUndoAction();
-    void     EndUndoAction();
-
-
-    // Selection and information
-#ifdef SWIG
-    void     GetSelection(int* OUTPUT, int* OUTPUT);
-#else
-    void     GetSelection(int* startPos, int* endPos);
-#endif
-    void     SetSelection(int  startPos, int  endPos);
-    wxString GetSelectedText();
-    void     HideSelection(bool hide);
-    bool     GetHideSelection();
-
-    int      GetTextLength();
-    int      GetFirstVisibleLine();
-    bool     GetModified();
-    int      GetLineCount();
-    int      GetLineFromPos(int pos);
-    int      GetLineStartPos(int line);
-    int      GetLineLength(int line);
-#ifdef SWIG
-    wxString GetCurrentLineText(int* OUTPUT);
-#else
-    wxString GetCurrentLineText(int* linePos);
-#endif
-    int      GetCurrentLine();
-    int      PositionFromPoint(wxPoint pt);
-    wxPoint  PointFromPosition(int pos);
-    int      GetCurrentPos();
-    int      GetAnchor();
-    void     SelectAll();
-    void     SetCurrentPosition(int pos);
-    void     SetAnchor(int pos);
-    void     GotoPos(int pos);
-    void     GotoLine(int line);
-    void     ChangePosition(int delta, bool extendSelection);
-    void     PageMove(int cmdKey, bool extendSelection);
-
-    void     ScrollBy(int columnDelta, int lineDelta);
-    void     ScrollToLine(int line);
-    void     ScrollToColumn(int column);
-    void     EnsureCaretVisible();
-    void     SetCaretPolicy(int policy, int slop=0);
-    int      GetLinesOnScreen();
-    bool     IsSelectionRectangle();
-    void     SetUseHorizontalScrollBar(bool use);
-    bool     GetUseHorizontalScrollBar();
-
-
-    // Searching
-    int      FindText(int minPos, int maxPos, const wxString& text,
-                      bool caseSensitive, bool wholeWord);
-    void     SearchAnchor();
-    int      SearchNext(const wxString& text, bool caseSensitive, bool wholeWord);
-    int      SearchPrev(const wxString& text, bool caseSensitive, bool wholeWord);
-
-
-    // Visible whitespace
-    bool     GetViewWhitespace();
-    void     SetViewWhitespace(bool visible);
-
-
-    // Line endings
-    wxSTC_EOL GetEOLMode();
-    void     SetEOLMode(wxSTC_EOL mode);
-    bool     GetViewEOL();
-    void     SetViewEOL(bool visible);
-    void     ConvertEOL(wxSTC_EOL mode);
-
-
-    // Styling
-    int      GetEndStyled();
-    void     StartStyling(int pos, int mask);
-    void     SetStyleFor(int length, int style);
-    void     SetStyleBytes(int length, char* styleBytes);
-    void     SetLineState(int line, int value);
-    int      GetLineState(int line);
-
-
-    // Style Definition
-    void     StyleClearAll();
-    void     StyleResetDefault();
-    void     StyleSetSpec(int styleNum, const wxString& spec);
-    void     StyleSetForeground(int styleNum, const wxColour& colour);
-    void     StyleSetBackground(int styleNum, const wxColour& colour);
-    void     StyleSetFont(int styleNum, wxFont& font);
-    void     StyleSetFontAttr(int styleNum, int size, const wxString& faceName, bool bold=FALSE, bool italic=FALSE, bool underline=FALSE);
-    void     StyleSetBold(int styleNum, bool bold);
-    void     StyleSetItalic(int styleNum, bool italic);
-    void     StyleSetFaceName(int styleNum, const wxString& faceName);
-    void     StyleSetSize(int styleNum, int pointSize);
-    void     StyleSetEOLFilled(int styleNum, bool fillEOL);
-    void     StyleSetUnderline(int styleNum, bool underline);
-
-
-    // Margins in the edit area
-    int      GetLeftMargin();
-    int      GetRightMargin();
-    void     SetMargins(int left, int right);
-
-
-    // Margins for selection, markers, etc.
-    void SetMarginType(int margin, int type);
-    int  GetMarginType(int margin);
+
+    // Add text to the document
+    void AddText(const wxString& text);
+
+    // Add array of cells to document
+    void AddStyledText(const wxString& text);
+
+    // Insert string at a position
+    void InsertText(int pos, const wxString& text);
+
+    // Delete all text in the document
+    void ClearAll();
+
+    // Set all style bytes to 0, remove all folding information
+    void ClearDocumentStyle();
+
+    // The number of characters in the document
+    int GetLength();
+
+    // Returns the character byte at the position
+    int GetCharAt(int pos);
+
+    // Returns the position of the caret
+    int GetCurrentPos();
+
+    // Returns the position of the opposite end of the selection to the caret
+    int GetAnchor();
+
+    // Returns the style byte at the position
+    int GetStyleAt(int pos);
+
+    // Redoes the next action on the undo history
+    void Redo();
+
+    // Choose between collecting actions into the undo
+    // history and discarding them.
+    void SetUndoCollection(bool collectUndo);
+
+    // Select all the text in the document.
+    void SelectAll();
+
+    // Remember the current position in the undo history as the position
+    // at which the document was saved.
+    void SetSavePoint();
+
+    // Retrieve a buffer of cells.
+    wxString GetStyledText(int startPos, int endPos);
+
+    // Are there any redoable actions in the undo history.
+    bool CanRedo();
+
+    // Retrieve the line number at which a particular marker is located
+    int MarkerLineFromHandle(int handle);
+
+    // Delete a marker.
+    void MarkerDeleteHandle(int handle);
+
+    // Is undo history being collected?
+    bool GetUndoCollection();
+
+    // Are white space characters currently visible?
+    // Returns one of SCWS_* constants.
+    int GetViewWhiteSpace();
+
+    // Make white space characters invisible, always visible or visible outside indentation.
+    void SetViewWhiteSpace(int viewWS);
+
+    // Find the position from a point within the window.
+    int PositionFromPoint(wxPoint pt);
+
+    // Set caret to start of a line and ensure it is visible.
+    void GotoLine(int line);
+
+    // Set caret to a position and ensure it is visible.
+    void GotoPos(int pos);
+
+    // Set the selection anchor to a position. The anchor is the opposite
+    // end of the selection from the caret.
+    void SetAnchor(int posAnchor);
+
+    // Retrieve the text of the line containing the caret.
+    // Returns the index of the caret on the line.
+    wxString GetCurLine(int* OUTPUT=NULL);
+
+    // Retrieve the position of the last correctly styled character.
+    int GetEndStyled();
+
+    // Convert all line endings in the document to use the current mode.
+    void ConvertEOLs();
+
+    // Retrieve the current end of line mode - one of CRLF, CR, or LF.
+    int GetEOLMode();
+
+    // Set the current end of line mode.
+    void SetEOLMode(int eolMode);
+
+    // Set the current styling position to pos and the styling mask to mask.
+    // The styling mask can be used to protect some bits in each styling byte from
+    // modification.
+    void StartStyling(int pos, int mask);
+
+    // Change style from current styling position for length characters to a style
+    // and move the current styling position to after this newly styled segment.
+    void SetStyling(int length, int style);
+
+    // Is drawing done first into a buffer or direct to the screen.
+    bool GetBufferedDraw();
+
+    // If drawing is buffered then each line of text is drawn into a bitmap buffer
+    // before drawing it to the screen to avoid flicker.
+    void SetBufferedDraw(bool buffered);
+
+    // Change the visible size of a tab to be a multiple of the width of a space
+    // character.
+    void SetTabWidth(int tabWidth);
+
+    // Retrieve the visible size of a tab.
+    int GetTabWidth();
+
+    // Set the code page used to interpret the bytes of the document as characters.
+    // The SC_CP_UTF8 value can be used to enter Unicode mode.
+    void SetCodePage(int codePage);
+
+    // Set the symbol used for a particular marker number,
+    // and optionally the for and background colours.
+    void MarkerDefine(int markerNumber, int markerSymbol,
+                         const wxColour& foreground = wxNullColour,
+                         const wxColour& background = wxNullColour);
+
+    // Set the foreground colour used for a particular marker number.
+    void MarkerSetForeground(int markerNumber, const wxColour& fore);
+
+    // Set the background colour used for a particular marker number.
+    void MarkerSetBackground(int markerNumber, const wxColour& back);
+
+    // Add a marker to a line.
+    void MarkerAdd(int line, int markerNumber);
+
+    // Delete a marker from a line
+    void MarkerDelete(int line, int markerNumber);
+
+    // Delete all markers with a particular number from all lines
+    void MarkerDeleteAll(int markerNumber);
+
+    // Get a bit mask of all the markers set on a line.
+    int MarkerGet(int line);
+
+    // Find the next line after lineStart that includes a marker in mask.
+    int MarkerNext(int lineStart, int markerMask);
+
+    // Find the previous line before lineStart that includes a marker in mask.
+    int MarkerPrevious(int lineStart, int markerMask);
+
+    // Set a margin to be either numeric or symbolic.
+    void SetMarginType(int margin, int marginType);
+
+    // Retrieve the type of a margin.
+    int GetMarginType(int margin);
+
+    // Set the width of a margin to a width expressed in pixels.
     void SetMarginWidth(int margin, int pixelWidth);
-    int  GetMarginWidth(int margin);
+
+    // Retrieve the width of a margin in pixels.
+    int GetMarginWidth(int margin);
+
+    // Set a mask that determines which markers are displayed in a margin.
     void SetMarginMask(int margin, int mask);
-    int  GetMarginMask(int margin);
+
+    // Retrieve the marker mask of a margin.
+    int GetMarginMask(int margin);
+
+    // Make a margin sensitive or insensitive to mouse clicks.
     void SetMarginSensitive(int margin, bool sensitive);
+
+    // Retrieve the mouse click sensitivity of a margin.
     bool GetMarginSensitive(int margin);
 
+    // Clear all the styles and make equivalent to the global default style.
+    void StyleClearAll();
+
+    // Set the foreground colour of a style.
+    void StyleSetForeground(int style, const wxColour& fore);
+
+    // Set the background colour of a style.
+    void StyleSetBackground(int style, const wxColour& back);
+
+    // Set a style to be bold or not.
+    void StyleSetBold(int style, bool bold);
+
+    // Set a style to be italic or not.
+    void StyleSetItalic(int style, bool italic);
+
+    // Set the size of characters of a style.
+    void StyleSetSize(int style, int sizePoints);
+
+    // Set the font of a style.
+    void StyleSetFaceName(int style, const wxString& fontName);
+
+    // Set a style to have its end of line filled or not.
+    void StyleSetEOLFilled(int style, bool filled);
+
+    // Reset the default style to its state at startup
+    void StyleResetDefault();
+
+    // Set a style to be underlined or not.
+    void StyleSetUnderline(int style, bool underline);
+
+    // Set the foreground colour of the selection and whether to use this setting.
+    void SetSelForeground(bool useSetting, const wxColour& fore);
+
+    // Set the background colour of the selection and whether to use this setting.
+    void SetSelBackground(bool useSetting, const wxColour& back);
+
+    // Set the foreground colour of the caret.
+    void SetCaretForeground(const wxColour& fore);
+
+    // When key+modifier combination km is pressed perform msg.
+    void CmdKeyAssign(int key, int modifiers, int cmd);
+
+    // When key+modifier combination km do nothing.
+    void CmdKeyClear(int key, int modifiers);
+
+    // Drop all key mappings.
+    void CmdKeyClearAll();
+
+    // Set the styles for a segment of the document.
+    void SetStyleBytes(int length, char* styleBytes);
+
+    // Set a style to be visible or not.
+    void StyleSetVisible(int style, bool visible);
+
+    // Get the time in milliseconds that the caret is on and off.
+    int GetCaretPeriod();
+
+    // Get the time in milliseconds that the caret is on and off. 0 = steady on.
+    void SetCaretPeriod(int periodMilliseconds);
+
+    // Set the set of characters making up words for when moving or selecting
+    // by word.
+    void SetWordChars(const wxString& characters);
+
+    // Start a sequence of actions that is undone and redone as a unit.
+    // May be nested.
+    void BeginUndoAction();
+
+    // End a sequence of actions that is undone and redone as a unit.
+    void EndUndoAction();
+
+    // Set an indicator to plain, squiggle or TT.
+    void IndicatorSetStyle(int indic, int style);
+
+    // Retrieve the style of an indicator.
+    int IndicatorGetStyle(int indic);
+
+    // Set the foreground colour of an indicator.
+    void IndicatorSetForeground(int indic, const wxColour& fore);
+
+    // Retrieve the foreground colour of an indicator.
+    wxColour IndicatorGetForeground(int indic);
+
+    // Divide each styling byte into lexical class bits (default:5) and indicator
+    // bits (default:3). If a lexer requires more than 32 lexical states, then this
+    // is used to expand the possible states.
+    void SetStyleBits(int bits);
+
+    // Retrieve number of bits in style bytes used to hold the lexical state.
+    int GetStyleBits();
+
+    // Used to hold extra styling information for each line.
+    void SetLineState(int line, int state);
+
+    // Retrieve the extra styling information for a line.
+    int GetLineState(int line);
+
+    // Retrieve the last line number that has line state.
+    int GetMaxLineState();
+
+    // Display a auto-completion list.
+    // The lenEntered parameter indicates how many characters before
+    // the caret should be used to provide context.
+    void AutoCompShow(int lenEntered, const wxString& itemList);
+
+    // Remove the auto-completion list from the screen.
+    void AutoCompCancel();
+
+    // Is there an auto-completion list visible?
+    bool AutoCompActive();
+
+    // Retrieve the position of the caret when the auto-completion list was
+    // displayed.
+    int AutoCompPosStart();
+
+    // User has selected an item so remove the list and insert the selection.
+    void AutoCompComplete();
+
+    // Define a set of character that when typed cancel the auto-completion list.
+    void AutoCompStops(const wxString& characterSet);
+
+    // Change the separator character in the string setting up an auto-completion
+    // list. Default is space but can be changed if items contain space.
+    void AutoCompSetSeparator(int separatorCharacter);
+
+    // Retrieve the auto-completion list separator character.
+    int AutoCompGetSeparator();
+
+    // Select the item in the auto-completion list that starts with a string.
+    void AutoCompSelect(const wxString& text);
+
+    // Should the auto-completion list be cancelled if the user backspaces to a
+    // position before where the box was created.
+    void AutoCompSetCancelAtStart(bool cancel);
+
+    // Retrieve whether auto-completion cancelled by backspacing before start.
+    bool AutoCompGetCancelAtStart();
+
+    // Define a set of character that when typed fills up the selected word.
+    void AutoCompSetFillUps(const wxString& characterSet);
+
+    // Should a single item auto-completion list automatically choose the item.
+    void AutoCompSetChooseSingle(bool chooseSingle);
+
+    // Retrieve whether a single item auto-completion list automatically choose the item.
+    bool AutoCompGetChooseSingle();
+
+    // Set whether case is significant when performing auto-completion searches.
+    void AutoCompSetIgnoreCase(bool ignoreCase);
+
+    // Retrieve state of ignore case flag.
+    bool AutoCompGetIgnoreCase();
+
+    // Set the number of spaces used for one level of indentation.
+    void SetIndent(int indentSize);
+
+    // Retrieve indentation size.
+    int GetIndent();
+
+    // Indentation will only use space characters if useTabs is false, otherwise
+    // it will use a combination of tabs and spaces.
+    void SetUseTabs(bool useTabs);
+
+    // Retrieve whether tabs will be used in indentation.
+    bool GetUseTabs();
+
+    // Change the indentation of a line to a number of columns.
+    void SetLineIndentation(int line, int indentSize);
 
-    // Selection and Caret styles
-    void     SetSelectionForeground(const wxColour& colour);
-    void     SetSelectionBackground(const wxColour& colour);
-    void     SetCaretForeground(const wxColour& colour);
-    int      GetCaretPeriod();
-    void     SetCaretPeriod(int milliseconds);
-
-
-    // Other settings
-    void     SetBufferedDraw(bool isBuffered);
-    void     SetTabWidth(int numChars);
-    void     SetIndent(int numChars);
-    void     SetUseTabs(bool usetabs);
-    void     SetLineIndentation(int line, int indentation);
-    int      GetLineIndentation(int line);
-    int      GetLineIndentationPos(int line);
-    void     SetWordChars(const wxString& wordChars);
-
-    void     SetUsePop(bool usepopup);
-
-
-    // Brace highlighting
-    void     BraceHighlight(int pos1, int pos2);
-    void     BraceBadlight(int pos);
-    int      BraceMatch(int pos, int maxReStyle=0);
-
-
-    // Markers
-    void     MarkerDefine(int markerNumber, int markerSymbol,
-                          const wxColour& foreground,
-                          const wxColour& background);
-    void     MarkerSetType(int markerNumber, int markerSymbol);
-    void     MarkerSetForeground(int markerNumber, const wxColour& colour);
-    void     MarkerSetBackground(int markerNumber, const wxColour& colour);
-    int      MarkerAdd(int line, int markerNumber);
-    void     MarkerDelete(int line, int markerNumber);
-    void     MarkerDeleteAll(int markerNumber);
-    int      MarkerGet(int line);
-    int      MarkerGetNextLine(int lineStart, int markerMask);
-    int      MarkerGetPrevLine(int lineStart, int markerMask);
-    int      MarkerLineFromHandle(int handle);
-    void     MarkerDeleteHandle(int handle);
-
-
-    // Indicators
-    void     IndicatorSetStyle(int indicNum, int indicStyle);
-    int      IndicatorGetStyle(int indicNum);
-    void     IndicatorSetColour(int indicNum, const wxColour& colour);
-
-
-    // Auto completion
-    void     AutoCompShow(const wxString& listOfWords);
-    void     AutoCompCancel();
-    bool     AutoCompActive();
-    int      AutoCompPosAtStart();
-    void     AutoCompComplete();
-    void     AutoCompStopChars(const wxString& stopChars);
-    void     AutoCompSetSeparator(char separator);
-    char     AutoCompGetSeparator();
-    void     AutoCompSelect(const wxString& stringtoselect);
-
-    // Call tips
-    void     CallTipShow(int pos, const wxString& text);
-    void     CallTipCancel();
-    bool     CallTipActive();
-    int      CallTipPosAtStart();
-    void     CallTipSetHighlight(int start, int end);
-    void     CallTipSetBackground(const wxColour& colour);
-
-
-    // Key bindings
-    void     CmdKeyAssign(int key, int modifiers, int cmd);
-    void     CmdKeyClear(int key, int modifiers);
-    void     CmdKeyClearAll();
-    void     CmdKeyExecute(int cmd);
-
-
-    // Print formatting
-    int      FormatRange(bool   doDraw,
-                         int    startPos,
-                         int    endPos,
-                         wxDC*  draw,
-                         wxDC*  target,  // Why does it use two? Can they be the same?
-                         wxRect renderRect,
-                         wxRect pageRect);
-
-
-    // Document Sharing (multiple views)
-    void*    GetDocument();
-    void     SetDocument(void* document);
-    // TODO: create a wx wrapper for Scintilla's document class
-
-
-    // Folding
-    int      VisibleFromDocLine(int docLine);
-    int      DocLineFromVisible(int displayLine);
-    int      SetFoldLevel(int line, int level);
-    int      GetFoldLevel(int line);
-    int      GetLastChild(int line, int level);
-    int      GetFoldParent(int line);
-    void     ShowLines(int lineStart, int lineEnd);
-    void     HideLines(int lineStart, int lineEnd);
-    bool     GetLineVisible(int line);
-    void     SetFoldExpanded(int line, bool expanded);
-    bool     GetFoldExpanded(int line);
-    void     ToggleFold(int line);
-    void     EnsureVisible(int line);
-    void     SetFoldFlags(int flags);
-
-
-    // Zooming
-    void     ZoomIn();
-    void     ZoomOut();
-    void     SetZoom(int zoom);
-    int      GetZoom();
-
-
-    // Long Lines
-    int      GetEdgeColumn();
-    void     SetEdgeColumn(int column);
-    wxSTC_EDGE GetEdgeMode();
-    void     SetEdgeMode(wxSTC_EDGE mode);
+    // Retrieve the number of columns that a line is indented.
+    int GetLineIndentation(int line);
+
+    // Retrieve the position before the first non indentation character on a line.
+    int GetLineIndentPosition(int line);
+
+    // Retrieve the column number of a position, taking tab width into account.
+    int GetColumn(int pos);
+
+    // Show or hide the horizontal scroll bar.
+    void SetUseHorizontalScrollBar(bool show);
+
+    // Is the horizontal scroll bar visible?
+    bool GetUseHorizontalScrollBar();
+
+    // Show or hide indentation guides.
+    void SetIndentationGuides(bool show);
+
+    // Are the indentation guides visible?
+    bool GetIndentationGuides();
+
+    // Set the highlighted indentation guide column.
+    // 0 = no highlighted guide.
+    void SetHighlightGuide(int column);
+
+    // Get the highlighted indentation guide column.
+    int GetHighlightGuide();
+
+    // Get the position after the last visible characters on a line.
+    int GetLineEndPosition(int line);
+
+    // Get the code page used to interpret the bytes of the document as characters.
+    int GetCodePage();
+
+    // Get the foreground colour of the caret.
+    wxColour GetCaretForeground();
+
+    // In read-only mode?
+    bool GetReadOnly();
+
+    // Sets the position of the caret.
+    void SetCurrentPos(int pos);
+
+    // Sets the position that starts the selection - this becomes the anchor.
+    void SetSelectionStart(int pos);
+
+    // Returns the position at the start of the selection.
+    int GetSelectionStart();
+
+    // Sets the position that ends the selection - this becomes the currentPosition.
+    void SetSelectionEnd(int pos);
+
+    // Returns the position at the end of the selection.
+    int GetSelectionEnd();
+
+    // Sets the print magnification added to the point size of each style for printing.
+    void SetPrintMagnification(int magnification);
+
+    // Returns the print magnification.
+    int GetPrintMagnification();
+
+    // Modify colours when printing for clearer printed text.
+    void SetPrintColourMode(int mode);
+
+    // Returns the print colour mode.
+    int GetPrintColourMode();
+
+    // Find some text in the document.
+    int FindText(int minPos, int maxPos,
+                               const wxString& text,
+                               bool caseSensitive, bool wholeWord);
+
+    // On Windows will draw the document into a display context such as a printer.
+    int FormatRange(bool   doDraw,
+                               int    startPos,
+                               int    endPos,
+                               wxDC*  draw,
+                               wxDC*  target,  // Why does it use two? Can they be the same?
+                               wxRect renderRect,
+                               wxRect pageRect);
+
+    // Retrieve the line at the top of the display.
+    int GetFirstVisibleLine();
+
+    // Retrieve the contents of a line.
+    wxString GetLine(int line);
+
+    // Returns the number of lines in the document. There is always at least one.
+    int GetLineCount();
+
+    // Sets the size in pixels of the left margin.
+    void SetMarginLeft(int width);
+
+    // Returns the size in pixels of the left margin.
+    int GetMarginLeft();
+
+    // Sets the size in pixels of the right margin.
+    void SetMarginRight(int width);
+
+    // Returns the size in pixels of the right margin.
+    int GetMarginRight();
+
+    // Is the document different from when it was last saved?
+    bool GetModify();
+
+    // Select a range of text.
+    void SetSelection(int start, int end);
+
+    // Retrieve the selected text.
+    wxString GetSelectedText();
+
+    // Retrieve a range of text.
+    wxString GetTextRange(int startPos, int endPos);
+
+    // Draw the selection in normal style or with selection highlighted.
+    void HideSelection(bool normal);
+
+    // Retrieve the line containing a position.
+    int LineFromPosition(int pos);
+
+    // Retrieve the position at the start of a line.
+    int PositionFromLine(int line);
+
+    // Scroll horizontally and vertically.
+    void LineScroll(int columns, int lines);
+
+    // Ensure the caret is visible.
+    void EnsureCaretVisible();
+
+    // Replace the selected text with the argument text.
+    void ReplaceSelection(const wxString& text);
+
+    // Set to read only or read write.
+    void SetReadOnly(bool readOnly);
+
+    // Will a paste succeed?
+    bool CanPaste();
+
+    // Are there any undoable actions in the undo history.
+    bool CanUndo();
+
+    // Delete the undo history.
+    void EmptyUndoBuffer();
+
+    // Undo one action in the undo history.
+    void Undo();
+
+    // Cut the selection to the clipboard.
+    void Cut();
+
+    // Copy the selection to the clipboard.
+    void Copy();
+
+    // Paste the contents of the clipboard into the document replacing the selection.
+    void Paste();
+
+    // Clear the selection.
+    void Clear();
+
+    // Replace the contents of the document with the argument text.
+    void SetText(const wxString& text);
+
+    // Retrieve all the text in the document.
+    wxString GetText();
+
+    // Retrieve the number of characters in the document.
+    int GetTextLength();
+
+    // Set to overtype (true) or insert mode
+    void SetOvertype(bool overtype);
+
+    // Returns true if overtype mode is active otherwise false is returned.
+    bool GetOvertype();
+
+    // Show a call tip containing a definition near position pos.
+    void CallTipShow(int pos, const wxString& definition);
+
+    // Remove the call tip from the screen.
+    void CallTipCancel();
+
+    // Is there an active call tip?
+    bool CallTipActive();
+
+    // Retrieve the position where the caret was before displaying the call tip.
+    int CallTipPosAtStart();
+
+    // Highlight a segment of the definition.
+    void CallTipSetHighlight(int start, int end);
+
+    // Set the background colour for the call tip.
+    void CallTipSetBackground(const wxColour& back);
+
+    // Find the display line of a document line taking hidden lines into account.
+    int VisibleFromDocLine(int line);
+
+    // Find the document line of a display line taking hidden lines into account.
+    int DocLineFromVisible(int lineDisplay);
+
+    // Set the fold level of a line.
+    // This encodes an integer level along with flags indicating whether the
+    // line is a header and whether it is effectively white space.
+    void SetFoldLevel(int line, int level);
+
+    // Retrieve the fold level of a line.
+    int GetFoldLevel(int line);
+
+    // Find the last child line of a header line.
+    int GetLastChild(int line, int level);
+
+    // Find the parent line of a child line.
+    int GetFoldParent(int line);
+
+    // Make a range of lines visible.
+    void ShowLines(int lineStart, int lineEnd);
+
+    // Make a range of lines invisible.
+    void HideLines(int lineStart, int lineEnd);
+
+    // Is a line visible?
+    bool GetLineVisible(int line);
+
+    // Show the children of a header line.
+    void SetFoldExpanded(int line, bool expanded);
+
+    // Is a header line expanded?
+    bool GetFoldExpanded(int line);
+
+    // Switch a header line between expanded and contracted.
+    void ToggleFold(int line);
+
+    // Ensure a particular line is visible by expanding any header line hiding it.
+    void EnsureVisible(int line);
+
+    // Set some debugging options for folding
+    void SetFoldFlags(int flags);
+
+    // How many characters are on a line, not including end of line characters.
+    int LineLength(int line);
+
+    // Highlight the characters at two positions.
+    void BraceHighlight(int pos1, int pos2);
+
+    // Highlight the character at a position indicating there is no matching brace.
+    void BraceBadLight(int pos);
+
+    // Find the position of a matching brace or INVALID_POSITION if no match.
+    int BraceMatch(int pos);
+
+    // Are the end of line characters visible.
+    bool GetViewEOL();
+
+    // Make the end of line characters visible or invisible
+    void SetViewEOL(bool visible);
+
+    // Retrieve a pointer to the document object.
+    void* GetDocPointer();
+
+    // Change the document object used.
+    void SetDocPointer(void* docPointer);
+
+    // Set which document modification events are sent to the container.
+    void SetModEventMask(int mask);
+
+    // Retrieve the column number which text should be kept within.
+    int GetEdgeColumn();
+
+    // Set the column number of the edge.
+    // If text goes past the edge then it is highlighted.
+    void SetEdgeColumn(int column);
+
+    // Retrieve the edge highlight mode.
+    int GetEdgeMode();
+
+    // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
+    // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
+    void SetEdgeMode(int mode);
+
+    // Retrieve the colour used in edge indication.
     wxColour GetEdgeColour();
-    void     SetEdgeColour(const wxColour& colour);
 
+    // Change the colour used in edge indication.
+    void SetEdgeColour(const wxColour& edgeColour);
+
+    // Sets the current caret position to be the search anchor.
+    void SearchAnchor();
+
+    // Find some text starting at the search anchor.
+    int SearchNext(int flags, const wxString& text);
+
+    // Find some text starting at the search anchor and moving backwards.
+    int SearchPrev(int flags, const wxString& text);
+
+    // Set the way the line the caret is on is kept visible.
+    void SetCaretPolicy(int caretPolicy, int caretSlop);
+
+    // Retrieves the number of lines completely visible.
+    int LinesOnScreen();
+
+    // Set whether a pop up menu is displayed automatically when the user presses
+    // the wrong mouse button.
+    void UsePopUp(bool allowPopUp);
+
+    // Is the selection a rectangular. The alternative is the more common stream selection.
+    bool SelectionIsRectangle();
+
+    // Set the zoom level. This number of points is added to the size of all fonts.
+    // It may be positive to magnify or negative to reduce.
+    void SetZoom(int zoom);
+
+    // Retrieve the zoom level.
+    int GetZoom();
+
+    // Create a new document object.
+    // Starts with reference count of 1 and not selected into editor.
+    void* CreateDocument();
 
-    // Lexer
-    void     SetLexer(wxSTC_LEX lexer);
-    wxSTC_LEX GetLexer();
-    void     Colourise(int start, int end);
-    void     SetProperty(const wxString& key, const wxString& value);
-    void     SetKeywords(int keywordSet, const wxString& keywordList);
+    // Extend life of document.
+    void AddRefDocument(void* docPointer);
 
+    // Release a reference to the document, deleting document if it fades to black.
+    void ReleaseDocument(void* docPointer);
+
+    // Get which document modification events are sent to the container.
+    int GetModEventMask();
+
+    // Start notifying the container of all key presses and commands.
+    void StartRecord();
+
+    // Stop notifying the container of all key presses and commands.
+    void StopRecord();
+
+    // Set the lexing language of the document.
+    void SetLexer(int lexer);
+
+    // Retrieve the lexing language of the document.
+    int GetLexer();
+
+    // Colourise a segment of the document using the current lexing language.
+    void Colourise(int start, int end);
+
+    // Set up a value that may be used by a lexer for some optional feature.
+    void SetProperty(const wxString& key, const wxString& value);
+
+    // Set up the key words used by the lexer.
+    void SetKeyWords(int keywordSet, const wxString& keyWords);
+
+// END of generated section
+//----------------------------------------------------------------------
+// Others...
+
+
+    // Returns the line number of the line with the caret.
+    int GetCurrentLine();
+
+    // Extract style settings from a spec-string which is composed of one or
+    // more of the following comma separated elements:
+    //
+    //      bold                    turns on bold
+    //      italic                  turns on italics
+    //      fore:#RRGGBB            sets the foreground colour
+    //      back:#RRGGBB            sets the background colour
+    //      face:[facename]         sets the font face name to use
+    //      size:[num]              sets the font size in points
+    //      eol                     turns on eol filling
+    //      underline               turns on underlining
+    //
+    void StyleSetSpec(int styleNum, const wxString& spec);
+
+
+
+    // Set style size, face, bold, italic, and underline attributes from
+    // a wxFont's attributes.
+    void StyleSetFont(int styleNum, wxFont& font);
+
+
+
+    // Set all font style attributes at once.
+    void StyleSetFontAttr(int styleNum, int size,
+                          const wxString& faceName,
+                          bool bold, bool italic,
+                          bool underline);
+
+
+
+    // Perform one of the operations defined by the wxSTC_CMD_* constants.
+    void CmdKeyExecute(int cmd);
+
+
+
+    // Set the left and right margin in the edit area, measured in pixels.
+    void SetMargins(int left, int right);
+
+
+    // Retrieve the start and end positions of the current selection.
+#ifdef SWIG
+    void GetSelection(int* OUTPUT, int* OUTPUT);
+#else
+    void GetSelection(int* startPos, int* endPos);
+#endif
+
+    // Retrieve the point in the window where a position is displayed.
+    wxPoint PointFromPosition(int pos);
+
+//----------------------------------------------------------------------
 
-    // Event mask for Modified Event
-    void     SetModEventMask(int mask);
-    //int      GetModEventMask();
 
 #ifndef SWIG
 private:
@@ -519,8 +1267,6 @@ private:
 
     ScintillaWX*        m_swx;
     wxStopWatch         m_stopWatch;
-    bool                m_readOnly;
-    wxSTC_UndoType      m_undoType;
 
 
     friend class ScintillaWX;
@@ -610,22 +1356,10 @@ enum {
     wxEVT_STC_KEY,
     wxEVT_STC_MACRORECORD,
     wxEVT_STC_MARGINCLICK,
-    wxEVT_STC_NEEDSHOWN
+    wxEVT_STC_NEEDSHOWN,
+    wxEVT_STC_POSCHANGED
 };
 
-// Modification and action types
-const int wxSTC_MOD_INSERTTEXT = 0x1;
-const int wxSTC_MOD_DELETETEXT = 0x2;
-const int wxSTC_MOD_CHANGESTYLE = 0x4;
-const int wxSTC_MOD_CHANGEFOLD = 0x8;
-const int wxSTC_PERFORMED_USER = 0x10;
-const int wxSTC_PERFORMED_UNDO = 0x20;
-const int wxSTC_PERFORMED_REDO = 0x40;
-const int wxSTC_LASTSTEPINUNDOREDO = 0x100;
-const int wxSTC_MOD_CHANGEMARKER = 0x200;
-const int wxSTC_MOD_BEFOREINSERT = 0x400;
-const int wxSTC_MOD_BEFOREDELETE = 0x800;
-
 
 #ifndef SWIG
 typedef void (wxEvtHandler::*wxStyledTextEventFunction)(wxStyledTextEvent&);
index fe337aadb3500440829d7accfe5545650289294f..bb581a99abcb50c4a7c9011afc8ac6f3763124f3 100644 (file)
@@ -165,7 +165,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     ed->EmptyUndoBuffer();
 
     ed->SetLexer(wxSTC_LEX_CPP);
-    ed->SetKeywords(0,
+    ed->SetKeyWords(0,
                     "asm auto bool break case catch char class const "
                     "const_cast continue default delete do double "
                     "dynamic_cast else enum explicit export extern "
index 41444aed2ddaf96330f05cf92434eb43516e4a1d..650921ee5ae090fbb1d130b92846ff221624237e 100644 (file)
@@ -273,8 +273,6 @@ void ScintillaWX::AddToPopUp(const char *label, int cmd, bool enabled) {
 
     if (!enabled)
         popup.GetID()->Enable(cmd, enabled);
-
-    // TODO:  need to create event handler mappings for the cmd ID
 }
 
 
index 3fde7ae05d08170bd2cb1d21a9e811df8874425c..506493658e4447fe3ec83d3a43ad1fe61d41ed99 100644 (file)
@@ -26,7 +26,7 @@
 // If we don't do something like this, then the linker tends to "optimize"
 // them away. (eric@sourcegear.com)
 
-static int wxForceScintillaLexers(void)
+int wxForceScintillaLexers(void)
 {
   extern LexerModule lmCPP;
   extern LexerModule lmHTML;
@@ -39,7 +39,6 @@ static int wxForceScintillaLexers(void)
   extern LexerModule lmPython;
   extern LexerModule lmSQL;
   extern LexerModule lmVB;
-  extern LexerModule lmLua;
 
   if (
       &lmCPP
@@ -53,11 +52,14 @@ static int wxForceScintillaLexers(void)
       && &lmPython
       && &lmSQL
       && &lmVB
-      && &lmLua
       )
     {
       return 1;
     }
+  else
+    {
+      return 0;
+    }
 }
 
 //----------------------------------------------------------------------
@@ -100,16 +102,12 @@ wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
               wxDefaultValidator, name)
 {
     m_swx = new ScintillaWX(this);
-    // m_keywords = new WordList;
     m_stopWatch.Start();
-    m_readOnly = false;
-    m_undoType = wxSTC_UndoCollectAutoStart;
 }
 
 
 wxStyledTextCtrl::~wxStyledTextCtrl() {
     delete m_swx;
-    // delete m_keywords;
 }
 
 
@@ -121,1261 +119,1365 @@ long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
 }
 
 
-//----------------------------------------------------------------------
-// Text retrieval and modification
-
-wxString wxStyledTextCtrl::GetText() {
-    wxString text;
-    int   len  = GetTextLength();
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETTEXT, len, (long)buff);
-    buff[len] = 0;
-    text.UngetWriteBuf();
-    return text;
-}
-
-
-bool wxStyledTextCtrl::SetText(const wxString& text) {
-    return SendMsg(SCI_SETTEXT, 0, (long)text.c_str()) != 0;
-}
-
-
-wxString wxStyledTextCtrl::GetLine(int line) {
-    wxString text;
-    int   len  = GetLineLength(line);
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETLINE, line, (long)buff);
-    buff[len] = 0;
-    text.UngetWriteBuf();
-    return text;
-}
-
-
-void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
-    SendMsg(SCI_REPLACESEL, 0, (long)text.c_str());
-}
-
-
-void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
-    SendMsg(SCI_SETREADONLY, (long)readOnly);
-    m_readOnly = readOnly;
-}
-
-
-bool wxStyledTextCtrl::GetReadOnly() {
-    // TODO: need support in Scintilla to do this right,
-    //       until then we'll track it ourselves
-    return m_readOnly;
-}
+#define MAKELONG(a, b) ((a) | ((b) << 16))
 
 
-void wxStyledTextCtrl::GetTextRange(int startPos, int endPos, char* buff) {
-    TextRange tr;
-    tr.lpstrText = buff;
-    tr.chrg.cpMin = startPos;
-    tr.chrg.cpMax = endPos;
-    SendMsg(SCI_GETTEXTRANGE, 0, (long)&tr);
+static long wxColourAsLong(const wxColour& co) {
+    return (((long)co.Blue()  << 16) |
+            ((long)co.Green() <<  8) |
+            ((long)co.Red()));
 }
 
-
-wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
-    wxString  text;
-    int       len  = endPos - startPos;
-    char*     buff = text.GetWriteBuf(len+1);
-    GetTextRange(startPos, endPos, buff);
-    text.UngetWriteBuf();
-    return text;
+static wxColour wxColourFromLong(long c) {
+    wxColour clr;
+    clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
+    return clr;
 }
 
 
-void wxStyledTextCtrl::GetStyledTextRange(int startPos, int endPos, char* buff) {
-    TextRange tr;
-    tr.lpstrText = buff;
-    tr.chrg.cpMin = startPos;
-    tr.chrg.cpMax = endPos;
-    SendMsg(SCI_GETSTYLEDTEXT, 0, (long)&tr);
+static wxColour wxColourFromSpec(const wxString& spec) {
+    // spec should be #RRGGBB
+    char* junk;
+    int red   = strtol(spec.Mid(1,2), &junk, 16);
+    int green = strtol(spec.Mid(3,2), &junk, 16);
+    int blue  = strtol(spec.Mid(5,2), &junk, 16);
+    return wxColour(red, green, blue);
 }
 
 
-wxString wxStyledTextCtrl::GetStyledTextRange(int startPos, int endPos) {
-    wxString  text;
-    int       len  = endPos - startPos;
-    char*     buff = text.GetWriteBuf(len*2+1);
-    GetStyledTextRange(startPos, endPos, buff);
-    text.UngetWriteBuf(len*2);
-    return text;
-}
+//----------------------------------------------------------------------
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py from the contents of Scintilla.iface.  Do not edit
+//       this file.  Edit stc.cpp.in or gen_iface.py instead and regenerate.
 
 
+// Add text to the document
 void wxStyledTextCtrl::AddText(const wxString& text) {
-    SendMsg(SCI_ADDTEXT, text.Len(), (long)text.c_str());
+                    SendMsg(2001, text.Len(), (long)text.c_str());
 }
 
-
+// Add array of cells to document
 void wxStyledTextCtrl::AddStyledText(const wxString& text) {
-    SendMsg(SCI_ADDSTYLEDTEXT, text.Len(), (long)text.c_str());
+                          SendMsg(2002, text.Len(), (long)text.c_str());
 }
 
-
+// Insert string at a position
 void wxStyledTextCtrl::InsertText(int pos, const wxString& text) {
-    SendMsg(SCI_INSERTTEXT, pos, (long)text.c_str());
+    SendMsg(2003, pos, (long)text.c_str());
 }
 
-
+// Delete all text in the document
 void wxStyledTextCtrl::ClearAll() {
-    SendMsg(SCI_CLEARALL);
+    SendMsg(2004, 0, 0);
 }
 
-
-char wxStyledTextCtrl::GetCharAt(int pos) {
-    return SendMsg(SCI_GETCHARAT, pos);
-}
-
-
-char wxStyledTextCtrl::GetStyleAt(int pos) {
-    return SendMsg(SCI_GETSTYLEAT, pos);
-}
-
-
-void wxStyledTextCtrl::SetStyleBits(int bits) {
-    SendMsg(SCI_SETSTYLEBITS, bits);
-}
-
-
-int  wxStyledTextCtrl::GetStyleBits() {
-    return SendMsg(SCI_GETSTYLEBITS);
-}
-
-
-//----------------------------------------------------------------------
-// Clipboard
-
-
-void wxStyledTextCtrl::Cut() {
-    SendMsg(SCI_CUT);
-}
-
-
-void wxStyledTextCtrl::Copy() {
-    SendMsg(SCI_COPY);
-}
-
-
-void wxStyledTextCtrl::Paste() {
-    SendMsg(SCI_PASTE);
+// Set all style bytes to 0, remove all folding information
+void wxStyledTextCtrl::ClearDocumentStyle() {
+    SendMsg(2005, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanPaste() {
-    return SendMsg(SCI_CANPASTE) != 0;
+// The number of characters in the document
+int wxStyledTextCtrl::GetLength() {
+    return SendMsg(2006, 0, 0);
 }
 
-
-void wxStyledTextCtrl::ClearClipbrd() {
-    SendMsg(SCI_CLEAR);
+// Returns the character byte at the position
+int wxStyledTextCtrl::GetCharAt(int pos) {
+    return SendMsg(2007, pos, 0);
 }
 
-
-
-//----------------------------------------------------------------------
-// Undo and Redo
-
-void wxStyledTextCtrl::Undo() {
-    SendMsg(SCI_UNDO);
+// Returns the position of the caret
+int wxStyledTextCtrl::GetCurrentPos() {
+    return SendMsg(2008, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanUndo() {
-    return SendMsg(SCI_CANUNDO) != 0;
+// Returns the position of the opposite end of the selection to the caret
+int wxStyledTextCtrl::GetAnchor() {
+    return SendMsg(2009, 0, 0);
 }
 
-
-void wxStyledTextCtrl::EmptyUndoBuffer() {
-    SendMsg(SCI_EMPTYUNDOBUFFER);
+// Returns the style byte at the position
+int wxStyledTextCtrl::GetStyleAt(int pos) {
+    return SendMsg(2010, pos, 0);
 }
 
-
+// Redoes the next action on the undo history
 void wxStyledTextCtrl::Redo() {
-    SendMsg(SCI_REDO);
-}
-
-
-bool wxStyledTextCtrl::CanRedo() {
-    return SendMsg(SCI_CANREDO) != 0;
-}
-
-
-void wxStyledTextCtrl::SetUndoCollection(wxSTC_UndoType type) {
-    SendMsg(SCI_SETUNDOCOLLECTION, type);
-    m_undoType = type;
-}
-
-
-wxSTC_UndoType wxStyledTextCtrl::GetUndoCollection() {
-    // TODO: need support in Scintilla to do this right,
-    //       until then we'll track it ourselves
-    return m_undoType;
-}
-
-
-void wxStyledTextCtrl::BeginUndoAction() {
-    SendMsg(SCI_BEGINUNDOACTION);
-}
-
-
-void wxStyledTextCtrl::EndUndoAction() {
-    SendMsg(SCI_ENDUNDOACTION);
-}
-
-
-
-
-//----------------------------------------------------------------------
-// Selection and information
-
-
-void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
-//    SendMsg(EM_GETSEL, (long)startPos, (long)endPos);
-    *startPos = SendMsg(SCI_GETSELECTIONSTART);
-    *endPos = SendMsg(SCI_GETSELECTIONEND);
-}
-
-
-void wxStyledTextCtrl::SetSelection(int  startPos, int  endPos) {
-    SendMsg(SCI_SETSEL, startPos, endPos);
-}
-
-
-wxString wxStyledTextCtrl::GetSelectedText() {
-    wxString text;
-    int   start;
-    int   end;
-
-    GetSelection(&start, &end);
-    int   len  = end - start;
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETSELTEXT, 0, (long)buff);
-    text.UngetWriteBuf();
-    return text;
+    SendMsg(2011, 0, 0);
 }
 
-
-void wxStyledTextCtrl::HideSelection(bool hide) {
-    SendMsg(SCI_HIDESELECTION, hide);
+// Choose between collecting actions into the undo
+// history and discarding them.
+void wxStyledTextCtrl::SetUndoCollection(bool collectUndo) {
+    SendMsg(2012, collectUndo, 0);
 }
 
-
-bool wxStyledTextCtrl::GetHideSelection() {
-    return m_swx->GetHideSelection();
-}
-
-
-int wxStyledTextCtrl::GetTextLength() {
-    return SendMsg(SCI_GETTEXTLENGTH);
+// Select all the text in the document.
+void wxStyledTextCtrl::SelectAll() {
+    SendMsg(2013, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetFirstVisibleLine() {
-    return SendMsg(SCI_GETFIRSTVISIBLELINE);
+// Remember the current position in the undo history as the position
+// at which the document was saved.
+void wxStyledTextCtrl::SetSavePoint() {
+    SendMsg(2014, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineCount() {
-    return SendMsg(SCI_GETLINECOUNT);
+// Retrieve a buffer of cells.
+wxString wxStyledTextCtrl::GetStyledText(int startPos, int endPos) {
+                          wxString text;
+                          int len = endPos - startPos;
+                          TextRange tr;
+                          tr.lpstrText = text.GetWriteBuf(len*2+1);
+                          tr.chrg.cpMin = startPos;
+                          tr.chrg.cpMax = endPos;
+                          SendMsg(2015, 0, (long)&tr);
+                          text.UngetWriteBuf(len*2);
+                          return text;
 }
 
-
-bool wxStyledTextCtrl::GetModified() {
-    return SendMsg(SCI_GETMODIFY) != 0;
+// Are there any redoable actions in the undo history.
+bool wxStyledTextCtrl::CanRedo() {
+    return SendMsg(2016, 0, 0) != 0;
 }
 
-
-int wxStyledTextCtrl::GetLineFromPos(int pos) {
-    return SendMsg(SCI_LINEFROMPOSITION, pos);
+// Retrieve the line number at which a particular marker is located
+int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
+    return SendMsg(2017, handle, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineStartPos(int line) {
-    return SendMsg(SCI_POSITIONFROMLINE, line);
+// Delete a marker.
+void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
+    SendMsg(2018, handle, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineLength(int line) {
-    return SendMsg(SCI_LINELENGTH, line);
+// Is undo history being collected?
+bool wxStyledTextCtrl::GetUndoCollection() {
+    return SendMsg(2019, 0, 0) != 0;
 }
 
-
-int wxStyledTextCtrl::GetCurrentLine() {
-    int line = GetLineFromPos(GetCurrentPos());
-    return line;
+// Are white space characters currently visible?
+// Returns one of SCWS_* constants.
+int wxStyledTextCtrl::GetViewWhiteSpace() {
+    return SendMsg(2020, 0, 0);
 }
 
-
-wxString wxStyledTextCtrl::GetCurrentLineText(int* linePos) {
-    wxString text;
-    int   len  = GetLineLength(GetCurrentLine());
-    char* buff = text.GetWriteBuf(len+1);
-
-    int pos = SendMsg(SCI_GETCURLINE, len, (long)buff);
-    text.UngetWriteBuf();
-
-    if (linePos)
-        *linePos = pos;
-
-    return text;
+// Make white space characters invisible, always visible or visible outside indentation.
+void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS) {
+    SendMsg(2021, viewWS, 0);
 }
 
-
+// Find the position from a point within the window.
 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt) {
-    return SendMsg(SCI_POSITIONFROMPOINT, pt.x, pt.y);
-}
-
-
-wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
-    int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
-    int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
-    return wxPoint(x, y);
-}
-
-
-int wxStyledTextCtrl::GetCurrentPos() {
-    return SendMsg(SCI_GETCURRENTPOS);
-}
-
-
-int wxStyledTextCtrl::GetAnchor() {
-    return SendMsg(SCI_GETANCHOR);
-}
-
-
-void wxStyledTextCtrl::SelectAll() {
-    SendMsg(SCI_SELECTALL);
-}
-
-
-void wxStyledTextCtrl::SetCurrentPosition(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+                              return SendMsg(2022, pt.x, pt.y);
 }
 
-
-void wxStyledTextCtrl::SetAnchor(int pos) {
-    SendMsg(SCI_SETANCHOR, pos);
+// Set caret to start of a line and ensure it is visible.
+void wxStyledTextCtrl::GotoLine(int line) {
+    SendMsg(2024, line, 0);
 }
 
-
+// Set caret to a position and ensure it is visible.
 void wxStyledTextCtrl::GotoPos(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+    SendMsg(2025, pos, 0);
 }
 
-
-void wxStyledTextCtrl::GotoLine(int line) {
-    SendMsg(SCI_GOTOLINE, line);
+// Set the selection anchor to a position. The anchor is the opposite
+// end of the selection from the caret.
+void wxStyledTextCtrl::SetAnchor(int posAnchor) {
+    SendMsg(2026, posAnchor, 0);
 }
 
+// Retrieve the text of the line containing the caret.
+// Returns the index of the caret on the line.
+wxString wxStyledTextCtrl::GetCurLine(int* linePos) {
+                       wxString text;
+                       int len = LineLength(GetCurrentLine());
+                       char* buf = text.GetWriteBuf(len+1);
 
-void wxStyledTextCtrl::ChangePosition(int delta, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_CHANGEPOSITION, delta, extendSelection);
-}
-
+                       int pos = SendMsg(2027, len, (long)buf);
+                       text.UngetWriteBuf();
+                       if (linePos)  *linePos = pos;
 
-void wxStyledTextCtrl::PageMove(int cmdKey, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_PAGEMOVE, cmdKey, extendSelection);
+                       return text;
 }
 
-
-void wxStyledTextCtrl::ScrollBy(int columnDelta, int lineDelta) {
-    SendMsg(SCI_LINESCROLL, columnDelta, lineDelta);
+// Retrieve the position of the last correctly styled character.
+int wxStyledTextCtrl::GetEndStyled() {
+    return SendMsg(2028, 0, 0);
 }
 
-void wxStyledTextCtrl::ScrollToLine(int line) {
-    m_swx->DoScrollToLine(line);
+// Convert all line endings in the document to use the current mode.
+void wxStyledTextCtrl::ConvertEOLs() {
+    SendMsg(2029, 0, 0);
 }
 
-
-void wxStyledTextCtrl::ScrollToColumn(int column) {
-    m_swx->DoScrollToColumn(column);
+// Retrieve the current end of line mode - one of CRLF, CR, or LF.
+int wxStyledTextCtrl::GetEOLMode() {
+    return SendMsg(2030, 0, 0);
 }
 
-
-void wxStyledTextCtrl::EnsureCaretVisible() {
-    SendMsg(SCI_SCROLLCARET);
+// Set the current end of line mode.
+void wxStyledTextCtrl::SetEOLMode(int eolMode) {
+    SendMsg(2031, eolMode, 0);
 }
 
-
-void wxStyledTextCtrl::SetCaretPolicy(int policy, int slop) {
-    SendMsg(SCI_SETCARETPOLICY, policy, slop);
+// Set the current styling position to pos and the styling mask to mask.
+// The styling mask can be used to protect some bits in each styling byte from
+// modification.
+void wxStyledTextCtrl::StartStyling(int pos, int mask) {
+    SendMsg(2032, pos, mask);
 }
 
-
-int wxStyledTextCtrl::GetLinesOnScreen() {
-    return SendMsg(SCI_LINESONSCREEN);
+// Change style from current styling position for length characters to a style
+// and move the current styling position to after this newly styled segment.
+void wxStyledTextCtrl::SetStyling(int length, int style) {
+    SendMsg(2033, length, style);
 }
 
-
-bool wxStyledTextCtrl::IsSelectionRectangle() {
-    return SendMsg(SCI_SELECTIONISRECTANGLE) != 0;
+// Is drawing done first into a buffer or direct to the screen.
+bool wxStyledTextCtrl::GetBufferedDraw() {
+    return SendMsg(2034, 0, 0) != 0;
 }
 
-
-void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool use) {
-    SendMsg(SCI_SETHSCROLLBAR, use);
+// If drawing is buffered then each line of text is drawn into a bitmap buffer
+// before drawing it to the screen to avoid flicker.
+void wxStyledTextCtrl::SetBufferedDraw(bool buffered) {
+    SendMsg(2035, buffered, 0);
 }
 
-
-bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
-    return SendMsg(SCI_GETHSCROLLBAR) != 0;
+// Change the visible size of a tab to be a multiple of the width of a space
+// character.
+void wxStyledTextCtrl::SetTabWidth(int tabWidth) {
+    SendMsg(2036, tabWidth, 0);
 }
 
-
-
-
-
-//----------------------------------------------------------------------
-// Searching
-
-int wxStyledTextCtrl::FindText(int minPos, int maxPos,
-                               const wxString& text,
-                               bool caseSensitive, bool wholeWord) {
-    TextToFind  ft;
-    int         flags = 0;
-
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-    ft.chrg.cpMin = minPos;
-    ft.chrg.cpMax = maxPos;
-    ft.lpstrText = (char*)text.c_str();
-
-    return SendMsg(SCI_FINDTEXT, flags, (long)&ft);
+// Retrieve the visible size of a tab.
+int wxStyledTextCtrl::GetTabWidth() {
+    return SendMsg(2121, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SearchAnchor() {
-    SendMsg(SCI_SEARCHANCHOR);
+// Set the code page used to interpret the bytes of the document as characters.
+// The SC_CP_UTF8 value can be used to enter Unicode mode.
+void wxStyledTextCtrl::SetCodePage(int codePage) {
+    SendMsg(2037, codePage, 0);
 }
 
+// Set the symbol used for a particular marker number,
+// and optionally the for and background colours.
+void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
+                            const wxColour& foreground,
+                            const wxColour& background) {
 
-int wxStyledTextCtrl::SearchNext(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHNEXT, flags, (long)text.c_str());
+                            SendMsg(2040, markerNumber, markerSymbol);
+                            if (foreground.Ok())
+                                MarkerSetForeground(markerNumber, foreground);
+                            if (background.Ok())
+                                MarkerSetBackground(markerNumber, background);
 }
 
-
-int wxStyledTextCtrl::SearchPrev(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHPREV, flags, (long)text.c_str());
+// Set the foreground colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& fore) {
+    SendMsg(2041, markerNumber, wxColourAsLong(fore));
 }
 
-//----------------------------------------------------------------------
-// Visible whitespace
-
-
-bool wxStyledTextCtrl::GetViewWhitespace() {
-    return SendMsg(SCI_GETVIEWWS) != 0;
-}
-
-
-void wxStyledTextCtrl::SetViewWhitespace(bool visible) {
-    SendMsg(SCI_SETVIEWWS, visible);
+// Set the background colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& back) {
+    SendMsg(2042, markerNumber, wxColourAsLong(back));
 }
 
-
-
-//----------------------------------------------------------------------
-// Line endings
-
-wxSTC_EOL wxStyledTextCtrl::GetEOLMode() {
-    return (wxSTC_EOL)SendMsg(SCI_GETEOLMODE);
+// Add a marker to a line.
+void wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
+    SendMsg(2043, line, markerNumber);
 }
 
-
-void wxStyledTextCtrl::SetEOLMode(wxSTC_EOL mode) {
-    SendMsg(SCI_SETEOLMODE, mode);
+// Delete a marker from a line
+void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
+    SendMsg(2044, line, markerNumber);
 }
 
-
-bool wxStyledTextCtrl::GetViewEOL() {
-    return SendMsg(SCI_GETVIEWEOL) != 0;
+// Delete all markers with a particular number from all lines
+void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
+    SendMsg(2045, markerNumber, 0);
 }
 
-
-void wxStyledTextCtrl::SetViewEOL(bool visible) {
-    SendMsg(SCI_SETVIEWEOL, visible);
+// Get a bit mask of all the markers set on a line.
+int wxStyledTextCtrl::MarkerGet(int line) {
+    return SendMsg(2046, line, 0);
 }
 
-void wxStyledTextCtrl::ConvertEOL(wxSTC_EOL mode) {
-    SendMsg(SCI_CONVERTEOLS, mode);
+// Find the next line after lineStart that includes a marker in mask.
+int wxStyledTextCtrl::MarkerNext(int lineStart, int markerMask) {
+    return SendMsg(2047, lineStart, markerMask);
 }
 
-//----------------------------------------------------------------------
-// Styling
-
-int wxStyledTextCtrl::GetEndStyled() {
-    return SendMsg(SCI_GETENDSTYLED);
+// Find the previous line before lineStart that includes a marker in mask.
+int wxStyledTextCtrl::MarkerPrevious(int lineStart, int markerMask) {
+    return SendMsg(2048, lineStart, markerMask);
 }
 
-
-void wxStyledTextCtrl::StartStyling(int pos, int mask) {
-    SendMsg(SCI_STARTSTYLING, pos, mask);
+// Set a margin to be either numeric or symbolic.
+void wxStyledTextCtrl::SetMarginType(int margin, int marginType) {
+    SendMsg(2240, margin, marginType);
 }
 
-
-void wxStyledTextCtrl::SetStyleFor(int length, int style) {
-    SendMsg(SCI_SETSTYLING, length, style);
+// Retrieve the type of a margin.
+int wxStyledTextCtrl::GetMarginType(int margin) {
+    return SendMsg(2241, margin, 0);
 }
 
-
-void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
-    SendMsg(SCI_SETSTYLINGEX, length, (long)styleBytes);
+// Set the width of a margin to a width expressed in pixels.
+void wxStyledTextCtrl::SetMarginWidth(int margin, int pixelWidth) {
+    SendMsg(2242, margin, pixelWidth);
 }
 
-
-void wxStyledTextCtrl::SetLineState(int line, int value) {
-    SendMsg(SCI_SETLINESTATE, line, value);
+// Retrieve the width of a margin in pixels.
+int wxStyledTextCtrl::GetMarginWidth(int margin) {
+    return SendMsg(2243, margin, 0);
 }
 
-
-int  wxStyledTextCtrl::GetLineState(int line) {
-    return SendMsg(SCI_GETLINESTATE, line);
+// Set a mask that determines which markers are displayed in a margin.
+void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
+    SendMsg(2244, margin, mask);
 }
 
-
-//----------------------------------------------------------------------
-// Style Definition
-
-
-static long wxColourAsLong(const wxColour& co) {
-    return (((long)co.Blue()  << 16) |
-            ((long)co.Green() <<  8) |
-            ((long)co.Red()));
+// Retrieve the marker mask of a margin.
+int wxStyledTextCtrl::GetMarginMask(int margin) {
+    return SendMsg(2245, margin, 0);
 }
 
-static wxColour wxColourFromLong(long c) {
-    wxColour clr;
-    clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
-    return clr;
+// Make a margin sensitive or insensitive to mouse clicks.
+void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
+    SendMsg(2246, margin, sensitive);
 }
 
-
-static wxColour wxColourFromSpec(const wxString& spec) {
-    // spec should be #RRGGBB
-    char* junk;
-    int red   = strtol(spec.Mid(1,2), &junk, 16);
-    int green = strtol(spec.Mid(3,2), &junk, 16);
-    int blue  = strtol(spec.Mid(5,2), &junk, 16);
-    return wxColour(red, green, blue);
+// Retrieve the mouse click sensitivity of a margin.
+bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
+    return SendMsg(2247, margin, 0) != 0;
 }
 
-
+// Clear all the styles and make equivalent to the global default style.
 void wxStyledTextCtrl::StyleClearAll() {
-    SendMsg(SCI_STYLECLEARALL);
+    SendMsg(2050, 0, 0);
 }
 
-
-void wxStyledTextCtrl::StyleResetDefault() {
-    SendMsg(SCI_STYLERESETDEFAULT);
+// Set the foreground colour of a style.
+void wxStyledTextCtrl::StyleSetForeground(int style, const wxColour& fore) {
+    SendMsg(2051, style, wxColourAsLong(fore));
 }
 
-
-
-// Extract style settings from a spec-string which is composed of one or
-// more of the following comma separated elements:
-//
-//      bold                    turns on bold
-//      italic                  turns on italics
-//      fore:#RRGGBB            sets the foreground colour
-//      back:#RRGGBB            sets the background colour
-//      face:[facename]         sets the font face name to use
-//      size:[num]              sets the font size in points
-//      eol                     turns on eol filling
-//      underline               turns on underlining
-//
-
-void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
-
-    wxStringTokenizer tkz(spec, ",");
-    while (tkz.HasMoreTokens()) {
-        wxString token = tkz.GetNextToken();
-
-        wxString option = token.BeforeFirst(':');
-        wxString val = token.AfterFirst(':');
-
-        if (option == "bold")
-            StyleSetBold(styleNum, true);
-
-        else if (option == "italic")
-            StyleSetItalic(styleNum, true);
-
-        else if (option == "underline")
-            StyleSetUnderline(styleNum, true);
-
-        else if (option == "eol")
-            StyleSetEOLFilled(styleNum, true);
-
-        else if (option == "size") {
-            long points;
-            if (val.ToLong(&points))
-                StyleSetSize(styleNum, points);
-        }
-
-        else if (option == "face")
-            StyleSetFaceName(styleNum, val);
-
-        else if (option == "fore")
-            StyleSetForeground(styleNum, wxColourFromSpec(val));
-
-        else if (option == "back")
-            StyleSetBackground(styleNum, wxColourFromSpec(val));
-    }
-}
-
-
-void wxStyledTextCtrl::StyleSetForeground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETFORE, styleNum, wxColourAsLong(colour));
-}
-
-
-void wxStyledTextCtrl::StyleSetBackground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETBACK, styleNum, wxColourAsLong(colour));
-}
-
-
-void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
-    int      size     = font.GetPointSize();
-    wxString faceName = font.GetFaceName();
-    bool     bold     = font.GetWeight() == wxBOLD;
-    bool     italic   = font.GetStyle() != wxNORMAL;
-    bool     under    = font.GetUnderlined();
-
-    StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
+// Set the background colour of a style.
+void wxStyledTextCtrl::StyleSetBackground(int style, const wxColour& back) {
+    SendMsg(2052, style, wxColourAsLong(back));
 }
 
-
-void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
-                                        const wxString& faceName,
-                                        bool bold, bool italic,
-                                        bool underline) {
-    StyleSetSize(styleNum, size);
-    StyleSetFaceName(styleNum, faceName);
-    StyleSetBold(styleNum, bold);
-    StyleSetItalic(styleNum, italic);
-    StyleSetUnderline(styleNum, underline);
+// Set a style to be bold or not.
+void wxStyledTextCtrl::StyleSetBold(int style, bool bold) {
+    SendMsg(2053, style, bold);
 }
 
-
-void wxStyledTextCtrl::StyleSetBold(int styleNum, bool bold) {
-    SendMsg(SCI_STYLESETBOLD, styleNum, bold);
+// Set a style to be italic or not.
+void wxStyledTextCtrl::StyleSetItalic(int style, bool italic) {
+    SendMsg(2054, style, italic);
 }
 
-
-void wxStyledTextCtrl::StyleSetItalic(int styleNum, bool italic) {
-    SendMsg(SCI_STYLESETITALIC, styleNum, italic);
+// Set the size of characters of a style.
+void wxStyledTextCtrl::StyleSetSize(int style, int sizePoints) {
+    SendMsg(2055, style, sizePoints);
 }
 
-
-void wxStyledTextCtrl::StyleSetFaceName(int styleNum, const wxString& faceName) {
-    SendMsg(SCI_STYLESETFONT, styleNum, (long)faceName.c_str());
+// Set the font of a style.
+void wxStyledTextCtrl::StyleSetFaceName(int style, const wxString& fontName) {
+    SendMsg(2056, style, (long)fontName.c_str());
 }
 
-
-void wxStyledTextCtrl::StyleSetSize(int styleNum, int pointSize) {
-    SendMsg(SCI_STYLESETSIZE, styleNum, pointSize);
+// Set a style to have its end of line filled or not.
+void wxStyledTextCtrl::StyleSetEOLFilled(int style, bool filled) {
+    SendMsg(2057, style, filled);
 }
 
-
-void wxStyledTextCtrl::StyleSetEOLFilled(int styleNum, bool fillEOL) {
-    SendMsg(SCI_STYLESETEOLFILLED, styleNum, fillEOL);
-}
-
-
-void wxStyledTextCtrl::StyleSetUnderline(int styleNum, bool underline) {
-    SendMsg(SCI_STYLESETUNDERLINE, styleNum, underline);
-}
-
-
-//----------------------------------------------------------------------
-// Margins in the edit area
-
-int wxStyledTextCtrl::GetLeftMargin() {
-    return SendMsg(SCI_GETMARGINLEFT);
-}
-
-
-int wxStyledTextCtrl::GetRightMargin() {
-    return SendMsg(SCI_GETMARGINRIGHT);
-}
-
-
-void wxStyledTextCtrl::SetMargins(int left, int right) {
-    int flag = 0;
-
-    if (right != -1) {
-        SendMsg(SCI_SETMARGINRIGHT, 0, right);
-    }
-    if (left != -1) {
-        SendMsg(SCI_SETMARGINLEFT, 0, left);
-    }
-}
-
-
-//----------------------------------------------------------------------
-// Margins for selection, markers, etc.
-
-void wxStyledTextCtrl::SetMarginType(int margin, int type) {
-    SendMsg(SCI_SETMARGINTYPEN, margin, type);
-}
-
-
-int  wxStyledTextCtrl::GetMarginType(int margin) {
-    return SendMsg(SCI_GETMARGINTYPEN, margin);
-}
-
-
-void wxStyledTextCtrl::SetMarginWidth(int margin, int pixelWidth) {
-    SendMsg(SCI_SETMARGINWIDTHN, margin, pixelWidth);
-}
-
-
-int  wxStyledTextCtrl::GetMarginWidth(int margin) {
-    return SendMsg(SCI_GETMARGINWIDTHN, margin);
+// Reset the default style to its state at startup
+void wxStyledTextCtrl::StyleResetDefault() {
+    SendMsg(2058, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
-    SendMsg(SCI_SETMARGINMASKN, margin, mask);
+// Set a style to be underlined or not.
+void wxStyledTextCtrl::StyleSetUnderline(int style, bool underline) {
+    SendMsg(2059, style, underline);
 }
 
-
-int  wxStyledTextCtrl::GetMarginMask(int margin) {
-    return SendMsg(SCI_GETMARGINMASKN, margin);
+// Set the foreground colour of the selection and whether to use this setting.
+void wxStyledTextCtrl::SetSelForeground(bool useSetting, const wxColour& fore) {
+    SendMsg(2067, useSetting, wxColourAsLong(fore));
 }
 
-
-void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
-    SendMsg(SCI_SETMARGINSENSITIVEN, margin, sensitive);
+// Set the background colour of the selection and whether to use this setting.
+void wxStyledTextCtrl::SetSelBackground(bool useSetting, const wxColour& back) {
+    SendMsg(2068, useSetting, wxColourAsLong(back));
 }
 
-
-bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
-    return SendMsg(SCI_GETMARGINSENSITIVEN, margin) != 0;
+// Set the foreground colour of the caret.
+void wxStyledTextCtrl::SetCaretForeground(const wxColour& fore) {
+    SendMsg(2069, wxColourAsLong(fore), 0);
 }
 
-
-
-
-//----------------------------------------------------------------------
-// Selection and Caret styles
-
-
-void wxStyledTextCtrl::SetSelectionForeground(const wxColour& colour) {
-    SendMsg(SCI_SETSELFORE, 0, wxColourAsLong(colour));
+// When key+modifier combination km is pressed perform msg.
+void wxStyledTextCtrl::CmdKeyAssign(int key, int modifiers, int cmd) {
+                          SendMsg(2070, MAKELONG(key, modifiers), cmd);
 }
 
-
-void wxStyledTextCtrl::SetSelectionBackground(const wxColour& colour) {
-    SendMsg(SCI_SETSELBACK, 0, wxColourAsLong(colour));
+// When key+modifier combination km do nothing.
+void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
+                          SendMsg(2071, MAKELONG(key, modifiers));
 }
 
+// Drop all key mappings.
+void wxStyledTextCtrl::CmdKeyClearAll() {
+    SendMsg(2072, 0, 0);
+}
 
-void wxStyledTextCtrl::SetCaretForeground(const wxColour& colour) {
-    SendMsg(SCI_SETCARETFORE, wxColourAsLong(colour));
+// Set the styles for a segment of the document.
+void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
+                          SendMsg(2073, length, (long)styleBytes);
 }
 
+// Set a style to be visible or not.
+void wxStyledTextCtrl::StyleSetVisible(int style, bool visible) {
+    SendMsg(2074, style, visible);
+}
 
+// Get the time in milliseconds that the caret is on and off.
 int wxStyledTextCtrl::GetCaretPeriod() {
-    return SendMsg(SCI_GETCARETPERIOD);
+    return SendMsg(2075, 0, 0);
 }
 
+// Get the time in milliseconds that the caret is on and off. 0 = steady on.
+void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds) {
+    SendMsg(2076, periodMilliseconds, 0);
+}
 
-void wxStyledTextCtrl::SetCaretPeriod(int milliseconds) {
-    SendMsg(SCI_SETCARETPERIOD, milliseconds);
+// Set the set of characters making up words for when moving or selecting
+// by word.
+void wxStyledTextCtrl::SetWordChars(const wxString& characters) {
+    SendMsg(2077, 0, (long)characters.c_str());
 }
 
+// Start a sequence of actions that is undone and redone as a unit.
+// May be nested.
+void wxStyledTextCtrl::BeginUndoAction() {
+    SendMsg(2078, 0, 0);
+}
 
+// End a sequence of actions that is undone and redone as a unit.
+void wxStyledTextCtrl::EndUndoAction() {
+    SendMsg(2079, 0, 0);
+}
 
-//----------------------------------------------------------------------
-// Other settings
+// Set an indicator to plain, squiggle or TT.
+void wxStyledTextCtrl::IndicatorSetStyle(int indic, int style) {
+    SendMsg(2080, indic, style);
+}
 
+// Retrieve the style of an indicator.
+int wxStyledTextCtrl::IndicatorGetStyle(int indic) {
+    return SendMsg(2081, indic, 0);
+}
 
-void wxStyledTextCtrl::SetBufferedDraw(bool isBuffered) {
-    SendMsg(SCI_SETBUFFEREDDRAW, isBuffered);
+// Set the foreground colour of an indicator.
+void wxStyledTextCtrl::IndicatorSetForeground(int indic, const wxColour& fore) {
+    SendMsg(2082, indic, wxColourAsLong(fore));
 }
 
+// Retrieve the foreground colour of an indicator.
+wxColour wxStyledTextCtrl::IndicatorGetForeground(int indic) {
+    long c = SendMsg(2083, indic, 0);
+    return wxColourFromLong(c);
+}
 
-void wxStyledTextCtrl::SetTabWidth(int numChars) {
-    SendMsg(SCI_SETTABWIDTH, numChars);
+// Divide each styling byte into lexical class bits (default:5) and indicator
+// bits (default:3). If a lexer requires more than 32 lexical states, then this
+// is used to expand the possible states.
+void wxStyledTextCtrl::SetStyleBits(int bits) {
+    SendMsg(2090, bits, 0);
 }
 
+// Retrieve number of bits in style bytes used to hold the lexical state.
+int wxStyledTextCtrl::GetStyleBits() {
+    return SendMsg(2091, 0, 0);
+}
 
-void wxStyledTextCtrl::SetIndent(int numChars) {
-    SendMsg(SCI_SETINDENT, numChars);
+// Used to hold extra styling information for each line.
+void wxStyledTextCtrl::SetLineState(int line, int state) {
+    SendMsg(2092, line, state);
 }
 
+// Retrieve the extra styling information for a line.
+int wxStyledTextCtrl::GetLineState(int line) {
+    return SendMsg(2093, line, 0);
+}
 
-void wxStyledTextCtrl::SetUseTabs(bool usetabs) {
-    SendMsg(SCI_SETUSETABS, usetabs);
+// Retrieve the last line number that has line state.
+int wxStyledTextCtrl::GetMaxLineState() {
+    return SendMsg(2094, 0, 0);
 }
 
+// Display a auto-completion list.
+// The lenEntered parameter indicates how many characters before
+// the caret should be used to provide context.
+void wxStyledTextCtrl::AutoCompShow(int lenEntered, const wxString& itemList) {
+    SendMsg(2100, lenEntered, (long)itemList.c_str());
+}
 
-void wxStyledTextCtrl::SetLineIndentation(int line, int indentation) {
-    SendMsg(SCI_SETLINEINDENTATION, line, indentation);
+// Remove the auto-completion list from the screen.
+void wxStyledTextCtrl::AutoCompCancel() {
+    SendMsg(2101, 0, 0);
 }
 
+// Is there an auto-completion list visible?
+bool wxStyledTextCtrl::AutoCompActive() {
+    return SendMsg(2102, 0, 0) != 0;
+}
 
-int wxStyledTextCtrl:: GetLineIndentation(int line) {
-    return SendMsg(SCI_GETLINEINDENTATION, line);
+// Retrieve the position of the caret when the auto-completion list was
+// displayed.
+int wxStyledTextCtrl::AutoCompPosStart() {
+    return SendMsg(2103, 0, 0);
 }
 
+// User has selected an item so remove the list and insert the selection.
+void wxStyledTextCtrl::AutoCompComplete() {
+    SendMsg(2104, 0, 0);
+}
 
-int  wxStyledTextCtrl::GetLineIndentationPos(int line) {
-    return SendMsg(SCI_GETLINEINDENTPOSITION, line);
+// Define a set of character that when typed cancel the auto-completion list.
+void wxStyledTextCtrl::AutoCompStops(const wxString& characterSet) {
+    SendMsg(2105, 0, (long)characterSet.c_str());
 }
 
+// Change the separator character in the string setting up an auto-completion
+// list. Default is space but can be changed if items contain space.
+void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter) {
+    SendMsg(2106, separatorCharacter, 0);
+}
 
-void wxStyledTextCtrl::SetWordChars(const wxString& wordChars) {
-    SendMsg(SCI_SETTABWIDTH, 0, (long)wordChars.c_str());
+// Retrieve the auto-completion list separator character.
+int wxStyledTextCtrl::AutoCompGetSeparator() {
+    return SendMsg(2107, 0, 0);
 }
 
+// Select the item in the auto-completion list that starts with a string.
+void wxStyledTextCtrl::AutoCompSelect(const wxString& text) {
+    SendMsg(2108, 0, (long)text.c_str());
+}
 
-void wxStyledTextCtrl::SetUsePop(bool usepopup) {
-    SendMsg(SCI_USEPOPUP, usepopup);
+// Should the auto-completion list be cancelled if the user backspaces to a
+// position before where the box was created.
+void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel) {
+    SendMsg(2110, cancel, 0);
 }
 
+// Retrieve whether auto-completion cancelled by backspacing before start.
+bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
+    return SendMsg(2111, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Brace highlighting
+// Define a set of character that when typed fills up the selected word.
+void wxStyledTextCtrl::AutoCompSetFillUps(const wxString& characterSet) {
+    SendMsg(2112, 0, (long)characterSet.c_str());
+}
 
+// Should a single item auto-completion list automatically choose the item.
+void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle) {
+    SendMsg(2113, chooseSingle, 0);
+}
 
-void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
-    SendMsg(SCI_BRACEHIGHLIGHT, pos1, pos2);
+// Retrieve whether a single item auto-completion list automatically choose the item.
+bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
+    return SendMsg(2114, 0, 0) != 0;
 }
 
+// Set whether case is significant when performing auto-completion searches.
+void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase) {
+    SendMsg(2115, ignoreCase, 0);
+}
 
-void wxStyledTextCtrl::BraceBadlight(int pos) {
-    SendMsg(SCI_BRACEBADLIGHT, pos);
+// Retrieve state of ignore case flag.
+bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
+    return SendMsg(2116, 0, 0) != 0;
 }
 
+// Set the number of spaces used for one level of indentation.
+void wxStyledTextCtrl::SetIndent(int indentSize) {
+    SendMsg(2122, indentSize, 0);
+}
 
-int wxStyledTextCtrl::BraceMatch(int pos, int maxReStyle) {
-    return SendMsg(SCI_BRACEMATCH, pos, maxReStyle);
+// Retrieve indentation size.
+int wxStyledTextCtrl::GetIndent() {
+    return SendMsg(2123, 0, 0);
 }
 
+// Indentation will only use space characters if useTabs is false, otherwise
+// it will use a combination of tabs and spaces.
+void wxStyledTextCtrl::SetUseTabs(bool useTabs) {
+    SendMsg(2124, useTabs, 0);
+}
 
+// Retrieve whether tabs will be used in indentation.
+bool wxStyledTextCtrl::GetUseTabs() {
+    return SendMsg(2125, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Markers
+// Change the indentation of a line to a number of columns.
+void wxStyledTextCtrl::SetLineIndentation(int line, int indentSize) {
+    SendMsg(2126, line, indentSize);
+}
 
-void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
-                                          const wxColour& foreground,
-                                          const wxColour& background) {
-    MarkerSetType(markerNumber, markerSymbol);
-    MarkerSetForeground(markerNumber, foreground);
-    MarkerSetBackground(markerNumber, background);
+// Retrieve the number of columns that a line is indented.
+int wxStyledTextCtrl::GetLineIndentation(int line) {
+    return SendMsg(2127, line, 0);
 }
 
+// Retrieve the position before the first non indentation character on a line.
+int wxStyledTextCtrl::GetLineIndentPosition(int line) {
+    return SendMsg(2128, line, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetType(int markerNumber, int markerSymbol) {
-    SendMsg(SCI_MARKERDEFINE, markerNumber, markerSymbol);
+// Retrieve the column number of a position, taking tab width into account.
+int wxStyledTextCtrl::GetColumn(int pos) {
+    return SendMsg(2129, pos, 0);
 }
 
+// Show or hide the horizontal scroll bar.
+void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show) {
+    SendMsg(2130, show, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETFORE, markerNumber, wxColourAsLong(colour));
+// Is the horizontal scroll bar visible?
+bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
+    return SendMsg(2131, 0, 0) != 0;
 }
 
+// Show or hide indentation guides.
+void wxStyledTextCtrl::SetIndentationGuides(bool show) {
+    SendMsg(2132, show, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETBACK, markerNumber, wxColourAsLong(colour));
+// Are the indentation guides visible?
+bool wxStyledTextCtrl::GetIndentationGuides() {
+    return SendMsg(2133, 0, 0) != 0;
 }
 
+// Set the highlighted indentation guide column.
+// 0 = no highlighted guide.
+void wxStyledTextCtrl::SetHighlightGuide(int column) {
+    SendMsg(2134, column, 0);
+}
 
-int wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
-    return SendMsg(SCI_MARKERADD, line, markerNumber);
+// Get the highlighted indentation guide column.
+int wxStyledTextCtrl::GetHighlightGuide() {
+    return SendMsg(2135, 0, 0);
 }
 
+// Get the position after the last visible characters on a line.
+int wxStyledTextCtrl::GetLineEndPosition(int line) {
+    return SendMsg(2136, line, 0);
+}
 
-void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
-    SendMsg(SCI_MARKERDELETE, line, markerNumber);
+// Get the code page used to interpret the bytes of the document as characters.
+int wxStyledTextCtrl::GetCodePage() {
+    return SendMsg(2137, 0, 0);
 }
 
+// Get the foreground colour of the caret.
+wxColour wxStyledTextCtrl::GetCaretForeground() {
+    long c = SendMsg(2138, 0, 0);
+    return wxColourFromLong(c);
+}
 
-void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
-    SendMsg(SCI_MARKERDELETEALL, markerNumber);
+// In read-only mode?
+bool wxStyledTextCtrl::GetReadOnly() {
+    return SendMsg(2140, 0, 0) != 0;
 }
 
+// Sets the position of the caret.
+void wxStyledTextCtrl::SetCurrentPos(int pos) {
+    SendMsg(2141, pos, 0);
+}
 
-int wxStyledTextCtrl::MarkerGet(int line) {
-    return SendMsg(SCI_MARKERGET);
+// Sets the position that starts the selection - this becomes the anchor.
+void wxStyledTextCtrl::SetSelectionStart(int pos) {
+    SendMsg(2142, pos, 0);
 }
 
+// Returns the position at the start of the selection.
+int wxStyledTextCtrl::GetSelectionStart() {
+    return SendMsg(2143, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerGetNextLine(int lineStart, int markerMask) {
-    return SendMsg(SCI_MARKERNEXT, lineStart, markerMask);
+// Sets the position that ends the selection - this becomes the currentPosition.
+void wxStyledTextCtrl::SetSelectionEnd(int pos) {
+    SendMsg(2144, pos, 0);
 }
 
+// Returns the position at the end of the selection.
+int wxStyledTextCtrl::GetSelectionEnd() {
+    return SendMsg(2145, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerGetPrevLine(int lineStart, int markerMask) {
-//    return SendMsg(SCI_MARKERPREV, lineStart, markerMask);
-    return 0;
+// Sets the print magnification added to the point size of each style for printing.
+void wxStyledTextCtrl::SetPrintMagnification(int magnification) {
+    SendMsg(2146, magnification, 0);
 }
 
+// Returns the print magnification.
+int wxStyledTextCtrl::GetPrintMagnification() {
+    return SendMsg(2147, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
-    return SendMsg(SCI_MARKERLINEFROMHANDLE, handle);
+// Modify colours when printing for clearer printed text.
+void wxStyledTextCtrl::SetPrintColourMode(int mode) {
+    SendMsg(2148, mode, 0);
 }
 
+// Returns the print colour mode.
+int wxStyledTextCtrl::GetPrintColourMode() {
+    return SendMsg(2149, 0, 0);
+}
 
-void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
-    SendMsg(SCI_MARKERDELETEHANDLE, handle);
+// Find some text in the document.
+int wxStyledTextCtrl::FindText(int minPos, int maxPos,
+                               const wxString& text,
+                               bool caseSensitive, bool wholeWord) {
+                     TextToFind  ft;
+                     int         flags = 0;
+
+                     flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
+                     flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
+                     ft.chrg.cpMin = minPos;
+                     ft.chrg.cpMax = maxPos;
+                     ft.lpstrText = (char*)text.c_str();
+
+                     return SendMsg(2150, flags, (long)&ft);
+}
+
+// On Windows will draw the document into a display context such as a printer.
+ int wxStyledTextCtrl::FormatRange(bool   doDraw,
+                                int    startPos,
+                                int    endPos,
+                                wxDC*  draw,
+                                wxDC*  target,  // Why does it use two? Can they be the same?
+                                wxRect renderRect,
+                                wxRect pageRect) {
+                            RangeToFormat fr;
+
+                            fr.hdc = draw;
+                            fr.hdcTarget = target;
+                            fr.rc.top = renderRect.GetTop();
+                            fr.rc.left = renderRect.GetLeft();
+                            fr.rc.right = renderRect.GetRight();
+                            fr.rc.bottom = renderRect.GetBottom();
+                            fr.rcPage.top = pageRect.GetTop();
+                            fr.rcPage.left = pageRect.GetLeft();
+                            fr.rcPage.right = pageRect.GetRight();
+                            fr.rcPage.bottom = pageRect.GetBottom();
+                            fr.chrg.cpMin = startPos;
+                            fr.chrg.cpMax = endPos;
+
+                            return SendMsg(2151, doDraw, (long)&fr);
+}
+
+// Retrieve the line at the top of the display.
+int wxStyledTextCtrl::GetFirstVisibleLine() {
+    return SendMsg(2152, 0, 0);
 }
 
+// Retrieve the contents of a line.
+wxString wxStyledTextCtrl::GetLine(int line) {
+                       wxString text;
+                       int len = LineLength(line);
+                       char* buf = text.GetWriteBuf(len+1);
 
+                       int pos = SendMsg(2153, line, (long)buf);
+                       text.UngetWriteBuf();
 
-//----------------------------------------------------------------------
-// Indicators
+                       return text;
+}
+
+// Returns the number of lines in the document. There is always at least one.
+int wxStyledTextCtrl::GetLineCount() {
+    return SendMsg(2154, 0, 0);
+}
 
+// Sets the size in pixels of the left margin.
+void wxStyledTextCtrl::SetMarginLeft(int width) {
+    SendMsg(2155, 0, width);
+}
 
-void wxStyledTextCtrl::IndicatorSetStyle(int indicNum, int indicStyle) {
-    SendMsg(SCI_INDICSETSTYLE, indicNum, indicStyle);
+// Returns the size in pixels of the left margin.
+int wxStyledTextCtrl::GetMarginLeft() {
+    return SendMsg(2156, 0, 0);
 }
 
+// Sets the size in pixels of the right margin.
+void wxStyledTextCtrl::SetMarginRight(int width) {
+    SendMsg(2157, 0, width);
+}
 
-int wxStyledTextCtrl::IndicatorGetStyle(int indicNum) {
-    return SendMsg(SCI_INDICGETSTYLE, indicNum);
+// Returns the size in pixels of the right margin.
+int wxStyledTextCtrl::GetMarginRight() {
+    return SendMsg(2158, 0, 0);
 }
 
+// Is the document different from when it was last saved?
+bool wxStyledTextCtrl::GetModify() {
+    return SendMsg(2159, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::IndicatorSetColour(int indicNum, const wxColour& colour) {
-    SendMsg(SCI_INDICSETFORE, indicNum, wxColourAsLong(colour));
+// Select a range of text.
+void wxStyledTextCtrl::SetSelection(int start, int end) {
+    SendMsg(2160, start, end);
 }
 
+// Retrieve the selected text.
+wxString wxStyledTextCtrl::GetSelectedText() {
+                            wxString text;
+                            int   start;
+                            int   end;
 
+                            GetSelection(&start, &end);
+                            int   len  = end - start;
+                            char* buff = text.GetWriteBuf(len+1);
 
-//----------------------------------------------------------------------
-// Auto completion
+                            SendMsg(2161, 0, (long)buff);
+                            text.UngetWriteBuf();
+                            return text;
+}
 
+// Retrieve a range of text.
+wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
+                            wxString text;
+                            int   len  = endPos - startPos;
+                            char* buff = text.GetWriteBuf(len+1);
+                            TextRange tr;
+                            tr.lpstrText = buff;
+                            tr.chrg.cpMin = startPos;
+                            tr.chrg.cpMax = endPos;
 
-void wxStyledTextCtrl::AutoCompShow(const wxString& listOfWords) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)listOfWords.c_str());
+                            SendMsg(2162, 0, (long)&tr);
+                            text.UngetWriteBuf();
+                            return text;
 }
 
+// Draw the selection in normal style or with selection highlighted.
+void wxStyledTextCtrl::HideSelection(bool normal) {
+    SendMsg(2163, normal, 0);
+}
 
-void wxStyledTextCtrl::AutoCompCancel() {
-    SendMsg(SCI_AUTOCCANCEL);
+// Retrieve the line containing a position.
+int wxStyledTextCtrl::LineFromPosition(int pos) {
+    return SendMsg(2166, pos, 0);
 }
 
+// Retrieve the position at the start of a line.
+int wxStyledTextCtrl::PositionFromLine(int line) {
+    return SendMsg(2167, line, 0);
+}
 
-bool wxStyledTextCtrl::AutoCompActive() {
-    return SendMsg(SCI_AUTOCACTIVE) != 0;
+// Scroll horizontally and vertically.
+void wxStyledTextCtrl::LineScroll(int columns, int lines) {
+    SendMsg(2168, columns, lines);
 }
 
+// Ensure the caret is visible.
+void wxStyledTextCtrl::EnsureCaretVisible() {
+    SendMsg(2169, 0, 0);
+}
 
-int wxStyledTextCtrl::AutoCompPosAtStart() {
-    return SendMsg(SCI_AUTOCPOSSTART);
+// Replace the selected text with the argument text.
+void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
+    SendMsg(2170, 0, (long)text.c_str());
 }
 
+// Set to read only or read write.
+void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
+    SendMsg(2171, readOnly, 0);
+}
 
-void wxStyledTextCtrl::AutoCompComplete() {
-    SendMsg(SCI_AUTOCCOMPLETE);
+// Will a paste succeed?
+bool wxStyledTextCtrl::CanPaste() {
+    return SendMsg(2173, 0, 0) != 0;
 }
 
+// Are there any undoable actions in the undo history.
+bool wxStyledTextCtrl::CanUndo() {
+    return SendMsg(2174, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::AutoCompStopChars(const wxString& stopChars) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)stopChars.c_str());
+// Delete the undo history.
+void wxStyledTextCtrl::EmptyUndoBuffer() {
+    SendMsg(2175, 0, 0);
 }
 
+// Undo one action in the undo history.
+void wxStyledTextCtrl::Undo() {
+    SendMsg(2176, 0, 0);
+}
 
-void wxStyledTextCtrl::AutoCompSetSeparator(char separator) {
-    SendMsg(SCI_AUTOCSETSEPARATOR, separator);
+// Cut the selection to the clipboard.
+void wxStyledTextCtrl::Cut() {
+    SendMsg(2177, 0, 0);
 }
 
+// Copy the selection to the clipboard.
+void wxStyledTextCtrl::Copy() {
+    SendMsg(2178, 0, 0);
+}
 
-char wxStyledTextCtrl::AutoCompGetSeparator() {
-    return SendMsg(SCI_AUTOCGETSEPARATOR);
+// Paste the contents of the clipboard into the document replacing the selection.
+void wxStyledTextCtrl::Paste() {
+    SendMsg(2179, 0, 0);
 }
 
+// Clear the selection.
+void wxStyledTextCtrl::Clear() {
+    SendMsg(2180, 0, 0);
+}
 
-void wxStyledTextCtrl::AutoCompSelect(const wxString& stringtoselect) {
-    SendMsg(SCI_AUTOCSELECT, (long)stringtoselect.c_str());
+// Replace the contents of the document with the argument text.
+void wxStyledTextCtrl::SetText(const wxString& text) {
+    SendMsg(2181, 0, (long)text.c_str());
 }
 
+// Retrieve all the text in the document.
+wxString wxStyledTextCtrl::GetText() {
+                        wxString text;
+                        int   len  = GetTextLength();
+                        char* buff = text.GetWriteBuf(len+1);
 
-//----------------------------------------------------------------------
-// Call tips
+                        SendMsg(2182, len, (long)buff);
+                        buff[len] = 0;
+                        text.UngetWriteBuf();
+                        return text;
+}
 
-void wxStyledTextCtrl::CallTipShow(int pos, const wxString& text) {
-    SendMsg(SCI_CALLTIPSHOW, pos, (long)text.c_str());
+// Retrieve the number of characters in the document.
+int wxStyledTextCtrl::GetTextLength() {
+    return SendMsg(2183, 0, 0);
 }
 
+// Set to overtype (true) or insert mode
+void wxStyledTextCtrl::SetOvertype(bool overtype) {
+    SendMsg(2186, overtype, 0);
+}
 
-void wxStyledTextCtrl::CallTipCancel() {
-    SendMsg(SCI_CALLTIPCANCEL);
+// Returns true if overtype mode is active otherwise false is returned.
+bool wxStyledTextCtrl::GetOvertype() {
+    return SendMsg(2187, 0, 0) != 0;
 }
 
+// Show a call tip containing a definition near position pos.
+void wxStyledTextCtrl::CallTipShow(int pos, const wxString& definition) {
+    SendMsg(2200, pos, (long)definition.c_str());
+}
 
-bool wxStyledTextCtrl::CallTipActive() {
-    return SendMsg(SCI_CALLTIPACTIVE) != 0;
+// Remove the call tip from the screen.
+void wxStyledTextCtrl::CallTipCancel() {
+    SendMsg(2201, 0, 0);
 }
 
+// Is there an active call tip?
+bool wxStyledTextCtrl::CallTipActive() {
+    return SendMsg(2202, 0, 0) != 0;
+}
 
+// Retrieve the position where the caret was before displaying the call tip.
 int wxStyledTextCtrl::CallTipPosAtStart() {
-    return SendMsg(SCI_CALLTIPPOSSTART);
+    return SendMsg(2203, 0, 0);
 }
 
-
+// Highlight a segment of the definition.
 void wxStyledTextCtrl::CallTipSetHighlight(int start, int end) {
-    SendMsg(SCI_CALLTIPSETHLT, start, end);
+    SendMsg(2204, start, end);
 }
 
+// Set the background colour for the call tip.
+void wxStyledTextCtrl::CallTipSetBackground(const wxColour& back) {
+    SendMsg(2205, wxColourAsLong(back), 0);
+}
 
-void wxStyledTextCtrl::CallTipSetBackground(const wxColour& colour) {
-    SendMsg(SCI_CALLTIPSETBACK, wxColourAsLong(colour));
+// Find the display line of a document line taking hidden lines into account.
+int wxStyledTextCtrl::VisibleFromDocLine(int line) {
+    return SendMsg(2220, line, 0);
 }
 
+// Find the document line of a display line taking hidden lines into account.
+int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay) {
+    return SendMsg(2221, lineDisplay, 0);
+}
 
-//----------------------------------------------------------------------
-// Key bindings
+// Set the fold level of a line.
+// This encodes an integer level along with flags indicating whether the
+// line is a header and whether it is effectively white space.
+void wxStyledTextCtrl::SetFoldLevel(int line, int level) {
+    SendMsg(2222, line, level);
+}
 
-#define MAKELONG(a, b) ((a) | ((b) << 16))
+// Retrieve the fold level of a line.
+int wxStyledTextCtrl::GetFoldLevel(int line) {
+    return SendMsg(2223, line, 0);
+}
 
-void wxStyledTextCtrl::CmdKeyAssign(int key, int modifiers, int cmd) {
-    SendMsg(SCI_ASSIGNCMDKEY, MAKELONG(key, modifiers), cmd);
+// Find the last child line of a header line.
+int wxStyledTextCtrl::GetLastChild(int line, int level) {
+    return SendMsg(2224, line, level);
 }
 
+// Find the parent line of a child line.
+int wxStyledTextCtrl::GetFoldParent(int line) {
+    return SendMsg(2225, line, 0);
+}
 
-void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
-    SendMsg(SCI_CLEARCMDKEY, MAKELONG(key, modifiers));
+// Make a range of lines visible.
+void wxStyledTextCtrl::ShowLines(int lineStart, int lineEnd) {
+    SendMsg(2226, lineStart, lineEnd);
 }
 
+// Make a range of lines invisible.
+void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
+    SendMsg(2227, lineStart, lineEnd);
+}
 
-void wxStyledTextCtrl::CmdKeyClearAll() {
-    SendMsg(SCI_CLEARALLCMDKEYS);
+// Is a line visible?
+bool wxStyledTextCtrl::GetLineVisible(int line) {
+    return SendMsg(2228, line, 0) != 0;
 }
 
+// Show the children of a header line.
+void wxStyledTextCtrl::SetFoldExpanded(int line, bool expanded) {
+    SendMsg(2229, line, expanded);
+}
 
-void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
-    SendMsg(cmd);
+// Is a header line expanded?
+bool wxStyledTextCtrl::GetFoldExpanded(int line) {
+    return SendMsg(2230, line, 0) != 0;
 }
 
+// Switch a header line between expanded and contracted.
+void wxStyledTextCtrl::ToggleFold(int line) {
+    SendMsg(2231, line, 0);
+}
 
+// Ensure a particular line is visible by expanding any header line hiding it.
+void wxStyledTextCtrl::EnsureVisible(int line) {
+    SendMsg(2232, line, 0);
+}
 
-//----------------------------------------------------------------------
-// Print formatting
-
-int
-wxStyledTextCtrl::FormatRange(bool   doDraw,
-                                    int    startPos,
-                                    int    endPos,
-                                    wxDC*  draw,
-                                    wxDC*  target,  // Why does it use two? Can they be the same?
-                                    wxRect renderRect,
-                                    wxRect pageRect) {
-    RangeToFormat fr;
-
-    fr.hdc = draw;
-    fr.hdcTarget = target;
-    fr.rc.top = renderRect.GetTop();
-    fr.rc.left = renderRect.GetLeft();
-    fr.rc.right = renderRect.GetRight();
-    fr.rc.bottom = renderRect.GetBottom();
-    fr.rcPage.top = pageRect.GetTop();
-    fr.rcPage.left = pageRect.GetLeft();
-    fr.rcPage.right = pageRect.GetRight();
-    fr.rcPage.bottom = pageRect.GetBottom();
-    fr.chrg.cpMin = startPos;
-    fr.chrg.cpMax = endPos;
-
-    return SendMsg(SCI_FORMATRANGE, doDraw, (long)&fr);
+// Set some debugging options for folding
+void wxStyledTextCtrl::SetFoldFlags(int flags) {
+    SendMsg(2233, flags, 0);
 }
 
+// How many characters are on a line, not including end of line characters.
+int wxStyledTextCtrl::LineLength(int line) {
+    return SendMsg(2350, line, 0);
+}
 
-//----------------------------------------------------------------------
-// Document Sharing
+// Highlight the characters at two positions.
+void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
+    SendMsg(2351, pos1, pos2);
+}
 
-void* wxStyledTextCtrl::GetDocument() {
-    return (void*)SendMsg(SCI_GETDOCPOINTER);
+// Highlight the character at a position indicating there is no matching brace.
+void wxStyledTextCtrl::BraceBadLight(int pos) {
+    SendMsg(2352, pos, 0);
 }
 
+// Find the position of a matching brace or INVALID_POSITION if no match.
+int wxStyledTextCtrl::BraceMatch(int pos) {
+    return SendMsg(2353, pos, 0);
+}
 
-void wxStyledTextCtrl::SetDocument(void* document) {
-    SendMsg(SCI_SETDOCPOINTER, 0, (long)document);
+// Are the end of line characters visible.
+bool wxStyledTextCtrl::GetViewEOL() {
+    return SendMsg(2355, 0, 0) != 0;
 }
 
+// Make the end of line characters visible or invisible
+void wxStyledTextCtrl::SetViewEOL(bool visible) {
+    SendMsg(2356, visible, 0);
+}
 
-//----------------------------------------------------------------------
-// Folding
+// Retrieve a pointer to the document object.
+void* wxStyledTextCtrl::GetDocPointer() {
+                           return (void*)SendMsg(2357);
+}
 
-int  wxStyledTextCtrl::VisibleFromDocLine(int docLine) {
-    return SendMsg(SCI_VISIBLEFROMDOCLINE, docLine);
+// Change the document object used.
+void wxStyledTextCtrl::SetDocPointer(void* docPointer) {
+                           SendMsg(2358, (long)docPointer);
 }
 
+// Set which document modification events are sent to the container.
+void wxStyledTextCtrl::SetModEventMask(int mask) {
+    SendMsg(2359, mask, 0);
+}
 
-int  wxStyledTextCtrl::DocLineFromVisible(int displayLine) {
-    return SendMsg(SCI_DOCLINEFROMVISIBLE, displayLine);
+// Retrieve the column number which text should be kept within.
+int wxStyledTextCtrl::GetEdgeColumn() {
+    return SendMsg(2360, 0, 0);
 }
 
+// Set the column number of the edge.
+// If text goes past the edge then it is highlighted.
+void wxStyledTextCtrl::SetEdgeColumn(int column) {
+    SendMsg(2361, column, 0);
+}
 
-int  wxStyledTextCtrl::SetFoldLevel(int line, int level) {
-    return SendMsg(SCI_SETFOLDLEVEL, line, level);
+// Retrieve the edge highlight mode.
+int wxStyledTextCtrl::GetEdgeMode() {
+    return SendMsg(2362, 0, 0);
 }
 
+// The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
+// goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
+void wxStyledTextCtrl::SetEdgeMode(int mode) {
+    SendMsg(2363, mode, 0);
+}
 
-int  wxStyledTextCtrl::GetFoldLevel(int line) {
-    return SendMsg(SCI_GETFOLDLEVEL,  line);
+// Retrieve the colour used in edge indication.
+wxColour wxStyledTextCtrl::GetEdgeColour() {
+    long c = SendMsg(2364, 0, 0);
+    return wxColourFromLong(c);
 }
 
+// Change the colour used in edge indication.
+void wxStyledTextCtrl::SetEdgeColour(const wxColour& edgeColour) {
+    SendMsg(2365, wxColourAsLong(edgeColour), 0);
+}
 
-int  wxStyledTextCtrl::GetLastChild(int line, int level) {
-    return SendMsg(SCI_GETLASTCHILD,  line, level);
+// Sets the current caret position to be the search anchor.
+void wxStyledTextCtrl::SearchAnchor() {
+    SendMsg(2366, 0, 0);
 }
 
+// Find some text starting at the search anchor.
+int wxStyledTextCtrl::SearchNext(int flags, const wxString& text) {
+    return SendMsg(2367, flags, (long)text.c_str());
+}
 
-int  wxStyledTextCtrl::GetFoldParent(int line) {
-    return SendMsg(SCI_GETFOLDPARENT,  line);
+// Find some text starting at the search anchor and moving backwards.
+int wxStyledTextCtrl::SearchPrev(int flags, const wxString& text) {
+    return SendMsg(2368, flags, (long)text.c_str());
 }
 
+// Set the way the line the caret is on is kept visible.
+void wxStyledTextCtrl::SetCaretPolicy(int caretPolicy, int caretSlop) {
+    SendMsg(2369, caretPolicy, caretSlop);
+}
 
-void wxStyledTextCtrl::ShowLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_SHOWLINES, lineStart, lineEnd);
+// Retrieves the number of lines completely visible.
+int wxStyledTextCtrl::LinesOnScreen() {
+    return SendMsg(2370, 0, 0);
 }
 
+// Set whether a pop up menu is displayed automatically when the user presses
+// the wrong mouse button.
+void wxStyledTextCtrl::UsePopUp(bool allowPopUp) {
+    SendMsg(2371, allowPopUp, 0);
+}
 
-void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_HIDELINES, lineStart, lineEnd);
+// Is the selection a rectangular. The alternative is the more common stream selection.
+bool wxStyledTextCtrl::SelectionIsRectangle() {
+    return SendMsg(2372, 0, 0) != 0;
 }
 
+// Set the zoom level. This number of points is added to the size of all fonts.
+// It may be positive to magnify or negative to reduce.
+void wxStyledTextCtrl::SetZoom(int zoom) {
+    SendMsg(2373, zoom, 0);
+}
 
-bool wxStyledTextCtrl::GetLineVisible(int line) {
-    return SendMsg(SCI_GETLINEVISIBLE, line) != 0;
+// Retrieve the zoom level.
+int wxStyledTextCtrl::GetZoom() {
+    return SendMsg(2374, 0, 0);
 }
 
+// Create a new document object.
+// Starts with reference count of 1 and not selected into editor.
+void* wxStyledTextCtrl::CreateDocument() {
+                           return (void*)SendMsg(2375);
+}
 
-void wxStyledTextCtrl::SetFoldExpanded(int line, bool expanded) {
-    SendMsg(SCI_SETFOLDEXPANDED, line, expanded);
+// Extend life of document.
+void wxStyledTextCtrl::AddRefDocument(void* docPointer) {
+                           SendMsg(2376, (long)docPointer);
 }
 
+// Release a reference to the document, deleting document if it fades to black.
+void wxStyledTextCtrl::ReleaseDocument(void* docPointer) {
+                           SendMsg(2377, (long)docPointer);
+}
 
-bool wxStyledTextCtrl::GetFoldExpanded(int line) {
-    return SendMsg(SCI_GETFOLDEXPANDED, line) != 0;
+// Get which document modification events are sent to the container.
+int wxStyledTextCtrl::GetModEventMask() {
+    return SendMsg(2378, 0, 0);
 }
 
+// Start notifying the container of all key presses and commands.
+void wxStyledTextCtrl::StartRecord() {
+    SendMsg(3001, 0, 0);
+}
 
-void wxStyledTextCtrl::ToggleFold(int line) {
-    SendMsg(SCI_TOGGLEFOLD, line);
+// Stop notifying the container of all key presses and commands.
+void wxStyledTextCtrl::StopRecord() {
+    SendMsg(3002, 0, 0);
 }
 
+// Set the lexing language of the document.
+void wxStyledTextCtrl::SetLexer(int lexer) {
+    SendMsg(4001, lexer, 0);
+}
 
-void wxStyledTextCtrl::EnsureVisible(int line) {
-    SendMsg(SCI_ENSUREVISIBLE, line);
+// Retrieve the lexing language of the document.
+int wxStyledTextCtrl::GetLexer() {
+    return SendMsg(4002, 0, 0);
 }
 
+// Colourise a segment of the document using the current lexing language.
+void wxStyledTextCtrl::Colourise(int start, int end) {
+    SendMsg(4003, start, end);
+}
 
-void wxStyledTextCtrl::SetFoldFlags(int flags) {
-    SendMsg(SCI_SETFOLDFLAGS, flags);
+// Set up a value that may be used by a lexer for some optional feature.
+void wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
+    SendMsg(4004, (long)key.c_str(), (long)value.c_str());
 }
 
+// Set up the key words used by the lexer.
+void wxStyledTextCtrl::SetKeyWords(int keywordSet, const wxString& keyWords) {
+    SendMsg(4005, keywordSet, (long)keyWords.c_str());
+}
 
+// END of generated section
 //----------------------------------------------------------------------
-// Zooming
-
-void wxStyledTextCtrl::ZoomIn() {
-    SendMsg(SCI_ZOOMIN);
-}
 
 
-void wxStyledTextCtrl::ZoomOut() {
-    SendMsg(SCI_ZOOMOUT);
+// Returns the line number of the line with the caret.
+int wxStyledTextCtrl::GetCurrentLine() {
+    int line = LineFromPosition(GetCurrentPos());
+    return line;
 }
 
 
-void wxStyledTextCtrl::SetZoom(int zoom) {
-    SendMsg(SCI_SETZOOM, zoom);
-}
+// Extract style settings from a spec-string which is composed of one or
+// more of the following comma separated elements:
+//
+//      bold                    turns on bold
+//      italic                  turns on italics
+//      fore:#RRGGBB            sets the foreground colour
+//      back:#RRGGBB            sets the background colour
+//      face:[facename]         sets the font face name to use
+//      size:[num]              sets the font size in points
+//      eol                     turns on eol filling
+//      underline               turns on underlining
+//
+void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
+
+    wxStringTokenizer tkz(spec, ",");
+    while (tkz.HasMoreTokens()) {
+        wxString token = tkz.GetNextToken();
 
+        wxString option = token.BeforeFirst(':');
+        wxString val = token.AfterFirst(':');
 
-int  wxStyledTextCtrl::GetZoom() {
-    return SendMsg(SCI_GETZOOM);
-}
+        if (option == "bold")
+            StyleSetBold(styleNum, true);
 
-//----------------------------------------------------------------------
-// Long Lines
+        else if (option == "italic")
+            StyleSetItalic(styleNum, true);
 
-int wxStyledTextCtrl::GetEdgeColumn() {
-    return SendMsg(SCI_GETEDGECOLUMN);
-}
+        else if (option == "underline")
+            StyleSetUnderline(styleNum, true);
 
-void wxStyledTextCtrl::SetEdgeColumn(int column) {
-    SendMsg(SCI_SETEDGECOLUMN, column);
-}
+        else if (option == "eol")
+            StyleSetEOLFilled(styleNum, true);
 
-wxSTC_EDGE wxStyledTextCtrl::GetEdgeMode() {
-    return (wxSTC_EDGE) SendMsg(SCI_GETEDGEMODE);
-}
+        else if (option == "size") {
+            long points;
+            if (val.ToLong(&points))
+                StyleSetSize(styleNum, points);
+        }
 
-void wxStyledTextCtrl::SetEdgeMode(wxSTC_EDGE mode){
-    SendMsg(SCI_SETEDGEMODE, mode);
-}
+        else if (option == "face")
+            StyleSetFaceName(styleNum, val);
 
-wxColour wxStyledTextCtrl::GetEdgeColour() {
-    long c = SendMsg(SCI_GETEDGECOLOUR);
-    return wxColourFromLong(c);
-}
+        else if (option == "fore")
+            StyleSetForeground(styleNum, wxColourFromSpec(val));
 
-void wxStyledTextCtrl::SetEdgeColour(const wxColour& colour) {
-    SendMsg(SCI_SETEDGECOLOUR, wxColourAsLong(colour));
+        else if (option == "back")
+            StyleSetBackground(styleNum, wxColourFromSpec(val));
+    }
 }
 
 
-//----------------------------------------------------------------------
-// Lexer
+// Set style size, face, bold, italic, and underline attributes from
+// a wxFont's attributes.
+void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
+    int      size     = font.GetPointSize();
+    wxString faceName = font.GetFaceName();
+    bool     bold     = font.GetWeight() == wxBOLD;
+    bool     italic   = font.GetStyle() != wxNORMAL;
+    bool     under    = font.GetUnderlined();
 
-void     wxStyledTextCtrl::SetLexer(wxSTC_LEX lexer) {
-    SendMsg(SCI_SETLEXER, lexer);
+    // TODO: add encoding/charset mapping
+    StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
 }
 
+// Set all font style attributes at once.
+void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
+                                        const wxString& faceName,
+                                        bool bold, bool italic,
+                                        bool underline) {
+    StyleSetSize(styleNum, size);
+    StyleSetFaceName(styleNum, faceName);
+    StyleSetBold(styleNum, bold);
+    StyleSetItalic(styleNum, italic);
+    StyleSetUnderline(styleNum, underline);
 
-wxSTC_LEX wxStyledTextCtrl::GetLexer() {
-    return (wxSTC_LEX)SendMsg(SCI_GETLEXER);
+    // TODO: add encoding/charset mapping
 }
 
 
-void     wxStyledTextCtrl::Colourise(int start, int end) {
-    SendMsg(SCI_COLOURISE, start, end);
+// Perform one of the operations defined by the wxSTC_CMD_* constants.
+void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
+    SendMsg(cmd);
 }
 
 
-void     wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
-    SendMsg(SCI_SETPROPERTY, (long)key.c_str(), (long)value.c_str());
+// Set the left and right margin in the edit area, measured in pixels.
+void wxStyledTextCtrl::SetMargins(int left, int right) {
+    SetMarginLeft(left);
+    SetMarginRight(right);
 }
 
 
-void     wxStyledTextCtrl::SetKeywords(int keywordSet, const wxString& keywordList) {
-    SendMsg(SCI_SETKEYWORDS, keywordSet, (long)keywordList.c_str());
+// Retrieve the start and end positions of the current selection.
+void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
+    if (startPos != NULL)
+        *startPos = SendMsg(SCI_GETSELECTIONSTART);
+    if (endPos != NULL)
+        *endPos = SendMsg(SCI_GETSELECTIONEND);
 }
 
 
-
-//----------------------------------------------------------------------
-// Event mask for Modified Event
-
-void wxStyledTextCtrl::SetModEventMask(int mask) {
-    SendMsg(SCI_SETMODEVENTMASK, mask);
+// Retrieve the point in the window where a position is displayed.
+wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
+    int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
+    int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
+    return wxPoint(x, y);
 }
 
 
-//int wxStyledTextCtrl::GetModEventMask() {
-//    return SendMsg(SCI_GETMODEVENTMASK);
-//}
 
 //----------------------------------------------------------------------
 // Event handlers
@@ -1521,6 +1623,9 @@ void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
     case SCN_NEEDSHOWN:
         eventType = wxEVT_STC_NEEDSHOWN;
         break;
+    case SCN_POSCHANGED:
+        eventType = wxEVT_STC_POSCHANGED;
+        break;
     }
     if (eventType) {
         wxStyledTextEvent evt(eventType, GetId());
diff --git a/include/wx/stc/SciLexer.h b/include/wx/stc/SciLexer.h
deleted file mode 100644 (file)
index d869758..0000000
+++ /dev/null
@@ -1,181 +0,0 @@
-// Scintilla source code edit control
-// SciLexer - interface to the added lexer functions in the SciLexer version of the edit control
-// Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#ifndef SCILEXER_H
-#define SCILEXER_H
-
-// SciLexer features - not in standard Scintilla
-
-#define SCLEX_CONTAINER 0
-#define SCLEX_NULL 1
-#define SCLEX_PYTHON 2
-#define SCLEX_CPP 3
-#define SCLEX_HTML 4
-#define SCLEX_XML 5
-#define SCLEX_PERL 6
-#define SCLEX_SQL 7
-#define SCLEX_VB 8
-#define SCLEX_PROPERTIES 9
-#define SCLEX_ERRORLIST 10
-#define SCLEX_MAKEFILE 11
-#define SCLEX_BATCH 12
-#define SCLEX_XCODE 13
-#define SCLEX_LATEX 14
-
-// Lexical states for SCLEX_PYTHON
-#define SCE_P_DEFAULT 0
-#define SCE_P_COMMENTLINE 1
-#define SCE_P_NUMBER 2
-#define SCE_P_STRING 3
-#define SCE_P_CHARACTER 4
-#define SCE_P_WORD 5
-#define SCE_P_TRIPLE 6
-#define SCE_P_TRIPLEDOUBLE 7
-#define SCE_P_CLASSNAME 8
-#define SCE_P_DEFNAME 9
-#define SCE_P_OPERATOR 10
-#define SCE_P_IDENTIFIER 11
-#define SCE_P_COMMENTBLOCK 12
-#define SCE_P_STRINGEOL 13
-
-// Lexical states for SCLEX_CPP, SCLEX_VB
-#define SCE_C_DEFAULT 0
-#define SCE_C_COMMENT 1
-#define SCE_C_COMMENTLINE 2
-#define SCE_C_COMMENTDOC 3
-#define SCE_C_NUMBER 4
-#define SCE_C_WORD 5
-#define SCE_C_STRING 6
-#define SCE_C_CHARACTER 7
-#define SCE_C_UUID 8
-#define SCE_C_PREPROCESSOR 9
-#define SCE_C_OPERATOR 10
-#define SCE_C_IDENTIFIER 11
-#define SCE_C_STRINGEOL 12
-
-// Lexical states for SCLEX_HTML, SCLEX_xML
-#define SCE_H_DEFAULT 0
-#define SCE_H_TAG 1
-#define SCE_H_TAGUNKNOWN 2
-#define SCE_H_ATTRIBUTE 3
-#define SCE_H_ATTRIBUTEUNKNOWN 4
-#define SCE_H_NUMBER 5
-#define SCE_H_DOUBLESTRING 6
-#define SCE_H_SINGLESTRING 7
-#define SCE_H_OTHER 8
-#define SCE_H_COMMENT 9
-#define SCE_H_ENTITY 10
-// XML and ASP
-#define SCE_H_TAGEND 11
-#define SCE_H_XMLSTART 12
-#define SCE_H_XMLEND 13
-#define SCE_H_SCRIPT 14
-#define SCE_H_ASP 15
-#define SCE_H_ASPAT 16
-// Embedded Javascript
-#define SCE_HJ_START 40
-#define SCE_HJ_DEFAULT 41
-#define SCE_HJ_COMMENT 42
-#define SCE_HJ_COMMENTLINE 43
-#define SCE_HJ_COMMENTDOC 44
-#define SCE_HJ_NUMBER 45
-#define SCE_HJ_WORD 46
-#define SCE_HJ_KEYWORD 47
-#define SCE_HJ_DOUBLESTRING 48
-#define SCE_HJ_SINGLESTRING 49
-#define SCE_HJ_SYMBOLS 50
-#define SCE_HJ_STRINGEOL 51
-// ASP Javascript
-#define SCE_HJA_START 55
-#define SCE_HJA_DEFAULT 56
-#define SCE_HJA_COMMENT 57
-#define SCE_HJA_COMMENTLINE 58
-#define SCE_HJA_COMMENTDOC 59
-#define SCE_HJA_NUMBER 60
-#define SCE_HJA_WORD 61
-#define SCE_HJA_KEYWORD 62
-#define SCE_HJA_DOUBLESTRING 63
-#define SCE_HJA_SINGLESTRING 64
-#define SCE_HJA_SYMBOLS 65
-#define SCE_HJA_STRINGEOL 66
-// Embedded VBScript
-#define SCE_HB_START 70
-#define SCE_HB_DEFAULT 71
-#define SCE_HB_COMMENTLINE 72
-#define SCE_HB_NUMBER 73
-#define SCE_HB_WORD 74
-#define SCE_HB_STRING 75
-#define SCE_HB_IDENTIFIER 76
-#define SCE_HB_STRINGEOL 77
-// ASP VBScript
-#define SCE_HBA_START 80
-#define SCE_HBA_DEFAULT 81
-#define SCE_HBA_COMMENTLINE 82
-#define SCE_HBA_NUMBER 83
-#define SCE_HBA_WORD 84
-#define SCE_HBA_STRING 85
-#define SCE_HBA_IDENTIFIER 86
-#define SCE_HBA_STRINGEOL 87
-// Embedded Python
-#define SCE_HP_START 90
-#define SCE_HP_DEFAULT 91
-#define SCE_HP_COMMENTLINE 92
-#define SCE_HP_NUMBER 93
-#define SCE_HP_STRING 94
-#define SCE_HP_CHARACTER 95
-#define SCE_HP_WORD 96
-#define SCE_HP_TRIPLE 97
-#define SCE_HP_TRIPLEDOUBLE 98
-#define SCE_HP_CLASSNAME 99
-#define SCE_HP_DEFNAME 100
-#define SCE_HP_OPERATOR 101
-#define SCE_HP_IDENTIFIER 102
-// ASP Python
-#define SCE_HPA_START 105
-#define SCE_HPA_DEFAULT 106
-#define SCE_HPA_COMMENTLINE 107
-#define SCE_HPA_NUMBER 108
-#define SCE_HPA_STRING 109
-#define SCE_HPA_CHARACTER 110
-#define SCE_HPA_WORD 111
-#define SCE_HPA_TRIPLE 112
-#define SCE_HPA_TRIPLEDOUBLE 113
-#define SCE_HPA_CLASSNAME 114
-#define SCE_HPA_DEFNAME 115
-#define SCE_HPA_OPERATOR 116
-#define SCE_HPA_IDENTIFIER 117
-
-// Lexical states for SCLEX_PERL
-#define SCE_PL_DEFAULT 0
-#define SCE_PL_HERE 1
-#define SCE_PL_COMMENTLINE 2
-#define SCE_PL_POD 3
-#define SCE_PL_NUMBER 4
-#define SCE_PL_WORD 5
-#define SCE_PL_STRING 6
-#define SCE_PL_CHARACTER 7
-#define SCE_PL_PUNCTUATION 8
-#define SCE_PL_PREPROCESSOR 9
-#define SCE_PL_OPERATOR 10
-#define SCE_PL_IDENTIFIER 11
-#define SCE_PL_SCALAR 12
-#define SCE_PL_ARRAY 13
-#define SCE_PL_HASH 14
-#define SCE_PL_SYMBOLTABLE 15
-#define SCE_PL_REF 16
-#define SCE_PL_REGEX 17
-#define SCE_PL_REGSUBST 18
-#define SCE_PL_LONGQUOTE 19
-#define SCE_PL_BACKTICKS 20
-#define SCE_PL_DATASECTION 21
-    
-// Lexical states for SCLEX_LATEX
-#define SCE_L_DEFAULT 0
-#define SCE_L_COMMAND 1
-#define SCE_L_TAG 2
-#define SCE_L_MATH 3
-#define SCE_L_COMMENT 4
-
-#endif
index 659e6f2745da15223be2a89eaf0bdcc820216457..f98e25d714c3ac692e7e1407af477bf779e63c9c 100644 (file)
 
 
 #include <wx/wx.h>
-#include "SciLexer.h"
 
 //----------------------------------------------------------------------
-// constants and stuff
-
-enum wxSTC_UndoType {
-    wxSTC_UndoCollectNone,
-    wxSTC_UndoCollectAutoStart
-};
-
-
-enum wxSTC_EOL {
-    wxSTC_EOL_CRLF,
-    wxSTC_EOL_CR,
-    wxSTC_EOL_LF
-};
-
-enum wxSTC_EDGE {
-    wxSTC_EDGE_NONE,
-    wxSTC_EDGE_LINE,
-    wxSTC_EDGE_BACKGROUND
-};
-
-
-
-const int wxSTC_LEX_STYLE_MAX     = 31;
-const int wxSTC_STYLE_DEFAULT     = 32;
-const int wxSTC_STYLE_LINENUMBER  = 33;
-const int wxSTC_STYLE_BRACELIGHT  = 34;
-const int wxSTC_STYLE_BRACEBAD    = 35;
-const int wxSTC_STYLE_CONTROLCHAR = 36;
-const int wxSTC_STYLE_MAX         = 127;
-const int wxSTC_STYLE_MASK        = 31;
-
-const int wxSTC_MARKER_MAX        = 31;
-const int wxSTC_MARK_CIRCLE       = 0;
-const int wxSTC_MARK_ROUNDRECT    = 1;
-const int wxSTC_MARK_ARROW        = 2;
-const int wxSTC_MARK_SMALLRECT    = 3;
-const int wxSTC_MARK_SHORTARROW   = 4;
-const int wxSTC_MARK_EMPTY        = 5;
-const int wxSTC_MARK_ARROWDOWN    = 6;
-const int wxSTC_MARK_MINUS        = 7;
-const int wxSTC_MARK_PLUS         = 8;
-
-const int wxSTC_MARKNUM_FOLDER    = 30;
-const int wxSTC_MARKNUM_FOLDEROPEN= 31;
-const int wxSTC_MASK_FOLDERS      = ((1 << wxSTC_MARKNUM_FOLDER) | (1 << wxSTC_MARKNUM_FOLDEROPEN));
-
-const int wxSTC_INDIC_MAX         = 7;
-const int wxSTC_INDIC_PLAIN       = 0;
-const int wxSTC_INDIC_SQUIGGLE    = 1;
-const int wxSTC_INDIC_TT          = 2;
-const int wxSTC_INDIC_DIAGONAL    = 3;
-const int wxSTC_INDIC_STRIKE      = 4;
-const int wxSTC_INDIC0_MASK       = 32;
-const int wxSTC_INDIC1_MASK       = 64;
-const int wxSTC_INDIC2_MASK       = 128;
-const int wxSTC_INDICS_MASK       = (wxSTC_INDIC0_MASK | wxSTC_INDIC1_MASK | wxSTC_INDIC2_MASK);
-
-
-const int wxSTC_FOLDLEVELBASE       = 0x0400;
-const int wxSTC_FOLDLEVELWHITEFLAG  = 0x1000;
-const int wxSTC_FOLDLEVELHEADERFLAG = 0x2000;
-const int wxSTC_FOLDLEVELNUMBERMASK = 0x0FFF;
-
-
-// key commands
-enum {
-    wxSTC_CMD_LINEDOWN = 2300,
-    wxSTC_CMD_LINEDOWNEXTEND,
-    wxSTC_CMD_LINEUP,
-    wxSTC_CMD_LINEUPEXTEND,
-    wxSTC_CMD_CHARLEFT,
-    wxSTC_CMD_CHARLEFTEXTEND,
-    wxSTC_CMD_CHARRIGHT,
-    wxSTC_CMD_CHARRIGHTEXTEND,
-    wxSTC_CMD_WORDLEFT,
-    wxSTC_CMD_WORDLEFTEXTEND,
-    wxSTC_CMD_WORDRIGHT,
-    wxSTC_CMD_WORDRIGHTEXTEND,
-    wxSTC_CMD_HOME,
-    wxSTC_CMD_HOMEEXTEND,
-    wxSTC_CMD_LINEEND,
-    wxSTC_CMD_LINEENDEXTEND,
-    wxSTC_CMD_DOCUMENTSTART,
-    wxSTC_CMD_DOCUMENTSTARTEXTEND,
-    wxSTC_CMD_DOCUMENTEND,
-    wxSTC_CMD_DOCUMENTENDEXTEND,
-    wxSTC_CMD_PAGEUP,
-    wxSTC_CMD_PAGEUPEXTEND,
-    wxSTC_CMD_PAGEDOWN,
-    wxSTC_CMD_PAGEDOWNEXTEND,
-    wxSTC_CMD_EDITTOGGLEOVERTYPE,
-    wxSTC_CMD_CANCEL,
-    wxSTC_CMD_DELETEBACK,
-    wxSTC_CMD_TAB,
-    wxSTC_CMD_BACKTAB,
-    wxSTC_CMD_NEWLINE,
-    wxSTC_CMD_FORMFEED,
-    wxSTC_CMD_VCHOME,
-    wxSTC_CMD_VCHOMEEXTEND,
-    wxSTC_CMD_ZOOMIN,
-    wxSTC_CMD_ZOOMOUT,
-    wxSTC_CMD_DELWORDLEFT,
-    wxSTC_CMD_DELWORDRIGHT,
-    wxSTC_CMD_LINECUT,
-    wxSTC_CMD_LINEDELETE,
-    wxSTC_CMD_LINETRANSPOSE,
-    wxSTC_CMD_LOWERCASE,
-    wxSTC_CMD_UPPERCASE,
-    wxSTC_CMD_LINESCROLLDOWN,
-    wxSTC_CMD_LINESCROLLUP
-};
-
-
-enum wxSTC_LEX {
-    wxSTC_LEX_CONTAINER=0,
-    wxSTC_LEX_NULL,
-    wxSTC_LEX_PYTHON,
-    wxSTC_LEX_CPP,
-    wxSTC_LEX_HTML,
-    wxSTC_LEX_XML,
-    wxSTC_LEX_PERL,
-    wxSTC_LEX_SQL,
-    wxSTC_LEX_VB,
-    wxSTC_LEX_PROPERTIES,
-    wxSTC_LEX_ERRORLIST,
-    wxSTC_LEX_MAKEFILE,
-    wxSTC_LEX_BATCH,
-    wxSTC_LEX_XCODE,
-    wxSTC_LEX_LATEX
-};
-
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py.  Do not edit this file.  Edit stc.h.in instead
+//       and regenerate
+
+#define wxSTC_INVALID_POSITION -1
+#define wxSTC_START 2000
+#define wxSTC_OPTIONAL_START 3000
+#define wxSTC_LEXER_START 4000
+#define wxSTC_CMD_REDO 2011
+#define wxSTC_CMD_SELECTALL 2013
+#define wxSTC_WS_INVISIBLE 0
+#define wxSTC_WS_VISIBLEALWAYS 1
+#define wxSTC_WS_VISIBLEAFTERINDENT 2
+#define wxSTC_EOL_CRLF 0
+#define wxSTC_EOL_CR 1
+#define wxSTC_EOL_LF 2
+
+// The SC_CP_UTF8 value can be used to enter Unicode mode.
+// This is the same value as CP_UTF8 in Windows
+#define wxSTC_CP_UTF8 65001
+#define wxSTC_MARKER_MAX 31
+#define wxSTC_MARK_CIRCLE 0
+#define wxSTC_MARK_ROUNDRECT 1
+#define wxSTC_MARK_ARROW 2
+#define wxSTC_MARK_SMALLRECT 3
+#define wxSTC_MARK_SHORTARROW 4
+#define wxSTC_MARK_EMPTY 5
+#define wxSTC_MARK_ARROWDOWN 6
+#define wxSTC_MARK_MINUS 7
+#define wxSTC_MARK_PLUS 8
+#define wxSTC_MARKNUM_FOLDER 30
+#define wxSTC_MARKNUM_FOLDEROPEN 31
+#define wxSTC_MARGIN_SYMBOL 0
+#define wxSTC_MARGIN_NUMBER 1
+#define wxSTC_STYLE_DEFAULT 32
+#define wxSTC_STYLE_LINENUMBER 33
+#define wxSTC_STYLE_BRACELIGHT 34
+#define wxSTC_STYLE_BRACEBAD 35
+#define wxSTC_STYLE_CONTROLCHAR 36
+#define wxSTC_STYLE_INDENTGUIDE 37
+#define wxSTC_STYLE_MAX 127
+
+// Character set identifiers are used in StyleSetCharacterSet.
+// The values are the same as the Windows *_CHARSET values.
+#define wxSTC_CHARSET_ANSI 0
+#define wxSTC_CHARSET_DEFAULT 1
+#define wxSTC_CHARSET_BALTIC 186
+#define wxSTC_CHARSET_CHINESEBIG5 136
+#define wxSTC_CHARSET_EASTEUROPE 238
+#define wxSTC_CHARSET_GB2312 134
+#define wxSTC_CHARSET_GREEK 161
+#define wxSTC_CHARSET_HANGUL 129
+#define wxSTC_CHARSET_MAC 77
+#define wxSTC_CHARSET_OEM 255
+#define wxSTC_CHARSET_RUSSIAN 204
+#define wxSTC_CHARSET_SHIFTJIS 128
+#define wxSTC_CHARSET_SYMBOL 2
+#define wxSTC_CHARSET_TURKISH 162
+#define wxSTC_CHARSET_JOHAB 130
+#define wxSTC_CHARSET_HEBREW 177
+#define wxSTC_CHARSET_ARABIC 178
+#define wxSTC_CHARSET_VIETNAMESE 163
+#define wxSTC_CHARSET_THAI 222
+#define wxSTC_INDIC_MAX 7
+#define wxSTC_INDIC_PLAIN 0
+#define wxSTC_INDIC_SQUIGGLE 1
+#define wxSTC_INDIC_TT 2
+#define wxSTC_INDIC_DIAGONAL 3
+#define wxSTC_INDIC_STRIKE 4
+#define wxSTC_INDIC0_MASK 32
+#define wxSTC_INDIC1_MASK 64
+#define wxSTC_INDIC2_MASK 128
+#define wxSTC_INDICS_MASK 32 | 64 | 128
+
+// PrintColourMode - use same colours as screen.
+#define wxSTC_PRINT_NORMAL 0
+
+// PrintColourMode - invert the light value of each style for printing.
+#define wxSTC_PRINT_INVERTLIGHT 1
+
+// PrintColourMode - force black text on white background for printing.
+#define wxSTC_PRINT_BLACKONWHITE 2
+#define wxSTC_FIND_DOWN 1
+#define wxSTC_FIND_WHOLEWORD 2
+#define wxSTC_FIND_MATCHCASE 4
+#define wxSTC_FIND_WORDSTART 0x00100000
+
+// SCFIND_REGEXP is not yet implemented.
+#define wxSTC_FIND_REGEXP 0x00200000
+#define wxSTC_CMD_UNDO 2176
+#define wxSTC_CMD_CUT 2177
+#define wxSTC_CMD_COPY 2178
+#define wxSTC_CMD_PASTE 2179
+#define wxSTC_FOLDLEVELBASE 0x400
+#define wxSTC_FOLDLEVELWHITEFLAG 0x1000
+#define wxSTC_FOLDLEVELHEADERFLAG 0x2000
+#define wxSTC_FOLDLEVELNUMBERMASK 0x0FFF
+#define wxSTC_CMD_LINEDOWN 2300
+#define wxSTC_CMD_LINEDOWNEXTEND 2301
+#define wxSTC_CMD_LINEUP 2302
+#define wxSTC_CMD_LINEUPEXTEND 2303
+#define wxSTC_CMD_CHARLEFT 2304
+#define wxSTC_CMD_CHARLEFTEXTEND 2305
+#define wxSTC_CMD_CHARRIGHT 2306
+#define wxSTC_CMD_CHARRIGHTEXTEND 2307
+#define wxSTC_CMD_WORDLEFT 2308
+#define wxSTC_CMD_WORDLEFTEXTEND 2309
+#define wxSTC_CMD_WORDRIGHT 2310
+#define wxSTC_CMD_WORDRIGHTEXTEND 2311
+#define wxSTC_CMD_HOME 2312
+#define wxSTC_CMD_HOMEEXTEND 2313
+#define wxSTC_CMD_LINEEND 2314
+#define wxSTC_CMD_LINEENDEXTEND 2315
+#define wxSTC_CMD_DOCUMENTSTART 2316
+#define wxSTC_CMD_DOCUMENTSTARTEXTEND 2317
+#define wxSTC_CMD_DOCUMENTEND 2318
+#define wxSTC_CMD_DOCUMENTENDEXTEND 2319
+#define wxSTC_CMD_PAGEUP 2320
+#define wxSTC_CMD_PAGEUPEXTEND 2321
+#define wxSTC_CMD_PAGEDOWN 2322
+#define wxSTC_CMD_PAGEDOWNEXTEND 2323
+#define wxSTC_CMD_EDITTOGGLEOVERTYPE 2324
+#define wxSTC_CMD_CANCEL 2325
+#define wxSTC_CMD_DELETEBACK 2326
+#define wxSTC_CMD_TAB 2327
+#define wxSTC_CMD_BACKTAB 2328
+#define wxSTC_CMD_NEWLINE 2329
+#define wxSTC_CMD_FORMFEED 2330
+#define wxSTC_CMD_VCHOME 2331
+#define wxSTC_CMD_VCHOMEEXTEND 2332
+#define wxSTC_CMD_ZOOMIN 2333
+#define wxSTC_CMD_ZOOMOUT 2334
+#define wxSTC_CMD_DELWORDLEFT 2335
+#define wxSTC_CMD_DELWORDRIGHT 2336
+#define wxSTC_CMD_LINECUT 2337
+#define wxSTC_CMD_LINEDELETE 2338
+#define wxSTC_CMD_LINETRANSPOSE 2339
+#define wxSTC_CMD_LOWERCASE 2340
+#define wxSTC_CMD_UPPERCASE 2341
+#define wxSTC_CMD_LINESCROLLDOWN 2342
+#define wxSTC_CMD_LINESCROLLUP 2343
+#define wxSTC_EDGE_NONE 0
+#define wxSTC_EDGE_LINE 1
+#define wxSTC_EDGE_BACKGROUND 2
+
+// Show caret within N lines of edge when it's scrolled to view
+#define wxSTC_CARET_SLOP 0x01
+
+// Center caret on screen when it's scrolled to view
+#define wxSTC_CARET_CENTER 0x02
+
+// OR this with CARET_CENTER to reposition even when visible, or
+// OR this with CARET_SLOP to reposition whenever outside slop border
+#define wxSTC_CARET_STRICT 0x04
+
+// Notifications
+// Type of modification and the action which caused the modification
+// These are defined as a bit mask to make it easy to specify which notifications are wanted.
+// One bit is set from each of SC_MOD_* and SC_PERFORMED_*.
+#define wxSTC_MOD_INSERTTEXT 0x1
+#define wxSTC_MOD_DELETETEXT 0x2
+#define wxSTC_MOD_CHANGESTYLE 0x4
+#define wxSTC_MOD_CHANGEFOLD 0x8
+#define wxSTC_PERFORMED_USER 0x10
+#define wxSTC_PERFORMED_UNDO 0x20
+#define wxSTC_PERFORMED_REDO 0x40
+#define wxSTC_LASTSTEPINUNDOREDO 0x100
+#define wxSTC_MOD_CHANGEMARKER 0x200
+#define wxSTC_MOD_BEFOREINSERT 0x400
+#define wxSTC_MOD_BEFOREDELETE 0x800
+#define wxSTC_MODEVENTMASKALL 0xF77
+
+// Symbolic key codes and modifier flags
+// ASCII and other printable characters below 256
+// Extended keys above 300
+#define wxSTC_KEY_DOWN 300
+#define wxSTC_KEY_UP 301
+#define wxSTC_KEY_LEFT 302
+#define wxSTC_KEY_RIGHT 303
+#define wxSTC_KEY_HOME 304
+#define wxSTC_KEY_END 305
+#define wxSTC_KEY_PRIOR 306
+#define wxSTC_KEY_NEXT 307
+#define wxSTC_KEY_DELETE 308
+#define wxSTC_KEY_INSERT 309
+#define wxSTC_KEY_ESCAPE 7
+#define wxSTC_KEY_BACK 8
+#define wxSTC_KEY_TAB 9
+#define wxSTC_KEY_RETURN 13
+#define wxSTC_KEY_ADD 310
+#define wxSTC_KEY_SUBTRACT 311
+#define wxSTC_KEY_DIVIDE 312
+#define wxSTC_SCMOD_SHIFT 1
+#define wxSTC_SCMOD_CTRL 2
+#define wxSTC_SCMOD_ALT 4
+
+// For SciLexer.h
+#define wxSTC_LEX_CONTAINER 0
+#define wxSTC_LEX_NULL 1
+#define wxSTC_LEX_PYTHON 2
+#define wxSTC_LEX_CPP 3
+#define wxSTC_LEX_HTML 4
+#define wxSTC_LEX_XML 5
+#define wxSTC_LEX_PERL 6
+#define wxSTC_LEX_SQL 7
+#define wxSTC_LEX_VB 8
+#define wxSTC_LEX_PROPERTIES 9
+#define wxSTC_LEX_ERRORLIST 10
+#define wxSTC_LEX_MAKEFILE 11
+#define wxSTC_LEX_BATCH 12
+#define wxSTC_LEX_XCODE 13
+#define wxSTC_LEX_LATEX 14
+#define wxSTC_LEX_LUA 15
+#define wxSTC_LEX_DIFF 16
+
+// Lexical states for SCLEX_PYTHON
+#define wxSTC_P_DEFAULT 0
+#define wxSTC_P_COMMENTLINE 1
+#define wxSTC_P_NUMBER 2
+#define wxSTC_P_STRING 3
+#define wxSTC_P_CHARACTER 4
+#define wxSTC_P_WORD 5
+#define wxSTC_P_TRIPLE 6
+#define wxSTC_P_TRIPLEDOUBLE 7
+#define wxSTC_P_CLASSNAME 8
+#define wxSTC_P_DEFNAME 9
+#define wxSTC_P_OPERATOR 10
+#define wxSTC_P_IDENTIFIER 11
+#define wxSTC_P_COMMENTBLOCK 12
+#define wxSTC_P_STRINGEOL 13
+
+// Lexical states for SCLEX_CPP, SCLEX_VB
+#define wxSTC_C_DEFAULT 0
+#define wxSTC_C_COMMENT 1
+#define wxSTC_C_COMMENTLINE 2
+#define wxSTC_C_COMMENTDOC 3
+#define wxSTC_C_NUMBER 4
+#define wxSTC_C_WORD 5
+#define wxSTC_C_STRING 6
+#define wxSTC_C_CHARACTER 7
+#define wxSTC_C_UUID 8
+#define wxSTC_C_PREPROCESSOR 9
+#define wxSTC_C_OPERATOR 10
+#define wxSTC_C_IDENTIFIER 11
+#define wxSTC_C_STRINGEOL 12
+#define wxSTC_C_VERBATIM 13
+
+// Lexical states for SCLEX_HTML, SCLEX_XML
+#define wxSTC_H_DEFAULT 0
+#define wxSTC_H_TAG 1
+#define wxSTC_H_TAGUNKNOWN 2
+#define wxSTC_H_ATTRIBUTE 3
+#define wxSTC_H_ATTRIBUTEUNKNOWN 4
+#define wxSTC_H_NUMBER 5
+#define wxSTC_H_DOUBLESTRING 6
+#define wxSTC_H_SINGLESTRING 7
+#define wxSTC_H_OTHER 8
+#define wxSTC_H_COMMENT 9
+#define wxSTC_H_ENTITY 10
+
+// XML and ASP
+#define wxSTC_H_TAGEND 11
+#define wxSTC_H_XMLSTART 12
+#define wxSTC_H_XMLEND 13
+#define wxSTC_H_SCRIPT 14
+#define wxSTC_H_ASP 15
+#define wxSTC_H_ASPAT 16
+#define wxSTC_H_CDATA 17
+#define wxSTC_H_QUESTION 18
+
+// More HTML
+#define wxSTC_H_VALUE 19
+
+// Embedded Javascript
+#define wxSTC_HJ_START 40
+#define wxSTC_HJ_DEFAULT 41
+#define wxSTC_HJ_COMMENT 42
+#define wxSTC_HJ_COMMENTLINE 43
+#define wxSTC_HJ_COMMENTDOC 44
+#define wxSTC_HJ_NUMBER 45
+#define wxSTC_HJ_WORD 46
+#define wxSTC_HJ_KEYWORD 47
+#define wxSTC_HJ_DOUBLESTRING 48
+#define wxSTC_HJ_SINGLESTRING 49
+#define wxSTC_HJ_SYMBOLS 50
+#define wxSTC_HJ_STRINGEOL 51
+
+// ASP Javascript
+#define wxSTC_HJA_START 55
+#define wxSTC_HJA_DEFAULT 56
+#define wxSTC_HJA_COMMENT 57
+#define wxSTC_HJA_COMMENTLINE 58
+#define wxSTC_HJA_COMMENTDOC 59
+#define wxSTC_HJA_NUMBER 60
+#define wxSTC_HJA_WORD 61
+#define wxSTC_HJA_KEYWORD 62
+#define wxSTC_HJA_DOUBLESTRING 63
+#define wxSTC_HJA_SINGLESTRING 64
+#define wxSTC_HJA_SYMBOLS 65
+#define wxSTC_HJA_STRINGEOL 66
+
+// Embedded VBScript
+#define wxSTC_HB_START 70
+#define wxSTC_HB_DEFAULT 71
+#define wxSTC_HB_COMMENTLINE 72
+#define wxSTC_HB_NUMBER 73
+#define wxSTC_HB_WORD 74
+#define wxSTC_HB_STRING 75
+#define wxSTC_HB_IDENTIFIER 76
+#define wxSTC_HB_STRINGEOL 77
+
+// ASP VBScript
+#define wxSTC_HBA_START 80
+#define wxSTC_HBA_DEFAULT 81
+#define wxSTC_HBA_COMMENTLINE 82
+#define wxSTC_HBA_NUMBER 83
+#define wxSTC_HBA_WORD 84
+#define wxSTC_HBA_STRING 85
+#define wxSTC_HBA_IDENTIFIER 86
+#define wxSTC_HBA_STRINGEOL 87
+
+// Embedded Python
+#define wxSTC_HP_START 90
+#define wxSTC_HP_DEFAULT 91
+#define wxSTC_HP_COMMENTLINE 92
+#define wxSTC_HP_NUMBER 93
+#define wxSTC_HP_STRING 94
+#define wxSTC_HP_CHARACTER 95
+#define wxSTC_HP_WORD 96
+#define wxSTC_HP_TRIPLE 97
+#define wxSTC_HP_TRIPLEDOUBLE 98
+#define wxSTC_HP_CLASSNAME 99
+#define wxSTC_HP_DEFNAME 100
+#define wxSTC_HP_OPERATOR 101
+#define wxSTC_HP_IDENTIFIER 102
+
+// ASP Python
+#define wxSTC_HPA_START 105
+#define wxSTC_HPA_DEFAULT 106
+#define wxSTC_HPA_COMMENTLINE 107
+#define wxSTC_HPA_NUMBER 108
+#define wxSTC_HPA_STRING 109
+#define wxSTC_HPA_CHARACTER 110
+#define wxSTC_HPA_WORD 111
+#define wxSTC_HPA_TRIPLE 112
+#define wxSTC_HPA_TRIPLEDOUBLE 113
+#define wxSTC_HPA_CLASSNAME 114
+#define wxSTC_HPA_DEFNAME 115
+#define wxSTC_HPA_OPERATOR 116
+#define wxSTC_HPA_IDENTIFIER 117
+
+// PHP
+#define wxSTC_HPHP_DEFAULT 118
+#define wxSTC_HPHP_HSTRING 119
+#define wxSTC_HPHP_SIMPLESTRING 120
+#define wxSTC_HPHP_WORD 121
+#define wxSTC_HPHP_NUMBER 122
+#define wxSTC_HPHP_VARIABLE 123
+#define wxSTC_HPHP_COMMENT 124
+#define wxSTC_HPHP_COMMENTLINE 125
+#define wxSTC_HPHP_STRINGEOL 126
+
+// Lexical states for SCLEX_PERL
+#define wxSTC_PL_DEFAULT 0
+#define wxSTC_PL_HERE 1
+#define wxSTC_PL_COMMENTLINE 2
+#define wxSTC_PL_POD 3
+#define wxSTC_PL_NUMBER 4
+#define wxSTC_PL_WORD 5
+#define wxSTC_PL_STRING 6
+#define wxSTC_PL_CHARACTER 7
+#define wxSTC_PL_PUNCTUATION 8
+#define wxSTC_PL_PREPROCESSOR 9
+#define wxSTC_PL_OPERATOR 10
+#define wxSTC_PL_IDENTIFIER 11
+#define wxSTC_PL_SCALAR 12
+#define wxSTC_PL_ARRAY 13
+#define wxSTC_PL_HASH 14
+#define wxSTC_PL_SYMBOLTABLE 15
+#define wxSTC_PL_REF 16
+#define wxSTC_PL_REGEX 17
+#define wxSTC_PL_REGSUBST 18
+#define wxSTC_PL_LONGQUOTE 19
+#define wxSTC_PL_BACKTICKS 20
+#define wxSTC_PL_DATASECTION 21
+
+// Lexical states for SCLEX_LATEX
+#define wxSTC_L_DEFAULT 0
+#define wxSTC_L_COMMAND 1
+#define wxSTC_L_TAG 2
+#define wxSTC_L_MATH 3
+#define wxSTC_L_COMMENT 4
+
+// Lexical states for SCLEX_LUA
+#define wxSTC_LUA_DEFAULT 0
+#define wxSTC_LUA_COMMENT 1
+#define wxSTC_LUA_COMMENTLINE 2
+#define wxSTC_LUA_COMMENTDOC 3
+#define wxSTC_LUA_NUMBER 4
+#define wxSTC_LUA_WORD 5
+#define wxSTC_LUA_STRING 6
+#define wxSTC_LUA_CHARACTER 7
+#define wxSTC_LUA_LITERALSTRING 8
+#define wxSTC_LUA_PREPROCESSOR 9
+#define wxSTC_LUA_OPERATOR 10
+#define wxSTC_LUA_IDENTIFIER 11
+#define wxSTC_LUA_STRINGEOL 12
+#define wxSTC_ERR_DEFAULT 0
+#define wxSTC_ERR_PYTHON 1
+#define wxSTC_ERR_GCC 2
+#define wxSTC_ERR_MS 3
+#define wxSTC_ERR_CMD 4
+#define wxSTC_ERR_BORLAND 5
+#define wxSTC_ERR_PERL 6
+
+// END of generated section
+//----------------------------------------------------------------------
+// Others
 
+#define wxSTC_MASK_FOLDERS ((1 << wxSTC_MARKNUM_FOLDER) | (1 << wxSTC_MARKNUM_FOLDEROPEN))
 
-const int wxSTC_CARET_SLOP    = 0x01;
-const int WXSTC_CARET_CENTER  = 0x02;
-const int wxSTC_CARET_STRICT  = 0x04;
 
-const int wxSTC_MARGIN_SYMBOL = 0;
-const int wxSTC_MARGIN_NUMBER = 1;
 
+//----------------------------------------------------------------------
 
 class  ScintillaWX;                      // forward declare
 class  WordList;
@@ -195,297 +478,762 @@ public:
     ~wxStyledTextCtrl();
 #endif
 
+//----------------------------------------------------------------------
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py.  Do not edit this file.  Edit stc.h.in instead
+//       and regenerate
 
-    // Text retrieval and modification
-    wxString GetText();
-    bool     SetText(const wxString& text);
-    wxString GetLine(int line);
-    void     ReplaceSelection(const wxString& text);
-    void     SetReadOnly(bool readOnly);
-    bool     GetReadOnly();
-    wxString GetTextRange(int startPos, int endPos);
-    wxString GetStyledTextRange(int startPos, int endPos);
-#ifndef SWIG
-    void     GetTextRange(int startPos, int endPos, char* buff);
-    void     GetStyledTextRange(int startPos, int endPos, char* buff);
-#endif
-    void     AddText(const wxString& text);
-    void     AddStyledText(const wxString& text);
-    void     InsertText(int pos, const wxString& text);
-    void     ClearAll();
-    char     GetCharAt(int pos);
-    char     GetStyleAt(int pos);
-    void     SetStyleBits(int bits);
-    int      GetStyleBits();
-
-
-    // Clipboard
-    void     Cut();
-    void     Copy();
-    void     Paste();
-    bool     CanPaste();
-    void     ClearClipbrd();  // avoiding name conflict with virtual in wxWindow
-
-
-    // Undo and Redo
-    void     Undo();
-    bool     CanUndo();
-    void     EmptyUndoBuffer();
-    void     Redo();
-    bool     CanRedo();
-    void     SetUndoCollection(wxSTC_UndoType type);
-    wxSTC_UndoType GetUndoCollection();
-    void     BeginUndoAction();
-    void     EndUndoAction();
-
-
-    // Selection and information
-#ifdef SWIG
-    void     GetSelection(int* OUTPUT, int* OUTPUT);
-#else
-    void     GetSelection(int* startPos, int* endPos);
-#endif
-    void     SetSelection(int  startPos, int  endPos);
-    wxString GetSelectedText();
-    void     HideSelection(bool hide);
-    bool     GetHideSelection();
-
-    int      GetTextLength();
-    int      GetFirstVisibleLine();
-    bool     GetModified();
-    int      GetLineCount();
-    int      GetLineFromPos(int pos);
-    int      GetLineStartPos(int line);
-    int      GetLineLength(int line);
-#ifdef SWIG
-    wxString GetCurrentLineText(int* OUTPUT);
-#else
-    wxString GetCurrentLineText(int* linePos);
-#endif
-    int      GetCurrentLine();
-    int      PositionFromPoint(wxPoint pt);
-    wxPoint  PointFromPosition(int pos);
-    int      GetCurrentPos();
-    int      GetAnchor();
-    void     SelectAll();
-    void     SetCurrentPosition(int pos);
-    void     SetAnchor(int pos);
-    void     GotoPos(int pos);
-    void     GotoLine(int line);
-    void     ChangePosition(int delta, bool extendSelection);
-    void     PageMove(int cmdKey, bool extendSelection);
-
-    void     ScrollBy(int columnDelta, int lineDelta);
-    void     ScrollToLine(int line);
-    void     ScrollToColumn(int column);
-    void     EnsureCaretVisible();
-    void     SetCaretPolicy(int policy, int slop=0);
-    int      GetLinesOnScreen();
-    bool     IsSelectionRectangle();
-    void     SetUseHorizontalScrollBar(bool use);
-    bool     GetUseHorizontalScrollBar();
-
-
-    // Searching
-    int      FindText(int minPos, int maxPos, const wxString& text,
-                      bool caseSensitive, bool wholeWord);
-    void     SearchAnchor();
-    int      SearchNext(const wxString& text, bool caseSensitive, bool wholeWord);
-    int      SearchPrev(const wxString& text, bool caseSensitive, bool wholeWord);
-
-
-    // Visible whitespace
-    bool     GetViewWhitespace();
-    void     SetViewWhitespace(bool visible);
-
-
-    // Line endings
-    wxSTC_EOL GetEOLMode();
-    void     SetEOLMode(wxSTC_EOL mode);
-    bool     GetViewEOL();
-    void     SetViewEOL(bool visible);
-    void     ConvertEOL(wxSTC_EOL mode);
-
-
-    // Styling
-    int      GetEndStyled();
-    void     StartStyling(int pos, int mask);
-    void     SetStyleFor(int length, int style);
-    void     SetStyleBytes(int length, char* styleBytes);
-    void     SetLineState(int line, int value);
-    int      GetLineState(int line);
-
-
-    // Style Definition
-    void     StyleClearAll();
-    void     StyleResetDefault();
-    void     StyleSetSpec(int styleNum, const wxString& spec);
-    void     StyleSetForeground(int styleNum, const wxColour& colour);
-    void     StyleSetBackground(int styleNum, const wxColour& colour);
-    void     StyleSetFont(int styleNum, wxFont& font);
-    void     StyleSetFontAttr(int styleNum, int size, const wxString& faceName, bool bold=FALSE, bool italic=FALSE, bool underline=FALSE);
-    void     StyleSetBold(int styleNum, bool bold);
-    void     StyleSetItalic(int styleNum, bool italic);
-    void     StyleSetFaceName(int styleNum, const wxString& faceName);
-    void     StyleSetSize(int styleNum, int pointSize);
-    void     StyleSetEOLFilled(int styleNum, bool fillEOL);
-    void     StyleSetUnderline(int styleNum, bool underline);
-
-
-    // Margins in the edit area
-    int      GetLeftMargin();
-    int      GetRightMargin();
-    void     SetMargins(int left, int right);
-
-
-    // Margins for selection, markers, etc.
-    void SetMarginType(int margin, int type);
-    int  GetMarginType(int margin);
+
+    // Add text to the document
+    void AddText(const wxString& text);
+
+    // Add array of cells to document
+    void AddStyledText(const wxString& text);
+
+    // Insert string at a position
+    void InsertText(int pos, const wxString& text);
+
+    // Delete all text in the document
+    void ClearAll();
+
+    // Set all style bytes to 0, remove all folding information
+    void ClearDocumentStyle();
+
+    // The number of characters in the document
+    int GetLength();
+
+    // Returns the character byte at the position
+    int GetCharAt(int pos);
+
+    // Returns the position of the caret
+    int GetCurrentPos();
+
+    // Returns the position of the opposite end of the selection to the caret
+    int GetAnchor();
+
+    // Returns the style byte at the position
+    int GetStyleAt(int pos);
+
+    // Redoes the next action on the undo history
+    void Redo();
+
+    // Choose between collecting actions into the undo
+    // history and discarding them.
+    void SetUndoCollection(bool collectUndo);
+
+    // Select all the text in the document.
+    void SelectAll();
+
+    // Remember the current position in the undo history as the position
+    // at which the document was saved.
+    void SetSavePoint();
+
+    // Retrieve a buffer of cells.
+    wxString GetStyledText(int startPos, int endPos);
+
+    // Are there any redoable actions in the undo history.
+    bool CanRedo();
+
+    // Retrieve the line number at which a particular marker is located
+    int MarkerLineFromHandle(int handle);
+
+    // Delete a marker.
+    void MarkerDeleteHandle(int handle);
+
+    // Is undo history being collected?
+    bool GetUndoCollection();
+
+    // Are white space characters currently visible?
+    // Returns one of SCWS_* constants.
+    int GetViewWhiteSpace();
+
+    // Make white space characters invisible, always visible or visible outside indentation.
+    void SetViewWhiteSpace(int viewWS);
+
+    // Find the position from a point within the window.
+    int PositionFromPoint(wxPoint pt);
+
+    // Set caret to start of a line and ensure it is visible.
+    void GotoLine(int line);
+
+    // Set caret to a position and ensure it is visible.
+    void GotoPos(int pos);
+
+    // Set the selection anchor to a position. The anchor is the opposite
+    // end of the selection from the caret.
+    void SetAnchor(int posAnchor);
+
+    // Retrieve the text of the line containing the caret.
+    // Returns the index of the caret on the line.
+    wxString GetCurLine(int* OUTPUT=NULL);
+
+    // Retrieve the position of the last correctly styled character.
+    int GetEndStyled();
+
+    // Convert all line endings in the document to use the current mode.
+    void ConvertEOLs();
+
+    // Retrieve the current end of line mode - one of CRLF, CR, or LF.
+    int GetEOLMode();
+
+    // Set the current end of line mode.
+    void SetEOLMode(int eolMode);
+
+    // Set the current styling position to pos and the styling mask to mask.
+    // The styling mask can be used to protect some bits in each styling byte from
+    // modification.
+    void StartStyling(int pos, int mask);
+
+    // Change style from current styling position for length characters to a style
+    // and move the current styling position to after this newly styled segment.
+    void SetStyling(int length, int style);
+
+    // Is drawing done first into a buffer or direct to the screen.
+    bool GetBufferedDraw();
+
+    // If drawing is buffered then each line of text is drawn into a bitmap buffer
+    // before drawing it to the screen to avoid flicker.
+    void SetBufferedDraw(bool buffered);
+
+    // Change the visible size of a tab to be a multiple of the width of a space
+    // character.
+    void SetTabWidth(int tabWidth);
+
+    // Retrieve the visible size of a tab.
+    int GetTabWidth();
+
+    // Set the code page used to interpret the bytes of the document as characters.
+    // The SC_CP_UTF8 value can be used to enter Unicode mode.
+    void SetCodePage(int codePage);
+
+    // Set the symbol used for a particular marker number,
+    // and optionally the for and background colours.
+    void MarkerDefine(int markerNumber, int markerSymbol,
+                         const wxColour& foreground = wxNullColour,
+                         const wxColour& background = wxNullColour);
+
+    // Set the foreground colour used for a particular marker number.
+    void MarkerSetForeground(int markerNumber, const wxColour& fore);
+
+    // Set the background colour used for a particular marker number.
+    void MarkerSetBackground(int markerNumber, const wxColour& back);
+
+    // Add a marker to a line.
+    void MarkerAdd(int line, int markerNumber);
+
+    // Delete a marker from a line
+    void MarkerDelete(int line, int markerNumber);
+
+    // Delete all markers with a particular number from all lines
+    void MarkerDeleteAll(int markerNumber);
+
+    // Get a bit mask of all the markers set on a line.
+    int MarkerGet(int line);
+
+    // Find the next line after lineStart that includes a marker in mask.
+    int MarkerNext(int lineStart, int markerMask);
+
+    // Find the previous line before lineStart that includes a marker in mask.
+    int MarkerPrevious(int lineStart, int markerMask);
+
+    // Set a margin to be either numeric or symbolic.
+    void SetMarginType(int margin, int marginType);
+
+    // Retrieve the type of a margin.
+    int GetMarginType(int margin);
+
+    // Set the width of a margin to a width expressed in pixels.
     void SetMarginWidth(int margin, int pixelWidth);
-    int  GetMarginWidth(int margin);
+
+    // Retrieve the width of a margin in pixels.
+    int GetMarginWidth(int margin);
+
+    // Set a mask that determines which markers are displayed in a margin.
     void SetMarginMask(int margin, int mask);
-    int  GetMarginMask(int margin);
+
+    // Retrieve the marker mask of a margin.
+    int GetMarginMask(int margin);
+
+    // Make a margin sensitive or insensitive to mouse clicks.
     void SetMarginSensitive(int margin, bool sensitive);
+
+    // Retrieve the mouse click sensitivity of a margin.
     bool GetMarginSensitive(int margin);
 
+    // Clear all the styles and make equivalent to the global default style.
+    void StyleClearAll();
+
+    // Set the foreground colour of a style.
+    void StyleSetForeground(int style, const wxColour& fore);
+
+    // Set the background colour of a style.
+    void StyleSetBackground(int style, const wxColour& back);
+
+    // Set a style to be bold or not.
+    void StyleSetBold(int style, bool bold);
+
+    // Set a style to be italic or not.
+    void StyleSetItalic(int style, bool italic);
+
+    // Set the size of characters of a style.
+    void StyleSetSize(int style, int sizePoints);
+
+    // Set the font of a style.
+    void StyleSetFaceName(int style, const wxString& fontName);
+
+    // Set a style to have its end of line filled or not.
+    void StyleSetEOLFilled(int style, bool filled);
+
+    // Reset the default style to its state at startup
+    void StyleResetDefault();
+
+    // Set a style to be underlined or not.
+    void StyleSetUnderline(int style, bool underline);
+
+    // Set the foreground colour of the selection and whether to use this setting.
+    void SetSelForeground(bool useSetting, const wxColour& fore);
+
+    // Set the background colour of the selection and whether to use this setting.
+    void SetSelBackground(bool useSetting, const wxColour& back);
+
+    // Set the foreground colour of the caret.
+    void SetCaretForeground(const wxColour& fore);
+
+    // When key+modifier combination km is pressed perform msg.
+    void CmdKeyAssign(int key, int modifiers, int cmd);
+
+    // When key+modifier combination km do nothing.
+    void CmdKeyClear(int key, int modifiers);
+
+    // Drop all key mappings.
+    void CmdKeyClearAll();
+
+    // Set the styles for a segment of the document.
+    void SetStyleBytes(int length, char* styleBytes);
+
+    // Set a style to be visible or not.
+    void StyleSetVisible(int style, bool visible);
+
+    // Get the time in milliseconds that the caret is on and off.
+    int GetCaretPeriod();
+
+    // Get the time in milliseconds that the caret is on and off. 0 = steady on.
+    void SetCaretPeriod(int periodMilliseconds);
+
+    // Set the set of characters making up words for when moving or selecting
+    // by word.
+    void SetWordChars(const wxString& characters);
+
+    // Start a sequence of actions that is undone and redone as a unit.
+    // May be nested.
+    void BeginUndoAction();
+
+    // End a sequence of actions that is undone and redone as a unit.
+    void EndUndoAction();
+
+    // Set an indicator to plain, squiggle or TT.
+    void IndicatorSetStyle(int indic, int style);
+
+    // Retrieve the style of an indicator.
+    int IndicatorGetStyle(int indic);
+
+    // Set the foreground colour of an indicator.
+    void IndicatorSetForeground(int indic, const wxColour& fore);
+
+    // Retrieve the foreground colour of an indicator.
+    wxColour IndicatorGetForeground(int indic);
+
+    // Divide each styling byte into lexical class bits (default:5) and indicator
+    // bits (default:3). If a lexer requires more than 32 lexical states, then this
+    // is used to expand the possible states.
+    void SetStyleBits(int bits);
+
+    // Retrieve number of bits in style bytes used to hold the lexical state.
+    int GetStyleBits();
+
+    // Used to hold extra styling information for each line.
+    void SetLineState(int line, int state);
+
+    // Retrieve the extra styling information for a line.
+    int GetLineState(int line);
+
+    // Retrieve the last line number that has line state.
+    int GetMaxLineState();
+
+    // Display a auto-completion list.
+    // The lenEntered parameter indicates how many characters before
+    // the caret should be used to provide context.
+    void AutoCompShow(int lenEntered, const wxString& itemList);
+
+    // Remove the auto-completion list from the screen.
+    void AutoCompCancel();
+
+    // Is there an auto-completion list visible?
+    bool AutoCompActive();
+
+    // Retrieve the position of the caret when the auto-completion list was
+    // displayed.
+    int AutoCompPosStart();
+
+    // User has selected an item so remove the list and insert the selection.
+    void AutoCompComplete();
+
+    // Define a set of character that when typed cancel the auto-completion list.
+    void AutoCompStops(const wxString& characterSet);
+
+    // Change the separator character in the string setting up an auto-completion
+    // list. Default is space but can be changed if items contain space.
+    void AutoCompSetSeparator(int separatorCharacter);
+
+    // Retrieve the auto-completion list separator character.
+    int AutoCompGetSeparator();
+
+    // Select the item in the auto-completion list that starts with a string.
+    void AutoCompSelect(const wxString& text);
+
+    // Should the auto-completion list be cancelled if the user backspaces to a
+    // position before where the box was created.
+    void AutoCompSetCancelAtStart(bool cancel);
+
+    // Retrieve whether auto-completion cancelled by backspacing before start.
+    bool AutoCompGetCancelAtStart();
+
+    // Define a set of character that when typed fills up the selected word.
+    void AutoCompSetFillUps(const wxString& characterSet);
+
+    // Should a single item auto-completion list automatically choose the item.
+    void AutoCompSetChooseSingle(bool chooseSingle);
+
+    // Retrieve whether a single item auto-completion list automatically choose the item.
+    bool AutoCompGetChooseSingle();
+
+    // Set whether case is significant when performing auto-completion searches.
+    void AutoCompSetIgnoreCase(bool ignoreCase);
+
+    // Retrieve state of ignore case flag.
+    bool AutoCompGetIgnoreCase();
+
+    // Set the number of spaces used for one level of indentation.
+    void SetIndent(int indentSize);
+
+    // Retrieve indentation size.
+    int GetIndent();
+
+    // Indentation will only use space characters if useTabs is false, otherwise
+    // it will use a combination of tabs and spaces.
+    void SetUseTabs(bool useTabs);
+
+    // Retrieve whether tabs will be used in indentation.
+    bool GetUseTabs();
+
+    // Change the indentation of a line to a number of columns.
+    void SetLineIndentation(int line, int indentSize);
 
-    // Selection and Caret styles
-    void     SetSelectionForeground(const wxColour& colour);
-    void     SetSelectionBackground(const wxColour& colour);
-    void     SetCaretForeground(const wxColour& colour);
-    int      GetCaretPeriod();
-    void     SetCaretPeriod(int milliseconds);
-
-
-    // Other settings
-    void     SetBufferedDraw(bool isBuffered);
-    void     SetTabWidth(int numChars);
-    void     SetIndent(int numChars);
-    void     SetUseTabs(bool usetabs);
-    void     SetLineIndentation(int line, int indentation);
-    int      GetLineIndentation(int line);
-    int      GetLineIndentationPos(int line);
-    void     SetWordChars(const wxString& wordChars);
-
-    void     SetUsePop(bool usepopup);
-
-
-    // Brace highlighting
-    void     BraceHighlight(int pos1, int pos2);
-    void     BraceBadlight(int pos);
-    int      BraceMatch(int pos, int maxReStyle=0);
-
-
-    // Markers
-    void     MarkerDefine(int markerNumber, int markerSymbol,
-                          const wxColour& foreground,
-                          const wxColour& background);
-    void     MarkerSetType(int markerNumber, int markerSymbol);
-    void     MarkerSetForeground(int markerNumber, const wxColour& colour);
-    void     MarkerSetBackground(int markerNumber, const wxColour& colour);
-    int      MarkerAdd(int line, int markerNumber);
-    void     MarkerDelete(int line, int markerNumber);
-    void     MarkerDeleteAll(int markerNumber);
-    int      MarkerGet(int line);
-    int      MarkerGetNextLine(int lineStart, int markerMask);
-    int      MarkerGetPrevLine(int lineStart, int markerMask);
-    int      MarkerLineFromHandle(int handle);
-    void     MarkerDeleteHandle(int handle);
-
-
-    // Indicators
-    void     IndicatorSetStyle(int indicNum, int indicStyle);
-    int      IndicatorGetStyle(int indicNum);
-    void     IndicatorSetColour(int indicNum, const wxColour& colour);
-
-
-    // Auto completion
-    void     AutoCompShow(const wxString& listOfWords);
-    void     AutoCompCancel();
-    bool     AutoCompActive();
-    int      AutoCompPosAtStart();
-    void     AutoCompComplete();
-    void     AutoCompStopChars(const wxString& stopChars);
-    void     AutoCompSetSeparator(char separator);
-    char     AutoCompGetSeparator();
-    void     AutoCompSelect(const wxString& stringtoselect);
-
-    // Call tips
-    void     CallTipShow(int pos, const wxString& text);
-    void     CallTipCancel();
-    bool     CallTipActive();
-    int      CallTipPosAtStart();
-    void     CallTipSetHighlight(int start, int end);
-    void     CallTipSetBackground(const wxColour& colour);
-
-
-    // Key bindings
-    void     CmdKeyAssign(int key, int modifiers, int cmd);
-    void     CmdKeyClear(int key, int modifiers);
-    void     CmdKeyClearAll();
-    void     CmdKeyExecute(int cmd);
-
-
-    // Print formatting
-    int      FormatRange(bool   doDraw,
-                         int    startPos,
-                         int    endPos,
-                         wxDC*  draw,
-                         wxDC*  target,  // Why does it use two? Can they be the same?
-                         wxRect renderRect,
-                         wxRect pageRect);
-
-
-    // Document Sharing (multiple views)
-    void*    GetDocument();
-    void     SetDocument(void* document);
-    // TODO: create a wx wrapper for Scintilla's document class
-
-
-    // Folding
-    int      VisibleFromDocLine(int docLine);
-    int      DocLineFromVisible(int displayLine);
-    int      SetFoldLevel(int line, int level);
-    int      GetFoldLevel(int line);
-    int      GetLastChild(int line, int level);
-    int      GetFoldParent(int line);
-    void     ShowLines(int lineStart, int lineEnd);
-    void     HideLines(int lineStart, int lineEnd);
-    bool     GetLineVisible(int line);
-    void     SetFoldExpanded(int line, bool expanded);
-    bool     GetFoldExpanded(int line);
-    void     ToggleFold(int line);
-    void     EnsureVisible(int line);
-    void     SetFoldFlags(int flags);
-
-
-    // Zooming
-    void     ZoomIn();
-    void     ZoomOut();
-    void     SetZoom(int zoom);
-    int      GetZoom();
-
-
-    // Long Lines
-    int      GetEdgeColumn();
-    void     SetEdgeColumn(int column);
-    wxSTC_EDGE GetEdgeMode();
-    void     SetEdgeMode(wxSTC_EDGE mode);
+    // Retrieve the number of columns that a line is indented.
+    int GetLineIndentation(int line);
+
+    // Retrieve the position before the first non indentation character on a line.
+    int GetLineIndentPosition(int line);
+
+    // Retrieve the column number of a position, taking tab width into account.
+    int GetColumn(int pos);
+
+    // Show or hide the horizontal scroll bar.
+    void SetUseHorizontalScrollBar(bool show);
+
+    // Is the horizontal scroll bar visible?
+    bool GetUseHorizontalScrollBar();
+
+    // Show or hide indentation guides.
+    void SetIndentationGuides(bool show);
+
+    // Are the indentation guides visible?
+    bool GetIndentationGuides();
+
+    // Set the highlighted indentation guide column.
+    // 0 = no highlighted guide.
+    void SetHighlightGuide(int column);
+
+    // Get the highlighted indentation guide column.
+    int GetHighlightGuide();
+
+    // Get the position after the last visible characters on a line.
+    int GetLineEndPosition(int line);
+
+    // Get the code page used to interpret the bytes of the document as characters.
+    int GetCodePage();
+
+    // Get the foreground colour of the caret.
+    wxColour GetCaretForeground();
+
+    // In read-only mode?
+    bool GetReadOnly();
+
+    // Sets the position of the caret.
+    void SetCurrentPos(int pos);
+
+    // Sets the position that starts the selection - this becomes the anchor.
+    void SetSelectionStart(int pos);
+
+    // Returns the position at the start of the selection.
+    int GetSelectionStart();
+
+    // Sets the position that ends the selection - this becomes the currentPosition.
+    void SetSelectionEnd(int pos);
+
+    // Returns the position at the end of the selection.
+    int GetSelectionEnd();
+
+    // Sets the print magnification added to the point size of each style for printing.
+    void SetPrintMagnification(int magnification);
+
+    // Returns the print magnification.
+    int GetPrintMagnification();
+
+    // Modify colours when printing for clearer printed text.
+    void SetPrintColourMode(int mode);
+
+    // Returns the print colour mode.
+    int GetPrintColourMode();
+
+    // Find some text in the document.
+    int FindText(int minPos, int maxPos,
+                               const wxString& text,
+                               bool caseSensitive, bool wholeWord);
+
+    // On Windows will draw the document into a display context such as a printer.
+    int FormatRange(bool   doDraw,
+                               int    startPos,
+                               int    endPos,
+                               wxDC*  draw,
+                               wxDC*  target,  // Why does it use two? Can they be the same?
+                               wxRect renderRect,
+                               wxRect pageRect);
+
+    // Retrieve the line at the top of the display.
+    int GetFirstVisibleLine();
+
+    // Retrieve the contents of a line.
+    wxString GetLine(int line);
+
+    // Returns the number of lines in the document. There is always at least one.
+    int GetLineCount();
+
+    // Sets the size in pixels of the left margin.
+    void SetMarginLeft(int width);
+
+    // Returns the size in pixels of the left margin.
+    int GetMarginLeft();
+
+    // Sets the size in pixels of the right margin.
+    void SetMarginRight(int width);
+
+    // Returns the size in pixels of the right margin.
+    int GetMarginRight();
+
+    // Is the document different from when it was last saved?
+    bool GetModify();
+
+    // Select a range of text.
+    void SetSelection(int start, int end);
+
+    // Retrieve the selected text.
+    wxString GetSelectedText();
+
+    // Retrieve a range of text.
+    wxString GetTextRange(int startPos, int endPos);
+
+    // Draw the selection in normal style or with selection highlighted.
+    void HideSelection(bool normal);
+
+    // Retrieve the line containing a position.
+    int LineFromPosition(int pos);
+
+    // Retrieve the position at the start of a line.
+    int PositionFromLine(int line);
+
+    // Scroll horizontally and vertically.
+    void LineScroll(int columns, int lines);
+
+    // Ensure the caret is visible.
+    void EnsureCaretVisible();
+
+    // Replace the selected text with the argument text.
+    void ReplaceSelection(const wxString& text);
+
+    // Set to read only or read write.
+    void SetReadOnly(bool readOnly);
+
+    // Will a paste succeed?
+    bool CanPaste();
+
+    // Are there any undoable actions in the undo history.
+    bool CanUndo();
+
+    // Delete the undo history.
+    void EmptyUndoBuffer();
+
+    // Undo one action in the undo history.
+    void Undo();
+
+    // Cut the selection to the clipboard.
+    void Cut();
+
+    // Copy the selection to the clipboard.
+    void Copy();
+
+    // Paste the contents of the clipboard into the document replacing the selection.
+    void Paste();
+
+    // Clear the selection.
+    void Clear();
+
+    // Replace the contents of the document with the argument text.
+    void SetText(const wxString& text);
+
+    // Retrieve all the text in the document.
+    wxString GetText();
+
+    // Retrieve the number of characters in the document.
+    int GetTextLength();
+
+    // Set to overtype (true) or insert mode
+    void SetOvertype(bool overtype);
+
+    // Returns true if overtype mode is active otherwise false is returned.
+    bool GetOvertype();
+
+    // Show a call tip containing a definition near position pos.
+    void CallTipShow(int pos, const wxString& definition);
+
+    // Remove the call tip from the screen.
+    void CallTipCancel();
+
+    // Is there an active call tip?
+    bool CallTipActive();
+
+    // Retrieve the position where the caret was before displaying the call tip.
+    int CallTipPosAtStart();
+
+    // Highlight a segment of the definition.
+    void CallTipSetHighlight(int start, int end);
+
+    // Set the background colour for the call tip.
+    void CallTipSetBackground(const wxColour& back);
+
+    // Find the display line of a document line taking hidden lines into account.
+    int VisibleFromDocLine(int line);
+
+    // Find the document line of a display line taking hidden lines into account.
+    int DocLineFromVisible(int lineDisplay);
+
+    // Set the fold level of a line.
+    // This encodes an integer level along with flags indicating whether the
+    // line is a header and whether it is effectively white space.
+    void SetFoldLevel(int line, int level);
+
+    // Retrieve the fold level of a line.
+    int GetFoldLevel(int line);
+
+    // Find the last child line of a header line.
+    int GetLastChild(int line, int level);
+
+    // Find the parent line of a child line.
+    int GetFoldParent(int line);
+
+    // Make a range of lines visible.
+    void ShowLines(int lineStart, int lineEnd);
+
+    // Make a range of lines invisible.
+    void HideLines(int lineStart, int lineEnd);
+
+    // Is a line visible?
+    bool GetLineVisible(int line);
+
+    // Show the children of a header line.
+    void SetFoldExpanded(int line, bool expanded);
+
+    // Is a header line expanded?
+    bool GetFoldExpanded(int line);
+
+    // Switch a header line between expanded and contracted.
+    void ToggleFold(int line);
+
+    // Ensure a particular line is visible by expanding any header line hiding it.
+    void EnsureVisible(int line);
+
+    // Set some debugging options for folding
+    void SetFoldFlags(int flags);
+
+    // How many characters are on a line, not including end of line characters.
+    int LineLength(int line);
+
+    // Highlight the characters at two positions.
+    void BraceHighlight(int pos1, int pos2);
+
+    // Highlight the character at a position indicating there is no matching brace.
+    void BraceBadLight(int pos);
+
+    // Find the position of a matching brace or INVALID_POSITION if no match.
+    int BraceMatch(int pos);
+
+    // Are the end of line characters visible.
+    bool GetViewEOL();
+
+    // Make the end of line characters visible or invisible
+    void SetViewEOL(bool visible);
+
+    // Retrieve a pointer to the document object.
+    void* GetDocPointer();
+
+    // Change the document object used.
+    void SetDocPointer(void* docPointer);
+
+    // Set which document modification events are sent to the container.
+    void SetModEventMask(int mask);
+
+    // Retrieve the column number which text should be kept within.
+    int GetEdgeColumn();
+
+    // Set the column number of the edge.
+    // If text goes past the edge then it is highlighted.
+    void SetEdgeColumn(int column);
+
+    // Retrieve the edge highlight mode.
+    int GetEdgeMode();
+
+    // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
+    // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
+    void SetEdgeMode(int mode);
+
+    // Retrieve the colour used in edge indication.
     wxColour GetEdgeColour();
-    void     SetEdgeColour(const wxColour& colour);
 
+    // Change the colour used in edge indication.
+    void SetEdgeColour(const wxColour& edgeColour);
+
+    // Sets the current caret position to be the search anchor.
+    void SearchAnchor();
+
+    // Find some text starting at the search anchor.
+    int SearchNext(int flags, const wxString& text);
+
+    // Find some text starting at the search anchor and moving backwards.
+    int SearchPrev(int flags, const wxString& text);
+
+    // Set the way the line the caret is on is kept visible.
+    void SetCaretPolicy(int caretPolicy, int caretSlop);
+
+    // Retrieves the number of lines completely visible.
+    int LinesOnScreen();
+
+    // Set whether a pop up menu is displayed automatically when the user presses
+    // the wrong mouse button.
+    void UsePopUp(bool allowPopUp);
+
+    // Is the selection a rectangular. The alternative is the more common stream selection.
+    bool SelectionIsRectangle();
+
+    // Set the zoom level. This number of points is added to the size of all fonts.
+    // It may be positive to magnify or negative to reduce.
+    void SetZoom(int zoom);
+
+    // Retrieve the zoom level.
+    int GetZoom();
+
+    // Create a new document object.
+    // Starts with reference count of 1 and not selected into editor.
+    void* CreateDocument();
 
-    // Lexer
-    void     SetLexer(wxSTC_LEX lexer);
-    wxSTC_LEX GetLexer();
-    void     Colourise(int start, int end);
-    void     SetProperty(const wxString& key, const wxString& value);
-    void     SetKeywords(int keywordSet, const wxString& keywordList);
+    // Extend life of document.
+    void AddRefDocument(void* docPointer);
 
+    // Release a reference to the document, deleting document if it fades to black.
+    void ReleaseDocument(void* docPointer);
+
+    // Get which document modification events are sent to the container.
+    int GetModEventMask();
+
+    // Start notifying the container of all key presses and commands.
+    void StartRecord();
+
+    // Stop notifying the container of all key presses and commands.
+    void StopRecord();
+
+    // Set the lexing language of the document.
+    void SetLexer(int lexer);
+
+    // Retrieve the lexing language of the document.
+    int GetLexer();
+
+    // Colourise a segment of the document using the current lexing language.
+    void Colourise(int start, int end);
+
+    // Set up a value that may be used by a lexer for some optional feature.
+    void SetProperty(const wxString& key, const wxString& value);
+
+    // Set up the key words used by the lexer.
+    void SetKeyWords(int keywordSet, const wxString& keyWords);
+
+// END of generated section
+//----------------------------------------------------------------------
+// Others...
+
+
+    // Returns the line number of the line with the caret.
+    int GetCurrentLine();
+
+    // Extract style settings from a spec-string which is composed of one or
+    // more of the following comma separated elements:
+    //
+    //      bold                    turns on bold
+    //      italic                  turns on italics
+    //      fore:#RRGGBB            sets the foreground colour
+    //      back:#RRGGBB            sets the background colour
+    //      face:[facename]         sets the font face name to use
+    //      size:[num]              sets the font size in points
+    //      eol                     turns on eol filling
+    //      underline               turns on underlining
+    //
+    void StyleSetSpec(int styleNum, const wxString& spec);
+
+
+
+    // Set style size, face, bold, italic, and underline attributes from
+    // a wxFont's attributes.
+    void StyleSetFont(int styleNum, wxFont& font);
+
+
+
+    // Set all font style attributes at once.
+    void StyleSetFontAttr(int styleNum, int size,
+                          const wxString& faceName,
+                          bool bold, bool italic,
+                          bool underline);
+
+
+
+    // Perform one of the operations defined by the wxSTC_CMD_* constants.
+    void CmdKeyExecute(int cmd);
+
+
+
+    // Set the left and right margin in the edit area, measured in pixels.
+    void SetMargins(int left, int right);
+
+
+    // Retrieve the start and end positions of the current selection.
+#ifdef SWIG
+    void GetSelection(int* OUTPUT, int* OUTPUT);
+#else
+    void GetSelection(int* startPos, int* endPos);
+#endif
+
+    // Retrieve the point in the window where a position is displayed.
+    wxPoint PointFromPosition(int pos);
+
+//----------------------------------------------------------------------
 
-    // Event mask for Modified Event
-    void     SetModEventMask(int mask);
-    //int      GetModEventMask();
 
 #ifndef SWIG
 private:
@@ -519,8 +1267,6 @@ private:
 
     ScintillaWX*        m_swx;
     wxStopWatch         m_stopWatch;
-    bool                m_readOnly;
-    wxSTC_UndoType      m_undoType;
 
 
     friend class ScintillaWX;
@@ -610,22 +1356,10 @@ enum {
     wxEVT_STC_KEY,
     wxEVT_STC_MACRORECORD,
     wxEVT_STC_MARGINCLICK,
-    wxEVT_STC_NEEDSHOWN
+    wxEVT_STC_NEEDSHOWN,
+    wxEVT_STC_POSCHANGED
 };
 
-// Modification and action types
-const int wxSTC_MOD_INSERTTEXT = 0x1;
-const int wxSTC_MOD_DELETETEXT = 0x2;
-const int wxSTC_MOD_CHANGESTYLE = 0x4;
-const int wxSTC_MOD_CHANGEFOLD = 0x8;
-const int wxSTC_PERFORMED_USER = 0x10;
-const int wxSTC_PERFORMED_UNDO = 0x20;
-const int wxSTC_PERFORMED_REDO = 0x40;
-const int wxSTC_LASTSTEPINUNDOREDO = 0x100;
-const int wxSTC_MOD_CHANGEMARKER = 0x200;
-const int wxSTC_MOD_BEFOREINSERT = 0x400;
-const int wxSTC_MOD_BEFOREDELETE = 0x800;
-
 
 #ifndef SWIG
 typedef void (wxEvtHandler::*wxStyledTextEventFunction)(wxStyledTextEvent&);
index fe337aadb3500440829d7accfe5545650289294f..bb581a99abcb50c4a7c9011afc8ac6f3763124f3 100644 (file)
@@ -165,7 +165,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
     ed->EmptyUndoBuffer();
 
     ed->SetLexer(wxSTC_LEX_CPP);
-    ed->SetKeywords(0,
+    ed->SetKeyWords(0,
                     "asm auto bool break case catch char class const "
                     "const_cast continue default delete do double "
                     "dynamic_cast else enum explicit export extern "
index 41444aed2ddaf96330f05cf92434eb43516e4a1d..650921ee5ae090fbb1d130b92846ff221624237e 100644 (file)
@@ -273,8 +273,6 @@ void ScintillaWX::AddToPopUp(const char *label, int cmd, bool enabled) {
 
     if (!enabled)
         popup.GetID()->Enable(cmd, enabled);
-
-    // TODO:  need to create event handler mappings for the cmd ID
 }
 
 
index 3fde7ae05d08170bd2cb1d21a9e811df8874425c..506493658e4447fe3ec83d3a43ad1fe61d41ed99 100644 (file)
@@ -26,7 +26,7 @@
 // If we don't do something like this, then the linker tends to "optimize"
 // them away. (eric@sourcegear.com)
 
-static int wxForceScintillaLexers(void)
+int wxForceScintillaLexers(void)
 {
   extern LexerModule lmCPP;
   extern LexerModule lmHTML;
@@ -39,7 +39,6 @@ static int wxForceScintillaLexers(void)
   extern LexerModule lmPython;
   extern LexerModule lmSQL;
   extern LexerModule lmVB;
-  extern LexerModule lmLua;
 
   if (
       &lmCPP
@@ -53,11 +52,14 @@ static int wxForceScintillaLexers(void)
       && &lmPython
       && &lmSQL
       && &lmVB
-      && &lmLua
       )
     {
       return 1;
     }
+  else
+    {
+      return 0;
+    }
 }
 
 //----------------------------------------------------------------------
@@ -100,16 +102,12 @@ wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
               wxDefaultValidator, name)
 {
     m_swx = new ScintillaWX(this);
-    // m_keywords = new WordList;
     m_stopWatch.Start();
-    m_readOnly = false;
-    m_undoType = wxSTC_UndoCollectAutoStart;
 }
 
 
 wxStyledTextCtrl::~wxStyledTextCtrl() {
     delete m_swx;
-    // delete m_keywords;
 }
 
 
@@ -121,1261 +119,1365 @@ long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
 }
 
 
-//----------------------------------------------------------------------
-// Text retrieval and modification
-
-wxString wxStyledTextCtrl::GetText() {
-    wxString text;
-    int   len  = GetTextLength();
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETTEXT, len, (long)buff);
-    buff[len] = 0;
-    text.UngetWriteBuf();
-    return text;
-}
-
-
-bool wxStyledTextCtrl::SetText(const wxString& text) {
-    return SendMsg(SCI_SETTEXT, 0, (long)text.c_str()) != 0;
-}
-
-
-wxString wxStyledTextCtrl::GetLine(int line) {
-    wxString text;
-    int   len  = GetLineLength(line);
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETLINE, line, (long)buff);
-    buff[len] = 0;
-    text.UngetWriteBuf();
-    return text;
-}
-
-
-void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
-    SendMsg(SCI_REPLACESEL, 0, (long)text.c_str());
-}
-
-
-void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
-    SendMsg(SCI_SETREADONLY, (long)readOnly);
-    m_readOnly = readOnly;
-}
-
-
-bool wxStyledTextCtrl::GetReadOnly() {
-    // TODO: need support in Scintilla to do this right,
-    //       until then we'll track it ourselves
-    return m_readOnly;
-}
+#define MAKELONG(a, b) ((a) | ((b) << 16))
 
 
-void wxStyledTextCtrl::GetTextRange(int startPos, int endPos, char* buff) {
-    TextRange tr;
-    tr.lpstrText = buff;
-    tr.chrg.cpMin = startPos;
-    tr.chrg.cpMax = endPos;
-    SendMsg(SCI_GETTEXTRANGE, 0, (long)&tr);
+static long wxColourAsLong(const wxColour& co) {
+    return (((long)co.Blue()  << 16) |
+            ((long)co.Green() <<  8) |
+            ((long)co.Red()));
 }
 
-
-wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
-    wxString  text;
-    int       len  = endPos - startPos;
-    char*     buff = text.GetWriteBuf(len+1);
-    GetTextRange(startPos, endPos, buff);
-    text.UngetWriteBuf();
-    return text;
+static wxColour wxColourFromLong(long c) {
+    wxColour clr;
+    clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
+    return clr;
 }
 
 
-void wxStyledTextCtrl::GetStyledTextRange(int startPos, int endPos, char* buff) {
-    TextRange tr;
-    tr.lpstrText = buff;
-    tr.chrg.cpMin = startPos;
-    tr.chrg.cpMax = endPos;
-    SendMsg(SCI_GETSTYLEDTEXT, 0, (long)&tr);
+static wxColour wxColourFromSpec(const wxString& spec) {
+    // spec should be #RRGGBB
+    char* junk;
+    int red   = strtol(spec.Mid(1,2), &junk, 16);
+    int green = strtol(spec.Mid(3,2), &junk, 16);
+    int blue  = strtol(spec.Mid(5,2), &junk, 16);
+    return wxColour(red, green, blue);
 }
 
 
-wxString wxStyledTextCtrl::GetStyledTextRange(int startPos, int endPos) {
-    wxString  text;
-    int       len  = endPos - startPos;
-    char*     buff = text.GetWriteBuf(len*2+1);
-    GetStyledTextRange(startPos, endPos, buff);
-    text.UngetWriteBuf(len*2);
-    return text;
-}
+//----------------------------------------------------------------------
+// BEGIN generated section.  The following code is automatically generated
+//       by gen_iface.py from the contents of Scintilla.iface.  Do not edit
+//       this file.  Edit stc.cpp.in or gen_iface.py instead and regenerate.
 
 
+// Add text to the document
 void wxStyledTextCtrl::AddText(const wxString& text) {
-    SendMsg(SCI_ADDTEXT, text.Len(), (long)text.c_str());
+                    SendMsg(2001, text.Len(), (long)text.c_str());
 }
 
-
+// Add array of cells to document
 void wxStyledTextCtrl::AddStyledText(const wxString& text) {
-    SendMsg(SCI_ADDSTYLEDTEXT, text.Len(), (long)text.c_str());
+                          SendMsg(2002, text.Len(), (long)text.c_str());
 }
 
-
+// Insert string at a position
 void wxStyledTextCtrl::InsertText(int pos, const wxString& text) {
-    SendMsg(SCI_INSERTTEXT, pos, (long)text.c_str());
+    SendMsg(2003, pos, (long)text.c_str());
 }
 
-
+// Delete all text in the document
 void wxStyledTextCtrl::ClearAll() {
-    SendMsg(SCI_CLEARALL);
+    SendMsg(2004, 0, 0);
 }
 
-
-char wxStyledTextCtrl::GetCharAt(int pos) {
-    return SendMsg(SCI_GETCHARAT, pos);
-}
-
-
-char wxStyledTextCtrl::GetStyleAt(int pos) {
-    return SendMsg(SCI_GETSTYLEAT, pos);
-}
-
-
-void wxStyledTextCtrl::SetStyleBits(int bits) {
-    SendMsg(SCI_SETSTYLEBITS, bits);
-}
-
-
-int  wxStyledTextCtrl::GetStyleBits() {
-    return SendMsg(SCI_GETSTYLEBITS);
-}
-
-
-//----------------------------------------------------------------------
-// Clipboard
-
-
-void wxStyledTextCtrl::Cut() {
-    SendMsg(SCI_CUT);
-}
-
-
-void wxStyledTextCtrl::Copy() {
-    SendMsg(SCI_COPY);
-}
-
-
-void wxStyledTextCtrl::Paste() {
-    SendMsg(SCI_PASTE);
+// Set all style bytes to 0, remove all folding information
+void wxStyledTextCtrl::ClearDocumentStyle() {
+    SendMsg(2005, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanPaste() {
-    return SendMsg(SCI_CANPASTE) != 0;
+// The number of characters in the document
+int wxStyledTextCtrl::GetLength() {
+    return SendMsg(2006, 0, 0);
 }
 
-
-void wxStyledTextCtrl::ClearClipbrd() {
-    SendMsg(SCI_CLEAR);
+// Returns the character byte at the position
+int wxStyledTextCtrl::GetCharAt(int pos) {
+    return SendMsg(2007, pos, 0);
 }
 
-
-
-//----------------------------------------------------------------------
-// Undo and Redo
-
-void wxStyledTextCtrl::Undo() {
-    SendMsg(SCI_UNDO);
+// Returns the position of the caret
+int wxStyledTextCtrl::GetCurrentPos() {
+    return SendMsg(2008, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanUndo() {
-    return SendMsg(SCI_CANUNDO) != 0;
+// Returns the position of the opposite end of the selection to the caret
+int wxStyledTextCtrl::GetAnchor() {
+    return SendMsg(2009, 0, 0);
 }
 
-
-void wxStyledTextCtrl::EmptyUndoBuffer() {
-    SendMsg(SCI_EMPTYUNDOBUFFER);
+// Returns the style byte at the position
+int wxStyledTextCtrl::GetStyleAt(int pos) {
+    return SendMsg(2010, pos, 0);
 }
 
-
+// Redoes the next action on the undo history
 void wxStyledTextCtrl::Redo() {
-    SendMsg(SCI_REDO);
-}
-
-
-bool wxStyledTextCtrl::CanRedo() {
-    return SendMsg(SCI_CANREDO) != 0;
-}
-
-
-void wxStyledTextCtrl::SetUndoCollection(wxSTC_UndoType type) {
-    SendMsg(SCI_SETUNDOCOLLECTION, type);
-    m_undoType = type;
-}
-
-
-wxSTC_UndoType wxStyledTextCtrl::GetUndoCollection() {
-    // TODO: need support in Scintilla to do this right,
-    //       until then we'll track it ourselves
-    return m_undoType;
-}
-
-
-void wxStyledTextCtrl::BeginUndoAction() {
-    SendMsg(SCI_BEGINUNDOACTION);
-}
-
-
-void wxStyledTextCtrl::EndUndoAction() {
-    SendMsg(SCI_ENDUNDOACTION);
-}
-
-
-
-
-//----------------------------------------------------------------------
-// Selection and information
-
-
-void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
-//    SendMsg(EM_GETSEL, (long)startPos, (long)endPos);
-    *startPos = SendMsg(SCI_GETSELECTIONSTART);
-    *endPos = SendMsg(SCI_GETSELECTIONEND);
-}
-
-
-void wxStyledTextCtrl::SetSelection(int  startPos, int  endPos) {
-    SendMsg(SCI_SETSEL, startPos, endPos);
-}
-
-
-wxString wxStyledTextCtrl::GetSelectedText() {
-    wxString text;
-    int   start;
-    int   end;
-
-    GetSelection(&start, &end);
-    int   len  = end - start;
-    char* buff = text.GetWriteBuf(len+1);
-
-    SendMsg(SCI_GETSELTEXT, 0, (long)buff);
-    text.UngetWriteBuf();
-    return text;
+    SendMsg(2011, 0, 0);
 }
 
-
-void wxStyledTextCtrl::HideSelection(bool hide) {
-    SendMsg(SCI_HIDESELECTION, hide);
+// Choose between collecting actions into the undo
+// history and discarding them.
+void wxStyledTextCtrl::SetUndoCollection(bool collectUndo) {
+    SendMsg(2012, collectUndo, 0);
 }
 
-
-bool wxStyledTextCtrl::GetHideSelection() {
-    return m_swx->GetHideSelection();
-}
-
-
-int wxStyledTextCtrl::GetTextLength() {
-    return SendMsg(SCI_GETTEXTLENGTH);
+// Select all the text in the document.
+void wxStyledTextCtrl::SelectAll() {
+    SendMsg(2013, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetFirstVisibleLine() {
-    return SendMsg(SCI_GETFIRSTVISIBLELINE);
+// Remember the current position in the undo history as the position
+// at which the document was saved.
+void wxStyledTextCtrl::SetSavePoint() {
+    SendMsg(2014, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineCount() {
-    return SendMsg(SCI_GETLINECOUNT);
+// Retrieve a buffer of cells.
+wxString wxStyledTextCtrl::GetStyledText(int startPos, int endPos) {
+                          wxString text;
+                          int len = endPos - startPos;
+                          TextRange tr;
+                          tr.lpstrText = text.GetWriteBuf(len*2+1);
+                          tr.chrg.cpMin = startPos;
+                          tr.chrg.cpMax = endPos;
+                          SendMsg(2015, 0, (long)&tr);
+                          text.UngetWriteBuf(len*2);
+                          return text;
 }
 
-
-bool wxStyledTextCtrl::GetModified() {
-    return SendMsg(SCI_GETMODIFY) != 0;
+// Are there any redoable actions in the undo history.
+bool wxStyledTextCtrl::CanRedo() {
+    return SendMsg(2016, 0, 0) != 0;
 }
 
-
-int wxStyledTextCtrl::GetLineFromPos(int pos) {
-    return SendMsg(SCI_LINEFROMPOSITION, pos);
+// Retrieve the line number at which a particular marker is located
+int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
+    return SendMsg(2017, handle, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineStartPos(int line) {
-    return SendMsg(SCI_POSITIONFROMLINE, line);
+// Delete a marker.
+void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
+    SendMsg(2018, handle, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineLength(int line) {
-    return SendMsg(SCI_LINELENGTH, line);
+// Is undo history being collected?
+bool wxStyledTextCtrl::GetUndoCollection() {
+    return SendMsg(2019, 0, 0) != 0;
 }
 
-
-int wxStyledTextCtrl::GetCurrentLine() {
-    int line = GetLineFromPos(GetCurrentPos());
-    return line;
+// Are white space characters currently visible?
+// Returns one of SCWS_* constants.
+int wxStyledTextCtrl::GetViewWhiteSpace() {
+    return SendMsg(2020, 0, 0);
 }
 
-
-wxString wxStyledTextCtrl::GetCurrentLineText(int* linePos) {
-    wxString text;
-    int   len  = GetLineLength(GetCurrentLine());
-    char* buff = text.GetWriteBuf(len+1);
-
-    int pos = SendMsg(SCI_GETCURLINE, len, (long)buff);
-    text.UngetWriteBuf();
-
-    if (linePos)
-        *linePos = pos;
-
-    return text;
+// Make white space characters invisible, always visible or visible outside indentation.
+void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS) {
+    SendMsg(2021, viewWS, 0);
 }
 
-
+// Find the position from a point within the window.
 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt) {
-    return SendMsg(SCI_POSITIONFROMPOINT, pt.x, pt.y);
-}
-
-
-wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
-    int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
-    int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
-    return wxPoint(x, y);
-}
-
-
-int wxStyledTextCtrl::GetCurrentPos() {
-    return SendMsg(SCI_GETCURRENTPOS);
-}
-
-
-int wxStyledTextCtrl::GetAnchor() {
-    return SendMsg(SCI_GETANCHOR);
-}
-
-
-void wxStyledTextCtrl::SelectAll() {
-    SendMsg(SCI_SELECTALL);
-}
-
-
-void wxStyledTextCtrl::SetCurrentPosition(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+                              return SendMsg(2022, pt.x, pt.y);
 }
 
-
-void wxStyledTextCtrl::SetAnchor(int pos) {
-    SendMsg(SCI_SETANCHOR, pos);
+// Set caret to start of a line and ensure it is visible.
+void wxStyledTextCtrl::GotoLine(int line) {
+    SendMsg(2024, line, 0);
 }
 
-
+// Set caret to a position and ensure it is visible.
 void wxStyledTextCtrl::GotoPos(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+    SendMsg(2025, pos, 0);
 }
 
-
-void wxStyledTextCtrl::GotoLine(int line) {
-    SendMsg(SCI_GOTOLINE, line);
+// Set the selection anchor to a position. The anchor is the opposite
+// end of the selection from the caret.
+void wxStyledTextCtrl::SetAnchor(int posAnchor) {
+    SendMsg(2026, posAnchor, 0);
 }
 
+// Retrieve the text of the line containing the caret.
+// Returns the index of the caret on the line.
+wxString wxStyledTextCtrl::GetCurLine(int* linePos) {
+                       wxString text;
+                       int len = LineLength(GetCurrentLine());
+                       char* buf = text.GetWriteBuf(len+1);
 
-void wxStyledTextCtrl::ChangePosition(int delta, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_CHANGEPOSITION, delta, extendSelection);
-}
-
+                       int pos = SendMsg(2027, len, (long)buf);
+                       text.UngetWriteBuf();
+                       if (linePos)  *linePos = pos;
 
-void wxStyledTextCtrl::PageMove(int cmdKey, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_PAGEMOVE, cmdKey, extendSelection);
+                       return text;
 }
 
-
-void wxStyledTextCtrl::ScrollBy(int columnDelta, int lineDelta) {
-    SendMsg(SCI_LINESCROLL, columnDelta, lineDelta);
+// Retrieve the position of the last correctly styled character.
+int wxStyledTextCtrl::GetEndStyled() {
+    return SendMsg(2028, 0, 0);
 }
 
-void wxStyledTextCtrl::ScrollToLine(int line) {
-    m_swx->DoScrollToLine(line);
+// Convert all line endings in the document to use the current mode.
+void wxStyledTextCtrl::ConvertEOLs() {
+    SendMsg(2029, 0, 0);
 }
 
-
-void wxStyledTextCtrl::ScrollToColumn(int column) {
-    m_swx->DoScrollToColumn(column);
+// Retrieve the current end of line mode - one of CRLF, CR, or LF.
+int wxStyledTextCtrl::GetEOLMode() {
+    return SendMsg(2030, 0, 0);
 }
 
-
-void wxStyledTextCtrl::EnsureCaretVisible() {
-    SendMsg(SCI_SCROLLCARET);
+// Set the current end of line mode.
+void wxStyledTextCtrl::SetEOLMode(int eolMode) {
+    SendMsg(2031, eolMode, 0);
 }
 
-
-void wxStyledTextCtrl::SetCaretPolicy(int policy, int slop) {
-    SendMsg(SCI_SETCARETPOLICY, policy, slop);
+// Set the current styling position to pos and the styling mask to mask.
+// The styling mask can be used to protect some bits in each styling byte from
+// modification.
+void wxStyledTextCtrl::StartStyling(int pos, int mask) {
+    SendMsg(2032, pos, mask);
 }
 
-
-int wxStyledTextCtrl::GetLinesOnScreen() {
-    return SendMsg(SCI_LINESONSCREEN);
+// Change style from current styling position for length characters to a style
+// and move the current styling position to after this newly styled segment.
+void wxStyledTextCtrl::SetStyling(int length, int style) {
+    SendMsg(2033, length, style);
 }
 
-
-bool wxStyledTextCtrl::IsSelectionRectangle() {
-    return SendMsg(SCI_SELECTIONISRECTANGLE) != 0;
+// Is drawing done first into a buffer or direct to the screen.
+bool wxStyledTextCtrl::GetBufferedDraw() {
+    return SendMsg(2034, 0, 0) != 0;
 }
 
-
-void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool use) {
-    SendMsg(SCI_SETHSCROLLBAR, use);
+// If drawing is buffered then each line of text is drawn into a bitmap buffer
+// before drawing it to the screen to avoid flicker.
+void wxStyledTextCtrl::SetBufferedDraw(bool buffered) {
+    SendMsg(2035, buffered, 0);
 }
 
-
-bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
-    return SendMsg(SCI_GETHSCROLLBAR) != 0;
+// Change the visible size of a tab to be a multiple of the width of a space
+// character.
+void wxStyledTextCtrl::SetTabWidth(int tabWidth) {
+    SendMsg(2036, tabWidth, 0);
 }
 
-
-
-
-
-//----------------------------------------------------------------------
-// Searching
-
-int wxStyledTextCtrl::FindText(int minPos, int maxPos,
-                               const wxString& text,
-                               bool caseSensitive, bool wholeWord) {
-    TextToFind  ft;
-    int         flags = 0;
-
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-    ft.chrg.cpMin = minPos;
-    ft.chrg.cpMax = maxPos;
-    ft.lpstrText = (char*)text.c_str();
-
-    return SendMsg(SCI_FINDTEXT, flags, (long)&ft);
+// Retrieve the visible size of a tab.
+int wxStyledTextCtrl::GetTabWidth() {
+    return SendMsg(2121, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SearchAnchor() {
-    SendMsg(SCI_SEARCHANCHOR);
+// Set the code page used to interpret the bytes of the document as characters.
+// The SC_CP_UTF8 value can be used to enter Unicode mode.
+void wxStyledTextCtrl::SetCodePage(int codePage) {
+    SendMsg(2037, codePage, 0);
 }
 
+// Set the symbol used for a particular marker number,
+// and optionally the for and background colours.
+void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
+                            const wxColour& foreground,
+                            const wxColour& background) {
 
-int wxStyledTextCtrl::SearchNext(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHNEXT, flags, (long)text.c_str());
+                            SendMsg(2040, markerNumber, markerSymbol);
+                            if (foreground.Ok())
+                                MarkerSetForeground(markerNumber, foreground);
+                            if (background.Ok())
+                                MarkerSetBackground(markerNumber, background);
 }
 
-
-int wxStyledTextCtrl::SearchPrev(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
-    flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHPREV, flags, (long)text.c_str());
+// Set the foreground colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& fore) {
+    SendMsg(2041, markerNumber, wxColourAsLong(fore));
 }
 
-//----------------------------------------------------------------------
-// Visible whitespace
-
-
-bool wxStyledTextCtrl::GetViewWhitespace() {
-    return SendMsg(SCI_GETVIEWWS) != 0;
-}
-
-
-void wxStyledTextCtrl::SetViewWhitespace(bool visible) {
-    SendMsg(SCI_SETVIEWWS, visible);
+// Set the background colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& back) {
+    SendMsg(2042, markerNumber, wxColourAsLong(back));
 }
 
-
-
-//----------------------------------------------------------------------
-// Line endings
-
-wxSTC_EOL wxStyledTextCtrl::GetEOLMode() {
-    return (wxSTC_EOL)SendMsg(SCI_GETEOLMODE);
+// Add a marker to a line.
+void wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
+    SendMsg(2043, line, markerNumber);
 }
 
-
-void wxStyledTextCtrl::SetEOLMode(wxSTC_EOL mode) {
-    SendMsg(SCI_SETEOLMODE, mode);
+// Delete a marker from a line
+void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
+    SendMsg(2044, line, markerNumber);
 }
 
-
-bool wxStyledTextCtrl::GetViewEOL() {
-    return SendMsg(SCI_GETVIEWEOL) != 0;
+// Delete all markers with a particular number from all lines
+void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
+    SendMsg(2045, markerNumber, 0);
 }
 
-
-void wxStyledTextCtrl::SetViewEOL(bool visible) {
-    SendMsg(SCI_SETVIEWEOL, visible);
+// Get a bit mask of all the markers set on a line.
+int wxStyledTextCtrl::MarkerGet(int line) {
+    return SendMsg(2046, line, 0);
 }
 
-void wxStyledTextCtrl::ConvertEOL(wxSTC_EOL mode) {
-    SendMsg(SCI_CONVERTEOLS, mode);
+// Find the next line after lineStart that includes a marker in mask.
+int wxStyledTextCtrl::MarkerNext(int lineStart, int markerMask) {
+    return SendMsg(2047, lineStart, markerMask);
 }
 
-//----------------------------------------------------------------------
-// Styling
-
-int wxStyledTextCtrl::GetEndStyled() {
-    return SendMsg(SCI_GETENDSTYLED);
+// Find the previous line before lineStart that includes a marker in mask.
+int wxStyledTextCtrl::MarkerPrevious(int lineStart, int markerMask) {
+    return SendMsg(2048, lineStart, markerMask);
 }
 
-
-void wxStyledTextCtrl::StartStyling(int pos, int mask) {
-    SendMsg(SCI_STARTSTYLING, pos, mask);
+// Set a margin to be either numeric or symbolic.
+void wxStyledTextCtrl::SetMarginType(int margin, int marginType) {
+    SendMsg(2240, margin, marginType);
 }
 
-
-void wxStyledTextCtrl::SetStyleFor(int length, int style) {
-    SendMsg(SCI_SETSTYLING, length, style);
+// Retrieve the type of a margin.
+int wxStyledTextCtrl::GetMarginType(int margin) {
+    return SendMsg(2241, margin, 0);
 }
 
-
-void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
-    SendMsg(SCI_SETSTYLINGEX, length, (long)styleBytes);
+// Set the width of a margin to a width expressed in pixels.
+void wxStyledTextCtrl::SetMarginWidth(int margin, int pixelWidth) {
+    SendMsg(2242, margin, pixelWidth);
 }
 
-
-void wxStyledTextCtrl::SetLineState(int line, int value) {
-    SendMsg(SCI_SETLINESTATE, line, value);
+// Retrieve the width of a margin in pixels.
+int wxStyledTextCtrl::GetMarginWidth(int margin) {
+    return SendMsg(2243, margin, 0);
 }
 
-
-int  wxStyledTextCtrl::GetLineState(int line) {
-    return SendMsg(SCI_GETLINESTATE, line);
+// Set a mask that determines which markers are displayed in a margin.
+void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
+    SendMsg(2244, margin, mask);
 }
 
-
-//----------------------------------------------------------------------
-// Style Definition
-
-
-static long wxColourAsLong(const wxColour& co) {
-    return (((long)co.Blue()  << 16) |
-            ((long)co.Green() <<  8) |
-            ((long)co.Red()));
+// Retrieve the marker mask of a margin.
+int wxStyledTextCtrl::GetMarginMask(int margin) {
+    return SendMsg(2245, margin, 0);
 }
 
-static wxColour wxColourFromLong(long c) {
-    wxColour clr;
-    clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
-    return clr;
+// Make a margin sensitive or insensitive to mouse clicks.
+void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
+    SendMsg(2246, margin, sensitive);
 }
 
-
-static wxColour wxColourFromSpec(const wxString& spec) {
-    // spec should be #RRGGBB
-    char* junk;
-    int red   = strtol(spec.Mid(1,2), &junk, 16);
-    int green = strtol(spec.Mid(3,2), &junk, 16);
-    int blue  = strtol(spec.Mid(5,2), &junk, 16);
-    return wxColour(red, green, blue);
+// Retrieve the mouse click sensitivity of a margin.
+bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
+    return SendMsg(2247, margin, 0) != 0;
 }
 
-
+// Clear all the styles and make equivalent to the global default style.
 void wxStyledTextCtrl::StyleClearAll() {
-    SendMsg(SCI_STYLECLEARALL);
+    SendMsg(2050, 0, 0);
 }
 
-
-void wxStyledTextCtrl::StyleResetDefault() {
-    SendMsg(SCI_STYLERESETDEFAULT);
+// Set the foreground colour of a style.
+void wxStyledTextCtrl::StyleSetForeground(int style, const wxColour& fore) {
+    SendMsg(2051, style, wxColourAsLong(fore));
 }
 
-
-
-// Extract style settings from a spec-string which is composed of one or
-// more of the following comma separated elements:
-//
-//      bold                    turns on bold
-//      italic                  turns on italics
-//      fore:#RRGGBB            sets the foreground colour
-//      back:#RRGGBB            sets the background colour
-//      face:[facename]         sets the font face name to use
-//      size:[num]              sets the font size in points
-//      eol                     turns on eol filling
-//      underline               turns on underlining
-//
-
-void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
-
-    wxStringTokenizer tkz(spec, ",");
-    while (tkz.HasMoreTokens()) {
-        wxString token = tkz.GetNextToken();
-
-        wxString option = token.BeforeFirst(':');
-        wxString val = token.AfterFirst(':');
-
-        if (option == "bold")
-            StyleSetBold(styleNum, true);
-
-        else if (option == "italic")
-            StyleSetItalic(styleNum, true);
-
-        else if (option == "underline")
-            StyleSetUnderline(styleNum, true);
-
-        else if (option == "eol")
-            StyleSetEOLFilled(styleNum, true);
-
-        else if (option == "size") {
-            long points;
-            if (val.ToLong(&points))
-                StyleSetSize(styleNum, points);
-        }
-
-        else if (option == "face")
-            StyleSetFaceName(styleNum, val);
-
-        else if (option == "fore")
-            StyleSetForeground(styleNum, wxColourFromSpec(val));
-
-        else if (option == "back")
-            StyleSetBackground(styleNum, wxColourFromSpec(val));
-    }
-}
-
-
-void wxStyledTextCtrl::StyleSetForeground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETFORE, styleNum, wxColourAsLong(colour));
-}
-
-
-void wxStyledTextCtrl::StyleSetBackground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETBACK, styleNum, wxColourAsLong(colour));
-}
-
-
-void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
-    int      size     = font.GetPointSize();
-    wxString faceName = font.GetFaceName();
-    bool     bold     = font.GetWeight() == wxBOLD;
-    bool     italic   = font.GetStyle() != wxNORMAL;
-    bool     under    = font.GetUnderlined();
-
-    StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
+// Set the background colour of a style.
+void wxStyledTextCtrl::StyleSetBackground(int style, const wxColour& back) {
+    SendMsg(2052, style, wxColourAsLong(back));
 }
 
-
-void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
-                                        const wxString& faceName,
-                                        bool bold, bool italic,
-                                        bool underline) {
-    StyleSetSize(styleNum, size);
-    StyleSetFaceName(styleNum, faceName);
-    StyleSetBold(styleNum, bold);
-    StyleSetItalic(styleNum, italic);
-    StyleSetUnderline(styleNum, underline);
+// Set a style to be bold or not.
+void wxStyledTextCtrl::StyleSetBold(int style, bool bold) {
+    SendMsg(2053, style, bold);
 }
 
-
-void wxStyledTextCtrl::StyleSetBold(int styleNum, bool bold) {
-    SendMsg(SCI_STYLESETBOLD, styleNum, bold);
+// Set a style to be italic or not.
+void wxStyledTextCtrl::StyleSetItalic(int style, bool italic) {
+    SendMsg(2054, style, italic);
 }
 
-
-void wxStyledTextCtrl::StyleSetItalic(int styleNum, bool italic) {
-    SendMsg(SCI_STYLESETITALIC, styleNum, italic);
+// Set the size of characters of a style.
+void wxStyledTextCtrl::StyleSetSize(int style, int sizePoints) {
+    SendMsg(2055, style, sizePoints);
 }
 
-
-void wxStyledTextCtrl::StyleSetFaceName(int styleNum, const wxString& faceName) {
-    SendMsg(SCI_STYLESETFONT, styleNum, (long)faceName.c_str());
+// Set the font of a style.
+void wxStyledTextCtrl::StyleSetFaceName(int style, const wxString& fontName) {
+    SendMsg(2056, style, (long)fontName.c_str());
 }
 
-
-void wxStyledTextCtrl::StyleSetSize(int styleNum, int pointSize) {
-    SendMsg(SCI_STYLESETSIZE, styleNum, pointSize);
+// Set a style to have its end of line filled or not.
+void wxStyledTextCtrl::StyleSetEOLFilled(int style, bool filled) {
+    SendMsg(2057, style, filled);
 }
 
-
-void wxStyledTextCtrl::StyleSetEOLFilled(int styleNum, bool fillEOL) {
-    SendMsg(SCI_STYLESETEOLFILLED, styleNum, fillEOL);
-}
-
-
-void wxStyledTextCtrl::StyleSetUnderline(int styleNum, bool underline) {
-    SendMsg(SCI_STYLESETUNDERLINE, styleNum, underline);
-}
-
-
-//----------------------------------------------------------------------
-// Margins in the edit area
-
-int wxStyledTextCtrl::GetLeftMargin() {
-    return SendMsg(SCI_GETMARGINLEFT);
-}
-
-
-int wxStyledTextCtrl::GetRightMargin() {
-    return SendMsg(SCI_GETMARGINRIGHT);
-}
-
-
-void wxStyledTextCtrl::SetMargins(int left, int right) {
-    int flag = 0;
-
-    if (right != -1) {
-        SendMsg(SCI_SETMARGINRIGHT, 0, right);
-    }
-    if (left != -1) {
-        SendMsg(SCI_SETMARGINLEFT, 0, left);
-    }
-}
-
-
-//----------------------------------------------------------------------
-// Margins for selection, markers, etc.
-
-void wxStyledTextCtrl::SetMarginType(int margin, int type) {
-    SendMsg(SCI_SETMARGINTYPEN, margin, type);
-}
-
-
-int  wxStyledTextCtrl::GetMarginType(int margin) {
-    return SendMsg(SCI_GETMARGINTYPEN, margin);
-}
-
-
-void wxStyledTextCtrl::SetMarginWidth(int margin, int pixelWidth) {
-    SendMsg(SCI_SETMARGINWIDTHN, margin, pixelWidth);
-}
-
-
-int  wxStyledTextCtrl::GetMarginWidth(int margin) {
-    return SendMsg(SCI_GETMARGINWIDTHN, margin);
+// Reset the default style to its state at startup
+void wxStyledTextCtrl::StyleResetDefault() {
+    SendMsg(2058, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
-    SendMsg(SCI_SETMARGINMASKN, margin, mask);
+// Set a style to be underlined or not.
+void wxStyledTextCtrl::StyleSetUnderline(int style, bool underline) {
+    SendMsg(2059, style, underline);
 }
 
-
-int  wxStyledTextCtrl::GetMarginMask(int margin) {
-    return SendMsg(SCI_GETMARGINMASKN, margin);
+// Set the foreground colour of the selection and whether to use this setting.
+void wxStyledTextCtrl::SetSelForeground(bool useSetting, const wxColour& fore) {
+    SendMsg(2067, useSetting, wxColourAsLong(fore));
 }
 
-
-void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
-    SendMsg(SCI_SETMARGINSENSITIVEN, margin, sensitive);
+// Set the background colour of the selection and whether to use this setting.
+void wxStyledTextCtrl::SetSelBackground(bool useSetting, const wxColour& back) {
+    SendMsg(2068, useSetting, wxColourAsLong(back));
 }
 
-
-bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
-    return SendMsg(SCI_GETMARGINSENSITIVEN, margin) != 0;
+// Set the foreground colour of the caret.
+void wxStyledTextCtrl::SetCaretForeground(const wxColour& fore) {
+    SendMsg(2069, wxColourAsLong(fore), 0);
 }
 
-
-
-
-//----------------------------------------------------------------------
-// Selection and Caret styles
-
-
-void wxStyledTextCtrl::SetSelectionForeground(const wxColour& colour) {
-    SendMsg(SCI_SETSELFORE, 0, wxColourAsLong(colour));
+// When key+modifier combination km is pressed perform msg.
+void wxStyledTextCtrl::CmdKeyAssign(int key, int modifiers, int cmd) {
+                          SendMsg(2070, MAKELONG(key, modifiers), cmd);
 }
 
-
-void wxStyledTextCtrl::SetSelectionBackground(const wxColour& colour) {
-    SendMsg(SCI_SETSELBACK, 0, wxColourAsLong(colour));
+// When key+modifier combination km do nothing.
+void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
+                          SendMsg(2071, MAKELONG(key, modifiers));
 }
 
+// Drop all key mappings.
+void wxStyledTextCtrl::CmdKeyClearAll() {
+    SendMsg(2072, 0, 0);
+}
 
-void wxStyledTextCtrl::SetCaretForeground(const wxColour& colour) {
-    SendMsg(SCI_SETCARETFORE, wxColourAsLong(colour));
+// Set the styles for a segment of the document.
+void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
+                          SendMsg(2073, length, (long)styleBytes);
 }
 
+// Set a style to be visible or not.
+void wxStyledTextCtrl::StyleSetVisible(int style, bool visible) {
+    SendMsg(2074, style, visible);
+}
 
+// Get the time in milliseconds that the caret is on and off.
 int wxStyledTextCtrl::GetCaretPeriod() {
-    return SendMsg(SCI_GETCARETPERIOD);
+    return SendMsg(2075, 0, 0);
 }
 
+// Get the time in milliseconds that the caret is on and off. 0 = steady on.
+void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds) {
+    SendMsg(2076, periodMilliseconds, 0);
+}
 
-void wxStyledTextCtrl::SetCaretPeriod(int milliseconds) {
-    SendMsg(SCI_SETCARETPERIOD, milliseconds);
+// Set the set of characters making up words for when moving or selecting
+// by word.
+void wxStyledTextCtrl::SetWordChars(const wxString& characters) {
+    SendMsg(2077, 0, (long)characters.c_str());
 }
 
+// Start a sequence of actions that is undone and redone as a unit.
+// May be nested.
+void wxStyledTextCtrl::BeginUndoAction() {
+    SendMsg(2078, 0, 0);
+}
 
+// End a sequence of actions that is undone and redone as a unit.
+void wxStyledTextCtrl::EndUndoAction() {
+    SendMsg(2079, 0, 0);
+}
 
-//----------------------------------------------------------------------
-// Other settings
+// Set an indicator to plain, squiggle or TT.
+void wxStyledTextCtrl::IndicatorSetStyle(int indic, int style) {
+    SendMsg(2080, indic, style);
+}
 
+// Retrieve the style of an indicator.
+int wxStyledTextCtrl::IndicatorGetStyle(int indic) {
+    return SendMsg(2081, indic, 0);
+}
 
-void wxStyledTextCtrl::SetBufferedDraw(bool isBuffered) {
-    SendMsg(SCI_SETBUFFEREDDRAW, isBuffered);
+// Set the foreground colour of an indicator.
+void wxStyledTextCtrl::IndicatorSetForeground(int indic, const wxColour& fore) {
+    SendMsg(2082, indic, wxColourAsLong(fore));
 }
 
+// Retrieve the foreground colour of an indicator.
+wxColour wxStyledTextCtrl::IndicatorGetForeground(int indic) {
+    long c = SendMsg(2083, indic, 0);
+    return wxColourFromLong(c);
+}
 
-void wxStyledTextCtrl::SetTabWidth(int numChars) {
-    SendMsg(SCI_SETTABWIDTH, numChars);
+// Divide each styling byte into lexical class bits (default:5) and indicator
+// bits (default:3). If a lexer requires more than 32 lexical states, then this
+// is used to expand the possible states.
+void wxStyledTextCtrl::SetStyleBits(int bits) {
+    SendMsg(2090, bits, 0);
 }
 
+// Retrieve number of bits in style bytes used to hold the lexical state.
+int wxStyledTextCtrl::GetStyleBits() {
+    return SendMsg(2091, 0, 0);
+}
 
-void wxStyledTextCtrl::SetIndent(int numChars) {
-    SendMsg(SCI_SETINDENT, numChars);
+// Used to hold extra styling information for each line.
+void wxStyledTextCtrl::SetLineState(int line, int state) {
+    SendMsg(2092, line, state);
 }
 
+// Retrieve the extra styling information for a line.
+int wxStyledTextCtrl::GetLineState(int line) {
+    return SendMsg(2093, line, 0);
+}
 
-void wxStyledTextCtrl::SetUseTabs(bool usetabs) {
-    SendMsg(SCI_SETUSETABS, usetabs);
+// Retrieve the last line number that has line state.
+int wxStyledTextCtrl::GetMaxLineState() {
+    return SendMsg(2094, 0, 0);
 }
 
+// Display a auto-completion list.
+// The lenEntered parameter indicates how many characters before
+// the caret should be used to provide context.
+void wxStyledTextCtrl::AutoCompShow(int lenEntered, const wxString& itemList) {
+    SendMsg(2100, lenEntered, (long)itemList.c_str());
+}
 
-void wxStyledTextCtrl::SetLineIndentation(int line, int indentation) {
-    SendMsg(SCI_SETLINEINDENTATION, line, indentation);
+// Remove the auto-completion list from the screen.
+void wxStyledTextCtrl::AutoCompCancel() {
+    SendMsg(2101, 0, 0);
 }
 
+// Is there an auto-completion list visible?
+bool wxStyledTextCtrl::AutoCompActive() {
+    return SendMsg(2102, 0, 0) != 0;
+}
 
-int wxStyledTextCtrl:: GetLineIndentation(int line) {
-    return SendMsg(SCI_GETLINEINDENTATION, line);
+// Retrieve the position of the caret when the auto-completion list was
+// displayed.
+int wxStyledTextCtrl::AutoCompPosStart() {
+    return SendMsg(2103, 0, 0);
 }
 
+// User has selected an item so remove the list and insert the selection.
+void wxStyledTextCtrl::AutoCompComplete() {
+    SendMsg(2104, 0, 0);
+}
 
-int  wxStyledTextCtrl::GetLineIndentationPos(int line) {
-    return SendMsg(SCI_GETLINEINDENTPOSITION, line);
+// Define a set of character that when typed cancel the auto-completion list.
+void wxStyledTextCtrl::AutoCompStops(const wxString& characterSet) {
+    SendMsg(2105, 0, (long)characterSet.c_str());
 }
 
+// Change the separator character in the string setting up an auto-completion
+// list. Default is space but can be changed if items contain space.
+void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter) {
+    SendMsg(2106, separatorCharacter, 0);
+}
 
-void wxStyledTextCtrl::SetWordChars(const wxString& wordChars) {
-    SendMsg(SCI_SETTABWIDTH, 0, (long)wordChars.c_str());
+// Retrieve the auto-completion list separator character.
+int wxStyledTextCtrl::AutoCompGetSeparator() {
+    return SendMsg(2107, 0, 0);
 }
 
+// Select the item in the auto-completion list that starts with a string.
+void wxStyledTextCtrl::AutoCompSelect(const wxString& text) {
+    SendMsg(2108, 0, (long)text.c_str());
+}
 
-void wxStyledTextCtrl::SetUsePop(bool usepopup) {
-    SendMsg(SCI_USEPOPUP, usepopup);
+// Should the auto-completion list be cancelled if the user backspaces to a
+// position before where the box was created.
+void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel) {
+    SendMsg(2110, cancel, 0);
 }
 
+// Retrieve whether auto-completion cancelled by backspacing before start.
+bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
+    return SendMsg(2111, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Brace highlighting
+// Define a set of character that when typed fills up the selected word.
+void wxStyledTextCtrl::AutoCompSetFillUps(const wxString& characterSet) {
+    SendMsg(2112, 0, (long)characterSet.c_str());
+}
 
+// Should a single item auto-completion list automatically choose the item.
+void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle) {
+    SendMsg(2113, chooseSingle, 0);
+}
 
-void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
-    SendMsg(SCI_BRACEHIGHLIGHT, pos1, pos2);
+// Retrieve whether a single item auto-completion list automatically choose the item.
+bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
+    return SendMsg(2114, 0, 0) != 0;
 }
 
+// Set whether case is significant when performing auto-completion searches.
+void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase) {
+    SendMsg(2115, ignoreCase, 0);
+}
 
-void wxStyledTextCtrl::BraceBadlight(int pos) {
-    SendMsg(SCI_BRACEBADLIGHT, pos);
+// Retrieve state of ignore case flag.
+bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
+    return SendMsg(2116, 0, 0) != 0;
 }
 
+// Set the number of spaces used for one level of indentation.
+void wxStyledTextCtrl::SetIndent(int indentSize) {
+    SendMsg(2122, indentSize, 0);
+}
 
-int wxStyledTextCtrl::BraceMatch(int pos, int maxReStyle) {
-    return SendMsg(SCI_BRACEMATCH, pos, maxReStyle);
+// Retrieve indentation size.
+int wxStyledTextCtrl::GetIndent() {
+    return SendMsg(2123, 0, 0);
 }
 
+// Indentation will only use space characters if useTabs is false, otherwise
+// it will use a combination of tabs and spaces.
+void wxStyledTextCtrl::SetUseTabs(bool useTabs) {
+    SendMsg(2124, useTabs, 0);
+}
 
+// Retrieve whether tabs will be used in indentation.
+bool wxStyledTextCtrl::GetUseTabs() {
+    return SendMsg(2125, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Markers
+// Change the indentation of a line to a number of columns.
+void wxStyledTextCtrl::SetLineIndentation(int line, int indentSize) {
+    SendMsg(2126, line, indentSize);
+}
 
-void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
-                                          const wxColour& foreground,
-                                          const wxColour& background) {
-    MarkerSetType(markerNumber, markerSymbol);
-    MarkerSetForeground(markerNumber, foreground);
-    MarkerSetBackground(markerNumber, background);
+// Retrieve the number of columns that a line is indented.
+int wxStyledTextCtrl::GetLineIndentation(int line) {
+    return SendMsg(2127, line, 0);
 }
 
+// Retrieve the position before the first non indentation character on a line.
+int wxStyledTextCtrl::GetLineIndentPosition(int line) {
+    return SendMsg(2128, line, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetType(int markerNumber, int markerSymbol) {
-    SendMsg(SCI_MARKERDEFINE, markerNumber, markerSymbol);
+// Retrieve the column number of a position, taking tab width into account.
+int wxStyledTextCtrl::GetColumn(int pos) {
+    return SendMsg(2129, pos, 0);
 }
 
+// Show or hide the horizontal scroll bar.
+void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show) {
+    SendMsg(2130, show, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETFORE, markerNumber, wxColourAsLong(colour));
+// Is the horizontal scroll bar visible?
+bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
+    return SendMsg(2131, 0, 0) != 0;
 }
 
+// Show or hide indentation guides.
+void wxStyledTextCtrl::SetIndentationGuides(bool show) {
+    SendMsg(2132, show, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETBACK, markerNumber, wxColourAsLong(colour));
+// Are the indentation guides visible?
+bool wxStyledTextCtrl::GetIndentationGuides() {
+    return SendMsg(2133, 0, 0) != 0;
 }
 
+// Set the highlighted indentation guide column.
+// 0 = no highlighted guide.
+void wxStyledTextCtrl::SetHighlightGuide(int column) {
+    SendMsg(2134, column, 0);
+}
 
-int wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
-    return SendMsg(SCI_MARKERADD, line, markerNumber);
+// Get the highlighted indentation guide column.
+int wxStyledTextCtrl::GetHighlightGuide() {
+    return SendMsg(2135, 0, 0);
 }
 
+// Get the position after the last visible characters on a line.
+int wxStyledTextCtrl::GetLineEndPosition(int line) {
+    return SendMsg(2136, line, 0);
+}
 
-void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
-    SendMsg(SCI_MARKERDELETE, line, markerNumber);
+// Get the code page used to interpret the bytes of the document as characters.
+int wxStyledTextCtrl::GetCodePage() {
+    return SendMsg(2137, 0, 0);
 }
 
+// Get the foreground colour of the caret.
+wxColour wxStyledTextCtrl::GetCaretForeground() {
+    long c = SendMsg(2138, 0, 0);
+    return wxColourFromLong(c);
+}
 
-void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
-    SendMsg(SCI_MARKERDELETEALL, markerNumber);
+// In read-only mode?
+bool wxStyledTextCtrl::GetReadOnly() {
+    return SendMsg(2140, 0, 0) != 0;
 }
 
+// Sets the position of the caret.
+void wxStyledTextCtrl::SetCurrentPos(int pos) {
+    SendMsg(2141, pos, 0);
+}
 
-int wxStyledTextCtrl::MarkerGet(int line) {
-    return SendMsg(SCI_MARKERGET);
+// Sets the position that starts the selection - this becomes the anchor.
+void wxStyledTextCtrl::SetSelectionStart(int pos) {
+    SendMsg(2142, pos, 0);
 }
 
+// Returns the position at the start of the selection.
+int wxStyledTextCtrl::GetSelectionStart() {
+    return SendMsg(2143, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerGetNextLine(int lineStart, int markerMask) {
-    return SendMsg(SCI_MARKERNEXT, lineStart, markerMask);
+// Sets the position that ends the selection - this becomes the currentPosition.
+void wxStyledTextCtrl::SetSelectionEnd(int pos) {
+    SendMsg(2144, pos, 0);
 }
 
+// Returns the position at the end of the selection.
+int wxStyledTextCtrl::GetSelectionEnd() {
+    return SendMsg(2145, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerGetPrevLine(int lineStart, int markerMask) {
-//    return SendMsg(SCI_MARKERPREV, lineStart, markerMask);
-    return 0;
+// Sets the print magnification added to the point size of each style for printing.
+void wxStyledTextCtrl::SetPrintMagnification(int magnification) {
+    SendMsg(2146, magnification, 0);
 }
 
+// Returns the print magnification.
+int wxStyledTextCtrl::GetPrintMagnification() {
+    return SendMsg(2147, 0, 0);
+}
 
-int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
-    return SendMsg(SCI_MARKERLINEFROMHANDLE, handle);
+// Modify colours when printing for clearer printed text.
+void wxStyledTextCtrl::SetPrintColourMode(int mode) {
+    SendMsg(2148, mode, 0);
 }
 
+// Returns the print colour mode.
+int wxStyledTextCtrl::GetPrintColourMode() {
+    return SendMsg(2149, 0, 0);
+}
 
-void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
-    SendMsg(SCI_MARKERDELETEHANDLE, handle);
+// Find some text in the document.
+int wxStyledTextCtrl::FindText(int minPos, int maxPos,
+                               const wxString& text,
+                               bool caseSensitive, bool wholeWord) {
+                     TextToFind  ft;
+                     int         flags = 0;
+
+                     flags |= caseSensitive ? SCFIND_MATCHCASE : 0;
+                     flags |= wholeWord     ? SCFIND_WHOLEWORD : 0;
+                     ft.chrg.cpMin = minPos;
+                     ft.chrg.cpMax = maxPos;
+                     ft.lpstrText = (char*)text.c_str();
+
+                     return SendMsg(2150, flags, (long)&ft);
+}
+
+// On Windows will draw the document into a display context such as a printer.
+ int wxStyledTextCtrl::FormatRange(bool   doDraw,
+                                int    startPos,
+                                int    endPos,
+                                wxDC*  draw,
+                                wxDC*  target,  // Why does it use two? Can they be the same?
+                                wxRect renderRect,
+                                wxRect pageRect) {
+                            RangeToFormat fr;
+
+                            fr.hdc = draw;
+                            fr.hdcTarget = target;
+                            fr.rc.top = renderRect.GetTop();
+                            fr.rc.left = renderRect.GetLeft();
+                            fr.rc.right = renderRect.GetRight();
+                            fr.rc.bottom = renderRect.GetBottom();
+                            fr.rcPage.top = pageRect.GetTop();
+                            fr.rcPage.left = pageRect.GetLeft();
+                            fr.rcPage.right = pageRect.GetRight();
+                            fr.rcPage.bottom = pageRect.GetBottom();
+                            fr.chrg.cpMin = startPos;
+                            fr.chrg.cpMax = endPos;
+
+                            return SendMsg(2151, doDraw, (long)&fr);
+}
+
+// Retrieve the line at the top of the display.
+int wxStyledTextCtrl::GetFirstVisibleLine() {
+    return SendMsg(2152, 0, 0);
 }
 
+// Retrieve the contents of a line.
+wxString wxStyledTextCtrl::GetLine(int line) {
+                       wxString text;
+                       int len = LineLength(line);
+                       char* buf = text.GetWriteBuf(len+1);
 
+                       int pos = SendMsg(2153, line, (long)buf);
+                       text.UngetWriteBuf();
 
-//----------------------------------------------------------------------
-// Indicators
+                       return text;
+}
+
+// Returns the number of lines in the document. There is always at least one.
+int wxStyledTextCtrl::GetLineCount() {
+    return SendMsg(2154, 0, 0);
+}
 
+// Sets the size in pixels of the left margin.
+void wxStyledTextCtrl::SetMarginLeft(int width) {
+    SendMsg(2155, 0, width);
+}
 
-void wxStyledTextCtrl::IndicatorSetStyle(int indicNum, int indicStyle) {
-    SendMsg(SCI_INDICSETSTYLE, indicNum, indicStyle);
+// Returns the size in pixels of the left margin.
+int wxStyledTextCtrl::GetMarginLeft() {
+    return SendMsg(2156, 0, 0);
 }
 
+// Sets the size in pixels of the right margin.
+void wxStyledTextCtrl::SetMarginRight(int width) {
+    SendMsg(2157, 0, width);
+}
 
-int wxStyledTextCtrl::IndicatorGetStyle(int indicNum) {
-    return SendMsg(SCI_INDICGETSTYLE, indicNum);
+// Returns the size in pixels of the right margin.
+int wxStyledTextCtrl::GetMarginRight() {
+    return SendMsg(2158, 0, 0);
 }
 
+// Is the document different from when it was last saved?
+bool wxStyledTextCtrl::GetModify() {
+    return SendMsg(2159, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::IndicatorSetColour(int indicNum, const wxColour& colour) {
-    SendMsg(SCI_INDICSETFORE, indicNum, wxColourAsLong(colour));
+// Select a range of text.
+void wxStyledTextCtrl::SetSelection(int start, int end) {
+    SendMsg(2160, start, end);
 }
 
+// Retrieve the selected text.
+wxString wxStyledTextCtrl::GetSelectedText() {
+                            wxString text;
+                            int   start;
+                            int   end;
 
+                            GetSelection(&start, &end);
+                            int   len  = end - start;
+                            char* buff = text.GetWriteBuf(len+1);
 
-//----------------------------------------------------------------------
-// Auto completion
+                            SendMsg(2161, 0, (long)buff);
+                            text.UngetWriteBuf();
+                            return text;
+}
 
+// Retrieve a range of text.
+wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
+                            wxString text;
+                            int   len  = endPos - startPos;
+                            char* buff = text.GetWriteBuf(len+1);
+                            TextRange tr;
+                            tr.lpstrText = buff;
+                            tr.chrg.cpMin = startPos;
+                            tr.chrg.cpMax = endPos;
 
-void wxStyledTextCtrl::AutoCompShow(const wxString& listOfWords) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)listOfWords.c_str());
+                            SendMsg(2162, 0, (long)&tr);
+                            text.UngetWriteBuf();
+                            return text;
 }
 
+// Draw the selection in normal style or with selection highlighted.
+void wxStyledTextCtrl::HideSelection(bool normal) {
+    SendMsg(2163, normal, 0);
+}
 
-void wxStyledTextCtrl::AutoCompCancel() {
-    SendMsg(SCI_AUTOCCANCEL);
+// Retrieve the line containing a position.
+int wxStyledTextCtrl::LineFromPosition(int pos) {
+    return SendMsg(2166, pos, 0);
 }
 
+// Retrieve the position at the start of a line.
+int wxStyledTextCtrl::PositionFromLine(int line) {
+    return SendMsg(2167, line, 0);
+}
 
-bool wxStyledTextCtrl::AutoCompActive() {
-    return SendMsg(SCI_AUTOCACTIVE) != 0;
+// Scroll horizontally and vertically.
+void wxStyledTextCtrl::LineScroll(int columns, int lines) {
+    SendMsg(2168, columns, lines);
 }
 
+// Ensure the caret is visible.
+void wxStyledTextCtrl::EnsureCaretVisible() {
+    SendMsg(2169, 0, 0);
+}
 
-int wxStyledTextCtrl::AutoCompPosAtStart() {
-    return SendMsg(SCI_AUTOCPOSSTART);
+// Replace the selected text with the argument text.
+void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
+    SendMsg(2170, 0, (long)text.c_str());
 }
 
+// Set to read only or read write.
+void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
+    SendMsg(2171, readOnly, 0);
+}
 
-void wxStyledTextCtrl::AutoCompComplete() {
-    SendMsg(SCI_AUTOCCOMPLETE);
+// Will a paste succeed?
+bool wxStyledTextCtrl::CanPaste() {
+    return SendMsg(2173, 0, 0) != 0;
 }
 
+// Are there any undoable actions in the undo history.
+bool wxStyledTextCtrl::CanUndo() {
+    return SendMsg(2174, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::AutoCompStopChars(const wxString& stopChars) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)stopChars.c_str());
+// Delete the undo history.
+void wxStyledTextCtrl::EmptyUndoBuffer() {
+    SendMsg(2175, 0, 0);
 }
 
+// Undo one action in the undo history.
+void wxStyledTextCtrl::Undo() {
+    SendMsg(2176, 0, 0);
+}
 
-void wxStyledTextCtrl::AutoCompSetSeparator(char separator) {
-    SendMsg(SCI_AUTOCSETSEPARATOR, separator);
+// Cut the selection to the clipboard.
+void wxStyledTextCtrl::Cut() {
+    SendMsg(2177, 0, 0);
 }
 
+// Copy the selection to the clipboard.
+void wxStyledTextCtrl::Copy() {
+    SendMsg(2178, 0, 0);
+}
 
-char wxStyledTextCtrl::AutoCompGetSeparator() {
-    return SendMsg(SCI_AUTOCGETSEPARATOR);
+// Paste the contents of the clipboard into the document replacing the selection.
+void wxStyledTextCtrl::Paste() {
+    SendMsg(2179, 0, 0);
 }
 
+// Clear the selection.
+void wxStyledTextCtrl::Clear() {
+    SendMsg(2180, 0, 0);
+}
 
-void wxStyledTextCtrl::AutoCompSelect(const wxString& stringtoselect) {
-    SendMsg(SCI_AUTOCSELECT, (long)stringtoselect.c_str());
+// Replace the contents of the document with the argument text.
+void wxStyledTextCtrl::SetText(const wxString& text) {
+    SendMsg(2181, 0, (long)text.c_str());
 }
 
+// Retrieve all the text in the document.
+wxString wxStyledTextCtrl::GetText() {
+                        wxString text;
+                        int   len  = GetTextLength();
+                        char* buff = text.GetWriteBuf(len+1);
 
-//----------------------------------------------------------------------
-// Call tips
+                        SendMsg(2182, len, (long)buff);
+                        buff[len] = 0;
+                        text.UngetWriteBuf();
+                        return text;
+}
 
-void wxStyledTextCtrl::CallTipShow(int pos, const wxString& text) {
-    SendMsg(SCI_CALLTIPSHOW, pos, (long)text.c_str());
+// Retrieve the number of characters in the document.
+int wxStyledTextCtrl::GetTextLength() {
+    return SendMsg(2183, 0, 0);
 }
 
+// Set to overtype (true) or insert mode
+void wxStyledTextCtrl::SetOvertype(bool overtype) {
+    SendMsg(2186, overtype, 0);
+}
 
-void wxStyledTextCtrl::CallTipCancel() {
-    SendMsg(SCI_CALLTIPCANCEL);
+// Returns true if overtype mode is active otherwise false is returned.
+bool wxStyledTextCtrl::GetOvertype() {
+    return SendMsg(2187, 0, 0) != 0;
 }
 
+// Show a call tip containing a definition near position pos.
+void wxStyledTextCtrl::CallTipShow(int pos, const wxString& definition) {
+    SendMsg(2200, pos, (long)definition.c_str());
+}
 
-bool wxStyledTextCtrl::CallTipActive() {
-    return SendMsg(SCI_CALLTIPACTIVE) != 0;
+// Remove the call tip from the screen.
+void wxStyledTextCtrl::CallTipCancel() {
+    SendMsg(2201, 0, 0);
 }
 
+// Is there an active call tip?
+bool wxStyledTextCtrl::CallTipActive() {
+    return SendMsg(2202, 0, 0) != 0;
+}
 
+// Retrieve the position where the caret was before displaying the call tip.
 int wxStyledTextCtrl::CallTipPosAtStart() {
-    return SendMsg(SCI_CALLTIPPOSSTART);
+    return SendMsg(2203, 0, 0);
 }
 
-
+// Highlight a segment of the definition.
 void wxStyledTextCtrl::CallTipSetHighlight(int start, int end) {
-    SendMsg(SCI_CALLTIPSETHLT, start, end);
+    SendMsg(2204, start, end);
 }
 
+// Set the background colour for the call tip.
+void wxStyledTextCtrl::CallTipSetBackground(const wxColour& back) {
+    SendMsg(2205, wxColourAsLong(back), 0);
+}
 
-void wxStyledTextCtrl::CallTipSetBackground(const wxColour& colour) {
-    SendMsg(SCI_CALLTIPSETBACK, wxColourAsLong(colour));
+// Find the display line of a document line taking hidden lines into account.
+int wxStyledTextCtrl::VisibleFromDocLine(int line) {
+    return SendMsg(2220, line, 0);
 }
 
+// Find the document line of a display line taking hidden lines into account.
+int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay) {
+    return SendMsg(2221, lineDisplay, 0);
+}
 
-//----------------------------------------------------------------------
-// Key bindings
+// Set the fold level of a line.
+// This encodes an integer level along with flags indicating whether the
+// line is a header and whether it is effectively white space.
+void wxStyledTextCtrl::SetFoldLevel(int line, int level) {
+    SendMsg(2222, line, level);
+}
 
-#define MAKELONG(a, b) ((a) | ((b) << 16))
+// Retrieve the fold level of a line.
+int wxStyledTextCtrl::GetFoldLevel(int line) {
+    return SendMsg(2223, line, 0);
+}
 
-void wxStyledTextCtrl::CmdKeyAssign(int key, int modifiers, int cmd) {
-    SendMsg(SCI_ASSIGNCMDKEY, MAKELONG(key, modifiers), cmd);
+// Find the last child line of a header line.
+int wxStyledTextCtrl::GetLastChild(int line, int level) {
+    return SendMsg(2224, line, level);
 }
 
+// Find the parent line of a child line.
+int wxStyledTextCtrl::GetFoldParent(int line) {
+    return SendMsg(2225, line, 0);
+}
 
-void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
-    SendMsg(SCI_CLEARCMDKEY, MAKELONG(key, modifiers));
+// Make a range of lines visible.
+void wxStyledTextCtrl::ShowLines(int lineStart, int lineEnd) {
+    SendMsg(2226, lineStart, lineEnd);
 }
 
+// Make a range of lines invisible.
+void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
+    SendMsg(2227, lineStart, lineEnd);
+}
 
-void wxStyledTextCtrl::CmdKeyClearAll() {
-    SendMsg(SCI_CLEARALLCMDKEYS);
+// Is a line visible?
+bool wxStyledTextCtrl::GetLineVisible(int line) {
+    return SendMsg(2228, line, 0) != 0;
 }
 
+// Show the children of a header line.
+void wxStyledTextCtrl::SetFoldExpanded(int line, bool expanded) {
+    SendMsg(2229, line, expanded);
+}
 
-void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
-    SendMsg(cmd);
+// Is a header line expanded?
+bool wxStyledTextCtrl::GetFoldExpanded(int line) {
+    return SendMsg(2230, line, 0) != 0;
 }
 
+// Switch a header line between expanded and contracted.
+void wxStyledTextCtrl::ToggleFold(int line) {
+    SendMsg(2231, line, 0);
+}
 
+// Ensure a particular line is visible by expanding any header line hiding it.
+void wxStyledTextCtrl::EnsureVisible(int line) {
+    SendMsg(2232, line, 0);
+}
 
-//----------------------------------------------------------------------
-// Print formatting
-
-int
-wxStyledTextCtrl::FormatRange(bool   doDraw,
-                                    int    startPos,
-                                    int    endPos,
-                                    wxDC*  draw,
-                                    wxDC*  target,  // Why does it use two? Can they be the same?
-                                    wxRect renderRect,
-                                    wxRect pageRect) {
-    RangeToFormat fr;
-
-    fr.hdc = draw;
-    fr.hdcTarget = target;
-    fr.rc.top = renderRect.GetTop();
-    fr.rc.left = renderRect.GetLeft();
-    fr.rc.right = renderRect.GetRight();
-    fr.rc.bottom = renderRect.GetBottom();
-    fr.rcPage.top = pageRect.GetTop();
-    fr.rcPage.left = pageRect.GetLeft();
-    fr.rcPage.right = pageRect.GetRight();
-    fr.rcPage.bottom = pageRect.GetBottom();
-    fr.chrg.cpMin = startPos;
-    fr.chrg.cpMax = endPos;
-
-    return SendMsg(SCI_FORMATRANGE, doDraw, (long)&fr);
+// Set some debugging options for folding
+void wxStyledTextCtrl::SetFoldFlags(int flags) {
+    SendMsg(2233, flags, 0);
 }
 
+// How many characters are on a line, not including end of line characters.
+int wxStyledTextCtrl::LineLength(int line) {
+    return SendMsg(2350, line, 0);
+}
 
-//----------------------------------------------------------------------
-// Document Sharing
+// Highlight the characters at two positions.
+void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
+    SendMsg(2351, pos1, pos2);
+}
 
-void* wxStyledTextCtrl::GetDocument() {
-    return (void*)SendMsg(SCI_GETDOCPOINTER);
+// Highlight the character at a position indicating there is no matching brace.
+void wxStyledTextCtrl::BraceBadLight(int pos) {
+    SendMsg(2352, pos, 0);
 }
 
+// Find the position of a matching brace or INVALID_POSITION if no match.
+int wxStyledTextCtrl::BraceMatch(int pos) {
+    return SendMsg(2353, pos, 0);
+}
 
-void wxStyledTextCtrl::SetDocument(void* document) {
-    SendMsg(SCI_SETDOCPOINTER, 0, (long)document);
+// Are the end of line characters visible.
+bool wxStyledTextCtrl::GetViewEOL() {
+    return SendMsg(2355, 0, 0) != 0;
 }
 
+// Make the end of line characters visible or invisible
+void wxStyledTextCtrl::SetViewEOL(bool visible) {
+    SendMsg(2356, visible, 0);
+}
 
-//----------------------------------------------------------------------
-// Folding
+// Retrieve a pointer to the document object.
+void* wxStyledTextCtrl::GetDocPointer() {
+                           return (void*)SendMsg(2357);
+}
 
-int  wxStyledTextCtrl::VisibleFromDocLine(int docLine) {
-    return SendMsg(SCI_VISIBLEFROMDOCLINE, docLine);
+// Change the document object used.
+void wxStyledTextCtrl::SetDocPointer(void* docPointer) {
+                           SendMsg(2358, (long)docPointer);
 }
 
+// Set which document modification events are sent to the container.
+void wxStyledTextCtrl::SetModEventMask(int mask) {
+    SendMsg(2359, mask, 0);
+}
 
-int  wxStyledTextCtrl::DocLineFromVisible(int displayLine) {
-    return SendMsg(SCI_DOCLINEFROMVISIBLE, displayLine);
+// Retrieve the column number which text should be kept within.
+int wxStyledTextCtrl::GetEdgeColumn() {
+    return SendMsg(2360, 0, 0);
 }
 
+// Set the column number of the edge.
+// If text goes past the edge then it is highlighted.
+void wxStyledTextCtrl::SetEdgeColumn(int column) {
+    SendMsg(2361, column, 0);
+}
 
-int  wxStyledTextCtrl::SetFoldLevel(int line, int level) {
-    return SendMsg(SCI_SETFOLDLEVEL, line, level);
+// Retrieve the edge highlight mode.
+int wxStyledTextCtrl::GetEdgeMode() {
+    return SendMsg(2362, 0, 0);
 }
 
+// The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
+// goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
+void wxStyledTextCtrl::SetEdgeMode(int mode) {
+    SendMsg(2363, mode, 0);
+}
 
-int  wxStyledTextCtrl::GetFoldLevel(int line) {
-    return SendMsg(SCI_GETFOLDLEVEL,  line);
+// Retrieve the colour used in edge indication.
+wxColour wxStyledTextCtrl::GetEdgeColour() {
+    long c = SendMsg(2364, 0, 0);
+    return wxColourFromLong(c);
 }
 
+// Change the colour used in edge indication.
+void wxStyledTextCtrl::SetEdgeColour(const wxColour& edgeColour) {
+    SendMsg(2365, wxColourAsLong(edgeColour), 0);
+}
 
-int  wxStyledTextCtrl::GetLastChild(int line, int level) {
-    return SendMsg(SCI_GETLASTCHILD,  line, level);
+// Sets the current caret position to be the search anchor.
+void wxStyledTextCtrl::SearchAnchor() {
+    SendMsg(2366, 0, 0);
 }
 
+// Find some text starting at the search anchor.
+int wxStyledTextCtrl::SearchNext(int flags, const wxString& text) {
+    return SendMsg(2367, flags, (long)text.c_str());
+}
 
-int  wxStyledTextCtrl::GetFoldParent(int line) {
-    return SendMsg(SCI_GETFOLDPARENT,  line);
+// Find some text starting at the search anchor and moving backwards.
+int wxStyledTextCtrl::SearchPrev(int flags, const wxString& text) {
+    return SendMsg(2368, flags, (long)text.c_str());
 }
 
+// Set the way the line the caret is on is kept visible.
+void wxStyledTextCtrl::SetCaretPolicy(int caretPolicy, int caretSlop) {
+    SendMsg(2369, caretPolicy, caretSlop);
+}
 
-void wxStyledTextCtrl::ShowLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_SHOWLINES, lineStart, lineEnd);
+// Retrieves the number of lines completely visible.
+int wxStyledTextCtrl::LinesOnScreen() {
+    return SendMsg(2370, 0, 0);
 }
 
+// Set whether a pop up menu is displayed automatically when the user presses
+// the wrong mouse button.
+void wxStyledTextCtrl::UsePopUp(bool allowPopUp) {
+    SendMsg(2371, allowPopUp, 0);
+}
 
-void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_HIDELINES, lineStart, lineEnd);
+// Is the selection a rectangular. The alternative is the more common stream selection.
+bool wxStyledTextCtrl::SelectionIsRectangle() {
+    return SendMsg(2372, 0, 0) != 0;
 }
 
+// Set the zoom level. This number of points is added to the size of all fonts.
+// It may be positive to magnify or negative to reduce.
+void wxStyledTextCtrl::SetZoom(int zoom) {
+    SendMsg(2373, zoom, 0);
+}
 
-bool wxStyledTextCtrl::GetLineVisible(int line) {
-    return SendMsg(SCI_GETLINEVISIBLE, line) != 0;
+// Retrieve the zoom level.
+int wxStyledTextCtrl::GetZoom() {
+    return SendMsg(2374, 0, 0);
 }
 
+// Create a new document object.
+// Starts with reference count of 1 and not selected into editor.
+void* wxStyledTextCtrl::CreateDocument() {
+                           return (void*)SendMsg(2375);
+}
 
-void wxStyledTextCtrl::SetFoldExpanded(int line, bool expanded) {
-    SendMsg(SCI_SETFOLDEXPANDED, line, expanded);
+// Extend life of document.
+void wxStyledTextCtrl::AddRefDocument(void* docPointer) {
+                           SendMsg(2376, (long)docPointer);
 }
 
+// Release a reference to the document, deleting document if it fades to black.
+void wxStyledTextCtrl::ReleaseDocument(void* docPointer) {
+                           SendMsg(2377, (long)docPointer);
+}
 
-bool wxStyledTextCtrl::GetFoldExpanded(int line) {
-    return SendMsg(SCI_GETFOLDEXPANDED, line) != 0;
+// Get which document modification events are sent to the container.
+int wxStyledTextCtrl::GetModEventMask() {
+    return SendMsg(2378, 0, 0);
 }
 
+// Start notifying the container of all key presses and commands.
+void wxStyledTextCtrl::StartRecord() {
+    SendMsg(3001, 0, 0);
+}
 
-void wxStyledTextCtrl::ToggleFold(int line) {
-    SendMsg(SCI_TOGGLEFOLD, line);
+// Stop notifying the container of all key presses and commands.
+void wxStyledTextCtrl::StopRecord() {
+    SendMsg(3002, 0, 0);
 }
 
+// Set the lexing language of the document.
+void wxStyledTextCtrl::SetLexer(int lexer) {
+    SendMsg(4001, lexer, 0);
+}
 
-void wxStyledTextCtrl::EnsureVisible(int line) {
-    SendMsg(SCI_ENSUREVISIBLE, line);
+// Retrieve the lexing language of the document.
+int wxStyledTextCtrl::GetLexer() {
+    return SendMsg(4002, 0, 0);
 }
 
+// Colourise a segment of the document using the current lexing language.
+void wxStyledTextCtrl::Colourise(int start, int end) {
+    SendMsg(4003, start, end);
+}
 
-void wxStyledTextCtrl::SetFoldFlags(int flags) {
-    SendMsg(SCI_SETFOLDFLAGS, flags);
+// Set up a value that may be used by a lexer for some optional feature.
+void wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
+    SendMsg(4004, (long)key.c_str(), (long)value.c_str());
 }
 
+// Set up the key words used by the lexer.
+void wxStyledTextCtrl::SetKeyWords(int keywordSet, const wxString& keyWords) {
+    SendMsg(4005, keywordSet, (long)keyWords.c_str());
+}
 
+// END of generated section
 //----------------------------------------------------------------------
-// Zooming
-
-void wxStyledTextCtrl::ZoomIn() {
-    SendMsg(SCI_ZOOMIN);
-}
 
 
-void wxStyledTextCtrl::ZoomOut() {
-    SendMsg(SCI_ZOOMOUT);
+// Returns the line number of the line with the caret.
+int wxStyledTextCtrl::GetCurrentLine() {
+    int line = LineFromPosition(GetCurrentPos());
+    return line;
 }
 
 
-void wxStyledTextCtrl::SetZoom(int zoom) {
-    SendMsg(SCI_SETZOOM, zoom);
-}
+// Extract style settings from a spec-string which is composed of one or
+// more of the following comma separated elements:
+//
+//      bold                    turns on bold
+//      italic                  turns on italics
+//      fore:#RRGGBB            sets the foreground colour
+//      back:#RRGGBB            sets the background colour
+//      face:[facename]         sets the font face name to use
+//      size:[num]              sets the font size in points
+//      eol                     turns on eol filling
+//      underline               turns on underlining
+//
+void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
+
+    wxStringTokenizer tkz(spec, ",");
+    while (tkz.HasMoreTokens()) {
+        wxString token = tkz.GetNextToken();
 
+        wxString option = token.BeforeFirst(':');
+        wxString val = token.AfterFirst(':');
 
-int  wxStyledTextCtrl::GetZoom() {
-    return SendMsg(SCI_GETZOOM);
-}
+        if (option == "bold")
+            StyleSetBold(styleNum, true);
 
-//----------------------------------------------------------------------
-// Long Lines
+        else if (option == "italic")
+            StyleSetItalic(styleNum, true);
 
-int wxStyledTextCtrl::GetEdgeColumn() {
-    return SendMsg(SCI_GETEDGECOLUMN);
-}
+        else if (option == "underline")
+            StyleSetUnderline(styleNum, true);
 
-void wxStyledTextCtrl::SetEdgeColumn(int column) {
-    SendMsg(SCI_SETEDGECOLUMN, column);
-}
+        else if (option == "eol")
+            StyleSetEOLFilled(styleNum, true);
 
-wxSTC_EDGE wxStyledTextCtrl::GetEdgeMode() {
-    return (wxSTC_EDGE) SendMsg(SCI_GETEDGEMODE);
-}
+        else if (option == "size") {
+            long points;
+            if (val.ToLong(&points))
+                StyleSetSize(styleNum, points);
+        }
 
-void wxStyledTextCtrl::SetEdgeMode(wxSTC_EDGE mode){
-    SendMsg(SCI_SETEDGEMODE, mode);
-}
+        else if (option == "face")
+            StyleSetFaceName(styleNum, val);
 
-wxColour wxStyledTextCtrl::GetEdgeColour() {
-    long c = SendMsg(SCI_GETEDGECOLOUR);
-    return wxColourFromLong(c);
-}
+        else if (option == "fore")
+            StyleSetForeground(styleNum, wxColourFromSpec(val));
 
-void wxStyledTextCtrl::SetEdgeColour(const wxColour& colour) {
-    SendMsg(SCI_SETEDGECOLOUR, wxColourAsLong(colour));
+        else if (option == "back")
+            StyleSetBackground(styleNum, wxColourFromSpec(val));
+    }
 }
 
 
-//----------------------------------------------------------------------
-// Lexer
+// Set style size, face, bold, italic, and underline attributes from
+// a wxFont's attributes.
+void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
+    int      size     = font.GetPointSize();
+    wxString faceName = font.GetFaceName();
+    bool     bold     = font.GetWeight() == wxBOLD;
+    bool     italic   = font.GetStyle() != wxNORMAL;
+    bool     under    = font.GetUnderlined();
 
-void     wxStyledTextCtrl::SetLexer(wxSTC_LEX lexer) {
-    SendMsg(SCI_SETLEXER, lexer);
+    // TODO: add encoding/charset mapping
+    StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
 }
 
+// Set all font style attributes at once.
+void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
+                                        const wxString& faceName,
+                                        bool bold, bool italic,
+                                        bool underline) {
+    StyleSetSize(styleNum, size);
+    StyleSetFaceName(styleNum, faceName);
+    StyleSetBold(styleNum, bold);
+    StyleSetItalic(styleNum, italic);
+    StyleSetUnderline(styleNum, underline);
 
-wxSTC_LEX wxStyledTextCtrl::GetLexer() {
-    return (wxSTC_LEX)SendMsg(SCI_GETLEXER);
+    // TODO: add encoding/charset mapping
 }
 
 
-void     wxStyledTextCtrl::Colourise(int start, int end) {
-    SendMsg(SCI_COLOURISE, start, end);
+// Perform one of the operations defined by the wxSTC_CMD_* constants.
+void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
+    SendMsg(cmd);
 }
 
 
-void     wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
-    SendMsg(SCI_SETPROPERTY, (long)key.c_str(), (long)value.c_str());
+// Set the left and right margin in the edit area, measured in pixels.
+void wxStyledTextCtrl::SetMargins(int left, int right) {
+    SetMarginLeft(left);
+    SetMarginRight(right);
 }
 
 
-void     wxStyledTextCtrl::SetKeywords(int keywordSet, const wxString& keywordList) {
-    SendMsg(SCI_SETKEYWORDS, keywordSet, (long)keywordList.c_str());
+// Retrieve the start and end positions of the current selection.
+void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
+    if (startPos != NULL)
+        *startPos = SendMsg(SCI_GETSELECTIONSTART);
+    if (endPos != NULL)
+        *endPos = SendMsg(SCI_GETSELECTIONEND);
 }
 
 
-
-//----------------------------------------------------------------------
-// Event mask for Modified Event
-
-void wxStyledTextCtrl::SetModEventMask(int mask) {
-    SendMsg(SCI_SETMODEVENTMASK, mask);
+// Retrieve the point in the window where a position is displayed.
+wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
+    int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
+    int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
+    return wxPoint(x, y);
 }
 
 
-//int wxStyledTextCtrl::GetModEventMask() {
-//    return SendMsg(SCI_GETMODEVENTMASK);
-//}
 
 //----------------------------------------------------------------------
 // Event handlers
@@ -1521,6 +1623,9 @@ void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
     case SCN_NEEDSHOWN:
         eventType = wxEVT_STC_NEEDSHOWN;
         break;
+    case SCN_POSCHANGED:
+        eventType = wxEVT_STC_POSCHANGED;
+        break;
     }
     if (eventType) {
         wxStyledTextEvent evt(eventType, GetId());