]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp
Fixed compile error.
[wxWidgets.git] / src / stc / stc.cpp
index e85c952886ed241db5a3ee8c4be9284f5b0e3357..ba9cf82838cd84df4f5dd2f95462083621a67674 100644 (file)
@@ -5,7 +5,7 @@
 //              derive directly from the Scintilla classes, but instead
 //              delegates most things to the real Scintilla class.
 //              This allows the use of Scintilla without polluting the
-//              namespace with all the classes and itentifiers from Scintilla.
+//              namespace with all the classes and identifiers from Scintilla.
 //
 // Author:      Robin Dunn
 //
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
+#include <ctype.h>
+
 #include "wx/stc/stc.h"
 #include "ScintillaWX.h"
 
 #include <wx/tokenzr.h>
 
+// The following code forces a reference to all of the Scintilla lexers.
+// If we don't do something like this, then the linker tends to "optimize"
+// them away. (eric@sourcegear.com)
+
+int wxForceScintillaLexers(void)
+{
+  extern LexerModule lmAda;
+  extern LexerModule lmAVE;
+  extern LexerModule lmConf;
+  extern LexerModule lmCPP;
+  extern LexerModule lmEiffel;
+  extern LexerModule lmHTML;
+  extern LexerModule lmLISP;
+  extern LexerModule lmLua;
+  extern LexerModule lmBatch;  // In LexOthers.cxx
+  extern LexerModule lmPascal;
+  extern LexerModule lmPerl;
+  extern LexerModule lmPython;
+  extern LexerModule lmRuby;
+  extern LexerModule lmSQL;
+  extern LexerModule lmVB;
+
+  if (  &lmAda
+     && &lmAVE
+     && &lmConf
+     && &lmCPP
+     && &lmEiffel
+     && &lmHTML
+     && &lmLISP
+     && &lmLua
+     && &lmBatch
+     && &lmPascal
+     && &lmPerl
+     && &lmPython
+     && &lmRuby
+     && &lmSQL
+     && &lmVB )
+    {
+      return 1;
+    }
+  else
+    {
+      return 0;
+    }
+}
+
 //----------------------------------------------------------------------
 
 const wxChar* wxSTCNameStr = "stcwindow";
 
+DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE )
+DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED )
+DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED )
+DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED )
+DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT )
+DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT )
+DEFINE_EVENT_TYPE( wxEVT_STC_KEY )
+DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK )
+DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI )
+DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED )
+DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD )
+DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK )
+DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN )
+DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED )
+DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED )
+DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION )
+DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED )
+DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART )
+DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND )
+
+
+
+
 BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl)
     EVT_PAINT                   (wxStyledTextCtrl::OnPaint)
     EVT_SCROLLWIN               (wxStyledTextCtrl::OnScrollWin)
     EVT_SIZE                    (wxStyledTextCtrl::OnSize)
     EVT_LEFT_DOWN               (wxStyledTextCtrl::OnMouseLeftDown)
+#ifdef __WXMSW__
+    // Let Scintilla see the double click as a second click
+    EVT_LEFT_DCLICK             (wxStyledTextCtrl::OnMouseLeftDown)
+#endif
     EVT_MOTION                  (wxStyledTextCtrl::OnMouseMove)
     EVT_LEFT_UP                 (wxStyledTextCtrl::OnMouseLeftUp)
-    EVT_RIGHT_UP                (wxStyledTextCtrl::OnMouseRightUp)
+    EVT_CONTEXT_MENU            (wxStyledTextCtrl::OnContextMenu)
+    EVT_MOUSEWHEEL              (wxStyledTextCtrl::OnMouseWheel)
     EVT_CHAR                    (wxStyledTextCtrl::OnChar)
+    EVT_KEY_DOWN                (wxStyledTextCtrl::OnKeyDown)
     EVT_KILL_FOCUS              (wxStyledTextCtrl::OnLoseFocus)
     EVT_SET_FOCUS               (wxStyledTextCtrl::OnGainFocus)
     EVT_SYS_COLOUR_CHANGED      (wxStyledTextCtrl::OnSysColourChanged)
     EVT_ERASE_BACKGROUND        (wxStyledTextCtrl::OnEraseBackground)
     EVT_MENU_RANGE              (-1, -1, wxStyledTextCtrl::OnMenu)
+    EVT_LISTBOX_DCLICK          (-1, wxStyledTextCtrl::OnListBox)
 END_EVENT_TABLE()
 
+
+IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent)
+
 //----------------------------------------------------------------------
 // Constructor and Destructor
 
@@ -50,1184 +132,1646 @@ wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
                                    long style,
                                    const wxString& name) :
     wxControl(parent, id, pos, size,
-              style | wxVSCROLL | wxHSCROLL | wxWANTS_CHARS,
+              style | wxVSCROLL | wxHSCROLL | wxWANTS_CHARS | wxCLIP_CHILDREN,
               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;
 }
 
 
 //----------------------------------------------------------------------
 
-inline long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
+long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
 
     return m_swx->WndProc(msg, wp, lp);
 }
 
 
-//----------------------------------------------------------------------
-// Text retrieval and modification
-
-wxString wxStyledTextCtrl::GetText() {
-    wxString text;
-    int   len  = GetTextLength();
-    char* buff = text.GetWriteBuf(len);
+#ifdef MAKELONG
+#undef MAKELONG
+#endif
 
-    SendMsg(WM_GETTEXT, len, (long)buff);
-    text.UngetWriteBuf();
-    return text;
-}
+#define MAKELONG(a, b) ((a) | ((b) << 16))
 
 
-bool wxStyledTextCtrl::SetText(const wxString& text) {
-    return SendMsg(WM_SETTEXT, 0, (long)text.c_str()) != 0;
-}
-
-
-wxString wxStyledTextCtrl::GetLine(int line) {
-    wxString text;
-    int   len  = GetLineLength(line);
-    char* buff = text.GetWriteBuf(len+1);
-
-    *((WORD*)buff) = len+1;
-    SendMsg(EM_GETLINE, line, (long)buff);
-    text.UngetWriteBuf();
-    return text;
-}
-
-
-void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
-    SendMsg(EM_REPLACESEL, 0, (long)text.c_str());
-}
-
-
-void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
-    SendMsg(EM_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;
-}
-
-
-void wxStyledTextCtrl::GetTextRange(int startPos, int endPos, char* buff) {
-    TEXTRANGE tr;
-    tr.lpstrText = buff;
-    tr.chrg.cpMin = startPos;
-    tr.chrg.cpMax = endPos;
-    SendMsg(EM_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);
-    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);
-    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);
+// Set all style bytes to 0, remove all folding information
+void wxStyledTextCtrl::ClearDocumentStyle() {
+    SendMsg(2005, 0, 0);
 }
 
-
-char wxStyledTextCtrl::GetStyleAt(int pos) {
-    return SendMsg(SCI_GETSTYLEAT, pos);
+// The number of characters in the document
+int wxStyledTextCtrl::GetLength() {
+    return SendMsg(2006, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SetStyleBits(int bits) {
-    SendMsg(SCI_SETSTYLEBITS, bits);
+// Returns the character byte at the position
+int wxStyledTextCtrl::GetCharAt(int pos) {
+    return SendMsg(2007, pos, 0);
 }
 
-
-int  wxStyledTextCtrl::GetStyleBits() {
-    return SendMsg(SCI_GETSTYLEBITS);
+// Returns the position of the caret
+int wxStyledTextCtrl::GetCurrentPos() {
+    return SendMsg(2008, 0, 0);
 }
 
-
-//----------------------------------------------------------------------
-// Clipboard
-
-
-void wxStyledTextCtrl::Cut() {
-    SendMsg(WM_CUT);
+// Returns the position of the opposite end of the selection to the caret
+int wxStyledTextCtrl::GetAnchor() {
+    return SendMsg(2009, 0, 0);
 }
 
-
-void wxStyledTextCtrl::Copy() {
-    SendMsg(WM_COPY);
+// Returns the style byte at the position
+int wxStyledTextCtrl::GetStyleAt(int pos) {
+    return SendMsg(2010, pos, 0);
 }
 
-
-void wxStyledTextCtrl::Paste() {
-    SendMsg(WM_PASTE);
+// Redoes the next action on the undo history
+void wxStyledTextCtrl::Redo() {
+    SendMsg(2011, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanPaste() {
-    return SendMsg(EM_CANPASTE) != 0;
+// Choose between collecting actions into the undo
+// history and discarding them.
+void wxStyledTextCtrl::SetUndoCollection(bool collectUndo) {
+    SendMsg(2012, collectUndo, 0);
 }
 
-
-void wxStyledTextCtrl::ClearClipbrd() {
-    SendMsg(WM_CLEAR);
+// Select all the text in the document.
+void wxStyledTextCtrl::SelectAll() {
+    SendMsg(2013, 0, 0);
 }
 
-
-
-//----------------------------------------------------------------------
-// Undo and Redo
-
-void wxStyledTextCtrl::Undo() {
-    SendMsg(WM_UNDO);
+// Remember the current position in the undo history as the position
+// at which the document was saved.
+void wxStyledTextCtrl::SetSavePoint() {
+    SendMsg(2014, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::CanUndo() {
-    return SendMsg(EM_CANUNDO) != 0;
+// Retrieve a buffer of cells.
+wxString wxStyledTextCtrl::GetStyledText(int startPos, int endPos) {
+                          wxString text;
+                          int len = endPos - startPos;
+                          if (!len) return "";
+                          TextRange tr;
+                          tr.lpstrText = text.GetWriteBuf(len*2);
+                          tr.chrg.cpMin = startPos;
+                          tr.chrg.cpMax = endPos;
+                          SendMsg(2015, 0, (long)&tr);
+                          text.UngetWriteBuf(len*2);
+                          return text;
 }
 
-
-void wxStyledTextCtrl::EmptyUndoBuffer() {
-    SendMsg(EM_EMPTYUNDOBUFFER);
+// Are there any redoable actions in the undo history.
+bool wxStyledTextCtrl::CanRedo() {
+    return SendMsg(2016, 0, 0) != 0;
 }
 
-
-void wxStyledTextCtrl::Redo() {
-    SendMsg(SCI_REDO);
+// Retrieve the line number at which a particular marker is located
+int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
+    return SendMsg(2017, handle, 0);
 }
 
-
-bool wxStyledTextCtrl::CanRedo() {
-    return SendMsg(SCI_CANREDO) != 0;
+// Delete a marker.
+void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
+    SendMsg(2018, handle, 0);
 }
 
-
-void wxStyledTextCtrl::SetUndoCollection(wxSTC_UndoType type) {
-    SendMsg(SCI_SETUNDOCOLLECTION, type);
-    m_undoType = type;
+// Is undo history being collected?
+bool wxStyledTextCtrl::GetUndoCollection() {
+    return SendMsg(2019, 0, 0) != 0;
 }
 
-
-wxSTC_UndoType wxStyledTextCtrl::GetUndoCollection() {
-    // TODO: need support in Scintilla to do this right,
-    //       until then we'll track it ourselves
-    return m_undoType;
+// Are white space characters currently visible?
+// Returns one of SCWS_* constants.
+int wxStyledTextCtrl::GetViewWhiteSpace() {
+    return SendMsg(2020, 0, 0);
 }
 
-
-void wxStyledTextCtrl::BeginUndoAction() {
-    SendMsg(SCI_BEGINUNDOACTION);
+// Make white space characters invisible, always visible or visible outside indentation.
+void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS) {
+    SendMsg(2021, viewWS, 0);
 }
 
-
-void wxStyledTextCtrl::EndUndoAction() {
-    SendMsg(SCI_ENDUNDOACTION);
+// Find the position from a point within the window.
+int wxStyledTextCtrl::PositionFromPoint(wxPoint pt) {
+                              return SendMsg(2022, pt.x, pt.y);
 }
 
-
-
-
-//----------------------------------------------------------------------
-// Selection and information
-
-
-void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
-    SendMsg(EM_GETSEL, (long)startPos, (long)endPos);
+// Find the position from a point within the window but return
+// INVALID_POSITION if not close to text.
+int wxStyledTextCtrl::PositionFromPointClose(int x, int y) {
+    return SendMsg(2023, x, y);
 }
 
+// Set caret to start of a line and ensure it is visible.
+void wxStyledTextCtrl::GotoLine(int line) {
+    SendMsg(2024, line, 0);
+}
 
-void wxStyledTextCtrl::SetSelection(int  startPos, int  endPos) {
-    SendMsg(EM_SETSEL, startPos, endPos);
+// Set caret to a position and ensure it is visible.
+void wxStyledTextCtrl::GotoPos(int pos) {
+    SendMsg(2025, pos, 0);
 }
 
+// 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);
+}
 
-wxString wxStyledTextCtrl::GetSelectedText() {
-    wxString text;
-    int   start;
-    int   end;
+// 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());
+                       if (!len) {
+                           if (linePos)  *linePos = 0;
+                           return "";
+                       }
+                       // Need an extra byte because SCI_GETCURLINE writes a null to the string
+                       char* buf = text.GetWriteBuf(len+1);
 
-    GetSelection(&start, &end);
-    int   len  = end - start;
-    char* buff = text.GetWriteBuf(len);
+                       int pos = SendMsg(2027, len+1, (long)buf);
+                       text.UngetWriteBuf(len);
+                       if (linePos)  *linePos = pos;
 
-    SendMsg(EM_GETSELTEXT, 0, (long)buff);
-    text.UngetWriteBuf();
-    return text;
+                       return text;
 }
 
-
-void wxStyledTextCtrl::HideSelection(bool hide) {
-    SendMsg(EM_HIDESELECTION, hide);
+// Retrieve the position of the last correctly styled character.
+int wxStyledTextCtrl::GetEndStyled() {
+    return SendMsg(2028, 0, 0);
 }
 
-
-bool wxStyledTextCtrl::GetHideSelection() {
-    return m_swx->GetHideSelection();
+// Convert all line endings in the document to one mode.
+void wxStyledTextCtrl::ConvertEOLs(int eolMode) {
+    SendMsg(2029, eolMode, 0);
 }
 
-
-int wxStyledTextCtrl::GetTextLength() {
-    return SendMsg(WM_GETTEXTLENGTH);
+// Retrieve the current end of line mode - one of CRLF, CR, or LF.
+int wxStyledTextCtrl::GetEOLMode() {
+    return SendMsg(2030, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetFirstVisibleLine() {
-    return SendMsg(EM_GETFIRSTVISIBLELINE);
+// Set the current end of line mode.
+void wxStyledTextCtrl::SetEOLMode(int eolMode) {
+    SendMsg(2031, eolMode, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineCount() {
-    return SendMsg(EM_GETLINECOUNT);
+// 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);
 }
 
-
-bool wxStyledTextCtrl::GetModified() {
-    return SendMsg(EM_GETMODIFY) != 0;
+// 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);
 }
 
-
-wxRect wxStyledTextCtrl::GetRect() {
-    PRectangle pr;
-    SendMsg(EM_GETRECT, 0, (long)&pr);
-
-    wxRect rect = wxRectFromPRectangle(pr);
-    return rect;
+// Is drawing done first into a buffer or direct to the screen.
+bool wxStyledTextCtrl::GetBufferedDraw() {
+    return SendMsg(2034, 0, 0) != 0;
 }
 
-
-int wxStyledTextCtrl::GetLineFromPos(int pos) {
-    return SendMsg(EM_LINEFROMCHAR, pos);
+// 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);
 }
 
-
-int wxStyledTextCtrl::GetLineStartPos(int line) {
-    return SendMsg(EM_LINEINDEX, line);
+// 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);
 }
 
-
-int wxStyledTextCtrl::GetLineLengthAtPos(int pos) {
-    return SendMsg(EM_LINELENGTH, pos);
+// Retrieve the visible size of a tab.
+int wxStyledTextCtrl::GetTabWidth() {
+    return SendMsg(2121, 0, 0);
 }
 
-
-int wxStyledTextCtrl::GetLineLength(int line) {
-    return SendMsg(SCI_LINELENGTH, line);
+// 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::GetCurrentLine() {
-    int line = GetLineFromPos(GetCurrentPos());
-    return line;
+                            SendMsg(2040, markerNumber, markerSymbol);
+                            if (foreground.Ok())
+                                MarkerSetForeground(markerNumber, foreground);
+                            if (background.Ok())
+                                MarkerSetBackground(markerNumber, background);
 }
 
-
-wxString wxStyledTextCtrl::GetCurrentLineText(int* linePos) {
-    wxString text;
-    int   len  = GetLineLength(GetCurrentLine());
-    char* buff = text.GetWriteBuf(len+1);
-
-    int pos = SendMsg(SCI_GETCURLINE, len+1, (long)buff);
-    text.UngetWriteBuf();
-
-    if (linePos)
-        *linePos = pos;
-
-    return text;
+// Set the foreground colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& fore) {
+    SendMsg(2041, markerNumber, wxColourAsLong(fore));
 }
 
-
-int wxStyledTextCtrl::PositionFromPoint(wxPoint pt) {
-    Point spt(pt.x, pt.y);
-    long rv = SendMsg(EM_CHARFROMPOS, 0, (long)&spt);
-    return LOWORD(rv);
+// Set the background colour used for a particular marker number.
+void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& back) {
+    SendMsg(2042, markerNumber, wxColourAsLong(back));
 }
 
-
-int wxStyledTextCtrl::LineFromPoint(wxPoint pt) {
-    Point spt(pt.x, pt.y);
-    long rv = SendMsg(EM_CHARFROMPOS, 0, (long)&spt);
-    return HIWORD(rv);
+// Add a marker to a line.
+void wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
+    SendMsg(2043, line, markerNumber);
 }
 
-
-wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
-    Point pt;
-    SendMsg(EM_POSFROMCHAR, pos, (long)&pt);
-    return wxPoint(pt.x, pt.y);
+// Delete a marker from a line
+void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
+    SendMsg(2044, line, markerNumber);
 }
 
-
-int wxStyledTextCtrl::GetCurrentPos() {
-    return SendMsg(SCI_GETCURRENTPOS);
+// Delete all markers with a particular number from all lines
+void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
+    SendMsg(2045, markerNumber, 0);
 }
 
-
-int wxStyledTextCtrl::GetAnchor() {
-    return SendMsg(SCI_GETANCHOR);
+// Get a bit mask of all the markers set on a line.
+int wxStyledTextCtrl::MarkerGet(int line) {
+    return SendMsg(2046, line, 0);
 }
 
-
-void wxStyledTextCtrl::SelectAll() {
-    SendMsg(SCI_SELECTALL);
+// Find the next line after lineStart that includes a marker in mask.
+int wxStyledTextCtrl::MarkerNext(int lineStart, int markerMask) {
+    return SendMsg(2047, lineStart, markerMask);
 }
 
-
-void wxStyledTextCtrl::SetCurrentPosition(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+// 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::SetAnchor(int pos) {
-    SendMsg(SCI_SETANCHOR, pos);
+// Set a margin to be either numeric or symbolic.
+void wxStyledTextCtrl::SetMarginType(int margin, int marginType) {
+    SendMsg(2240, margin, marginType);
 }
 
-
-void wxStyledTextCtrl::GotoPos(int pos) {
-    SendMsg(SCI_GOTOPOS, pos);
+// Retrieve the type of a margin.
+int wxStyledTextCtrl::GetMarginType(int margin) {
+    return SendMsg(2241, margin, 0);
 }
 
-
-void wxStyledTextCtrl::GotoLine(int line) {
-    SendMsg(SCI_GOTOLINE, line);
+// 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::ChangePosition(int delta, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_CHANGEPOSITION, delta, extendSelection);
+// Retrieve the width of a margin in pixels.
+int wxStyledTextCtrl::GetMarginWidth(int margin) {
+    return SendMsg(2243, margin, 0);
 }
 
-
-void wxStyledTextCtrl::PageMove(int cmdKey, bool extendSelection) {
-    // TODO:  Is documented but doesn't seem to be implemented
-    //SendMsg(SCI_PAGEMOVE, cmdKey, extendSelection);
+// Set a mask that determines which markers are displayed in a margin.
+void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
+    SendMsg(2244, margin, mask);
 }
 
-
-void wxStyledTextCtrl::ScrollBy(int columnDelta, int lineDelta) {
-    SendMsg(EM_LINESCROLL, columnDelta, lineDelta);
+// Retrieve the marker mask of a margin.
+int wxStyledTextCtrl::GetMarginMask(int margin) {
+    return SendMsg(2245, margin, 0);
 }
 
-void wxStyledTextCtrl::ScrollToLine(int line) {
-    m_swx->DoScrollToLine(line);
+// Make a margin sensitive or insensitive to mouse clicks.
+void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
+    SendMsg(2246, margin, sensitive);
 }
 
-
-void wxStyledTextCtrl::ScrollToColumn(int column) {
-    m_swx->DoScrollToColumn(column);
+// Retrieve the mouse click sensitivity of a margin.
+bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
+    return SendMsg(2247, margin, 0) != 0;
 }
 
-
-void wxStyledTextCtrl::EnsureCaretVisible() {
-    SendMsg(EM_SCROLLCARET);
+// Clear all the styles and make equivalent to the global default style.
+void wxStyledTextCtrl::StyleClearAll() {
+    SendMsg(2050, 0, 0);
 }
 
-
-void wxStyledTextCtrl::SetCaretPolicy(int policy, int slop) {
-    SendMsg(SCI_SETCARETPOLICY, policy, slop);
+// Set the foreground colour of a style.
+void wxStyledTextCtrl::StyleSetForeground(int style, const wxColour& fore) {
+    SendMsg(2051, style, wxColourAsLong(fore));
 }
 
-
-int wxStyledTextCtrl::GetSelectionType() {
-    return SendMsg(EM_SELECTIONTYPE);
+// Set the background colour of a style.
+void wxStyledTextCtrl::StyleSetBackground(int style, const wxColour& back) {
+    SendMsg(2052, style, wxColourAsLong(back));
 }
 
-
-
-
-//----------------------------------------------------------------------
-// Searching
-
-int wxStyledTextCtrl::FindText(int minPos, int maxPos,
-                                     const wxString& text,
-                                     bool caseSensitive, bool wholeWord) {
-    FINDTEXTEX  ft;
-    int         flags = 0;
-
-    flags |= caseSensitive ? FR_MATCHCASE : 0;
-    flags |= wholeWord     ? FR_WHOLEWORD : 0;
-    ft.chrg.cpMin = minPos;
-    ft.chrg.cpMax = maxPos;
-    ft.lpstrText = (char*)text.c_str();
-
-    return SendMsg(EM_FINDTEXT, flags, (long)&ft);
+// Set a style to be bold or not.
+void wxStyledTextCtrl::StyleSetBold(int style, bool bold) {
+    SendMsg(2053, style, bold);
 }
 
-
-void wxStyledTextCtrl::SearchAnchor() {
-    SendMsg(SCI_SEARCHANCHOR);
+// Set a style to be italic or not.
+void wxStyledTextCtrl::StyleSetItalic(int style, bool italic) {
+    SendMsg(2054, style, italic);
 }
 
-
-int wxStyledTextCtrl::SearchNext(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? FR_MATCHCASE : 0;
-    flags |= wholeWord     ? FR_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHNEXT, flags, (long)text.c_str());
+// Set the size of characters of a style.
+void wxStyledTextCtrl::StyleSetSize(int style, int sizePoints) {
+    SendMsg(2055, style, sizePoints);
 }
 
-
-int wxStyledTextCtrl::SearchPrev(const wxString& text, bool caseSensitive, bool wholeWord) {
-    int flags = 0;
-    flags |= caseSensitive ? FR_MATCHCASE : 0;
-    flags |= wholeWord     ? FR_WHOLEWORD : 0;
-
-    return SendMsg(SCI_SEARCHPREV, flags, (long)text.c_str());
+// Set the font of a style.
+void wxStyledTextCtrl::StyleSetFaceName(int style, const wxString& fontName) {
+    SendMsg(2056, style, (long)fontName.c_str());
 }
 
-//----------------------------------------------------------------------
-// Visible whitespace
-
-
-bool wxStyledTextCtrl::GetViewWhitespace() {
-    return SendMsg(SCI_GETVIEWWS) != 0;
+// 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::SetViewWhitespace(bool visible) {
-    SendMsg(SCI_SETVIEWWS, visible);
+// Reset the default style to its state at startup
+void wxStyledTextCtrl::StyleResetDefault() {
+    SendMsg(2058, 0, 0);
 }
 
-
-
-//----------------------------------------------------------------------
-// Line endings
-
-wxSTC_EOL wxStyledTextCtrl::GetEOLMode() {
-    return (wxSTC_EOL)SendMsg(SCI_GETEOLMODE);
+// Set a style to be underlined or not.
+void wxStyledTextCtrl::StyleSetUnderline(int style, bool underline) {
+    SendMsg(2059, style, underline);
 }
 
-
-void wxStyledTextCtrl::SetEOLMode(wxSTC_EOL mode) {
-    SendMsg(SCI_SETEOLMODE, mode);
+// Set a style to be mixed case, or to force upper or lower case.
+void wxStyledTextCtrl::StyleSetCase(int style, int caseForce) {
+    SendMsg(2060, style, caseForce);
 }
 
-
-bool wxStyledTextCtrl::GetViewEOL() {
-    return SendMsg(SCI_GETVIEWEOL) != 0;
+// 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::SetViewEOL(bool visible) {
-    SendMsg(SCI_SETVIEWEOL, visible);
+// 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));
 }
 
-void wxStyledTextCtrl::ConvertEOL(wxSTC_EOL mode) {
-    SendMsg(SCI_CONVERTEOLS, mode);
+// Set the foreground colour of the caret.
+void wxStyledTextCtrl::SetCaretForeground(const wxColour& fore) {
+    SendMsg(2069, wxColourAsLong(fore), 0);
 }
 
-//----------------------------------------------------------------------
-// Styling
-
-int wxStyledTextCtrl::GetEndStyled() {
-    return SendMsg(SCI_GETENDSTYLED);
+// 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::StartStyling(int pos, int mask) {
-    SendMsg(SCI_STARTSTYLING, pos, mask);
+// When key+modifier combination km do nothing.
+void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
+                          SendMsg(2071, MAKELONG(key, modifiers));
 }
 
-
-void wxStyledTextCtrl::SetStyleFor(int length, int style) {
-    SendMsg(SCI_SETSTYLING, length, style);
+// Drop all key mappings.
+void wxStyledTextCtrl::CmdKeyClearAll() {
+    SendMsg(2072, 0, 0);
 }
 
-
+// Set the styles for a segment of the document.
 void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
-    SendMsg(SCI_SETSTYLINGEX, length, (long)styleBytes);
+                          SendMsg(2073, length, (long)styleBytes);
 }
 
-
-//----------------------------------------------------------------------
-// Style Definition
-
-
-static long wxColourAsLong(const wxColour& co) {
-    return (((long)co.Blue()  << 16) |
-            ((long)co.Green() <<  8) |
-            ((long)co.Red()));
+// Set a style to be visible or not.
+void wxStyledTextCtrl::StyleSetVisible(int style, bool visible) {
+    SendMsg(2074, style, visible);
 }
 
-static wxColour wxColourFromLong(long c) {
-    wxColour clr;
-    clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff);
-    return clr;
+// Get the time in milliseconds that the caret is on and off.
+int wxStyledTextCtrl::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);
+}
 
-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);
+// 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);
+}
 
-void wxStyledTextCtrl::StyleClearAll() {
-    SendMsg(SCI_STYLECLEARALL);
+// End a sequence of actions that is undone and redone as a unit.
+void wxStyledTextCtrl::EndUndoAction() {
+    SendMsg(2079, 0, 0);
 }
 
+// Set an indicator to plain, squiggle or TT.
+void wxStyledTextCtrl::IndicatorSetStyle(int indic, int style) {
+    SendMsg(2080, indic, style);
+}
 
-void wxStyledTextCtrl::StyleResetDefault() {
-    SendMsg(SCI_STYLERESETDEFAULT);
+// Retrieve the style of an indicator.
+int wxStyledTextCtrl::IndicatorGetStyle(int indic) {
+    return SendMsg(2081, indic, 0);
 }
 
+// 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);
+}
 
-// 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
-//
+// 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);
+}
 
-void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
+// Retrieve number of bits in style bytes used to hold the lexical state.
+int wxStyledTextCtrl::GetStyleBits() {
+    return SendMsg(2091, 0, 0);
+}
 
-    wxStringTokenizer tkz(spec, ",");
-    while (tkz.HasMoreTokens()) {
-        wxString token = tkz.GetNextToken();
+// Used to hold extra styling information for each line.
+void wxStyledTextCtrl::SetLineState(int line, int state) {
+    SendMsg(2092, line, state);
+}
 
-        wxString option = token.BeforeFirst(':');
-        wxString val = token.AfterFirst(':');
+// Retrieve the extra styling information for a line.
+int wxStyledTextCtrl::GetLineState(int line) {
+    return SendMsg(2093, line, 0);
+}
 
-        if (option == "bold")
-            StyleSetBold(styleNum, true);
+// Retrieve the last line number that has line state.
+int wxStyledTextCtrl::GetMaxLineState() {
+    return SendMsg(2094, 0, 0);
+}
 
-        else if (option == "italic")
-            StyleSetItalic(styleNum, true);
+// Is the background of the line containing the caret in a different colour?
+bool wxStyledTextCtrl::GetCaretLineVisible() {
+    return SendMsg(2095, 0, 0) != 0;
+}
 
-        else if (option == "eol")
-            StyleSetEOLFilled(styleNum, true);
+// Display the background of the line containing the caret in a different colour.
+void wxStyledTextCtrl::SetCaretLineVisible(bool show) {
+    SendMsg(2096, show, 0);
+}
 
-        else if (option == "size") {
-            long points;
-            if (val.ToLong(&points))
-                StyleSetSize(styleNum, points);
-        }
+// Get the colour of the background of the line containing the caret.
+wxColour wxStyledTextCtrl::GetCaretLineBack() {
+    long c = SendMsg(2097, 0, 0);
+    return wxColourFromLong(c);
+}
 
-        else if (option == "face")
-            StyleSetFaceName(styleNum, val);
+// Set the colour of the background of the line containing the caret.
+void wxStyledTextCtrl::SetCaretLineBack(const wxColour& back) {
+    SendMsg(2098, wxColourAsLong(back), 0);
+}
 
-        else if (option == "fore")
-            StyleSetForeground(styleNum, wxColourFromSpec(val));
+// 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());
+}
 
-        else if (option == "back")
-            StyleSetBackground(styleNum, wxColourFromSpec(val));
-    }
+// 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;
+}
 
-void wxStyledTextCtrl::StyleSetForeground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETFORE, styleNum, wxColourAsLong(colour));
+// 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);
+}
 
-void wxStyledTextCtrl::StyleSetBackground(int styleNum, const wxColour& colour) {
-    SendMsg(SCI_STYLESETBACK, styleNum, wxColourAsLong(colour));
+// 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::StyleSetFont(int styleNum, wxFont& font) {
-    int      size     = font.GetPointSize();
-    wxString faceName = font.GetFaceName();
-    bool     bold     = font.GetWeight() == wxBOLD;
-    bool     italic   = font.GetStyle() != wxNORMAL;
+// Retrieve the auto-completion list separator character.
+int wxStyledTextCtrl::AutoCompGetSeparator() {
+    return SendMsg(2107, 0, 0);
+}
 
-    StyleSetFontAttr(styleNum, size, faceName, bold, italic);
+// 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());
 }
 
+// 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);
+}
 
-void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
-                                        const wxString& faceName,
-                                        bool bold, bool italic) {
-    StyleSetSize(styleNum, size);
-    StyleSetFaceName(styleNum, faceName);
-    StyleSetBold(styleNum, bold);
-    StyleSetItalic(styleNum, italic);
+// Retrieve whether auto-completion cancelled by backspacing before start.
+bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
+    return SendMsg(2111, 0, 0) != 0;
 }
 
+// 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());
+}
 
-void wxStyledTextCtrl::StyleSetBold(int styleNum, bool bold) {
-    SendMsg(SCI_STYLESETBOLD, styleNum, bold);
+// Should a single item auto-completion list automatically choose the item.
+void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle) {
+    SendMsg(2113, chooseSingle, 0);
 }
 
+// Retrieve whether a single item auto-completion list automatically choose the item.
+bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
+    return SendMsg(2114, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::StyleSetItalic(int styleNum, bool italic) {
-    SendMsg(SCI_STYLESETITALIC, styleNum, italic);
+// Set whether case is significant when performing auto-completion searches.
+void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase) {
+    SendMsg(2115, ignoreCase, 0);
 }
 
+// Retrieve state of ignore case flag.
+bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
+    return SendMsg(2116, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::StyleSetFaceName(int styleNum, const wxString& faceName) {
-    SendMsg(SCI_STYLESETFONT, styleNum, (long)faceName.c_str());
+// Display a list of strings and send notification when user chooses one.
+void wxStyledTextCtrl::UserListShow(int listType, const wxString& itemList) {
+    SendMsg(2117, listType, (long)itemList.c_str());
 }
 
+// Set whether or not autocompletion is hidden automatically when nothing matches
+void wxStyledTextCtrl::AutoCompSetAutoHide(bool autoHide) {
+    SendMsg(2118, autoHide, 0);
+}
 
-void wxStyledTextCtrl::StyleSetSize(int styleNum, int pointSize) {
-    SendMsg(SCI_STYLESETSIZE, styleNum, pointSize);
+// Retrieve whether or not autocompletion is hidden automatically when nothing matches
+bool wxStyledTextCtrl::AutoCompGetAutoHide() {
+    return SendMsg(2119, 0, 0) != 0;
 }
 
+// Set the number of spaces used for one level of indentation.
+void wxStyledTextCtrl::SetIndent(int indentSize) {
+    SendMsg(2122, indentSize, 0);
+}
 
-void wxStyledTextCtrl::StyleSetEOLFilled(int styleNum, bool fillEOL) {
-    SendMsg(SCI_STYLESETEOLFILLED, styleNum, fillEOL);
+// 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);
+}
 
-//----------------------------------------------------------------------
-// Margins in the edit area
+// Retrieve whether tabs will be used in indentation.
+bool wxStyledTextCtrl::GetUseTabs() {
+    return SendMsg(2125, 0, 0) != 0;
+}
 
-int wxStyledTextCtrl::GetLeftMargin() {
-    return LOWORD(SendMsg(EM_GETMARGINS));
+// Change the indentation of a line to a number of columns.
+void wxStyledTextCtrl::SetLineIndentation(int line, int indentSize) {
+    SendMsg(2126, line, indentSize);
 }
 
+// Retrieve the number of columns that a line is indented.
+int wxStyledTextCtrl::GetLineIndentation(int line) {
+    return SendMsg(2127, line, 0);
+}
 
-int wxStyledTextCtrl::GetRightMargin() {
-    return HIWORD(SendMsg(EM_GETMARGINS));
+// Retrieve the position before the first non indentation character on a line.
+int wxStyledTextCtrl::GetLineIndentPosition(int line) {
+    return SendMsg(2128, line, 0);
 }
 
+// Retrieve the column number of a position, taking tab width into account.
+int wxStyledTextCtrl::GetColumn(int pos) {
+    return SendMsg(2129, pos, 0);
+}
 
-void wxStyledTextCtrl::SetMargins(int left, int right) {
-    int flag = 0;
-    int val = 0;
+// Show or hide the horizontal scroll bar.
+void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show) {
+    SendMsg(2130, show, 0);
+}
 
-    if (right != -1) {
-        flag |= EC_RIGHTMARGIN;
-        val = right << 16;
-    }
-    if (left != -1) {
-        flag |= EC_LEFTMARGIN;
-        val |= (left & 0xffff);
-    }
+// Is the horizontal scroll bar visible?
+bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
+    return SendMsg(2131, 0, 0) != 0;
+}
 
-    SendMsg(EM_SETMARGINS, flag, val);
+// Show or hide indentation guides.
+void wxStyledTextCtrl::SetIndentationGuides(bool show) {
+    SendMsg(2132, show, 0);
 }
 
+// Are the indentation guides visible?
+bool wxStyledTextCtrl::GetIndentationGuides() {
+    return SendMsg(2133, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Margins for selection, markers, etc.
+// Set the highlighted indentation guide column.
+// 0 = no highlighted guide.
+void wxStyledTextCtrl::SetHighlightGuide(int column) {
+    SendMsg(2134, column, 0);
+}
 
-void wxStyledTextCtrl::SetMarginType(int margin, int type) {
-    SendMsg(SCI_SETMARGINTYPEN, margin, type);
+// 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);
+}
 
-int  wxStyledTextCtrl::GetMarginType(int margin) {
-    return SendMsg(SCI_GETMARGINTYPEN, margin);
+// 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::SetMarginWidth(int margin, int pixelWidth) {
-    SendMsg(SCI_SETMARGINWIDTHN, margin, pixelWidth);
+// 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::GetMarginWidth(int margin) {
-    return SendMsg(SCI_GETMARGINWIDTHN, margin);
+// 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);
+}
 
-void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
-    SendMsg(SCI_SETMARGINMASKN, margin, mask);
+// 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::GetMarginMask(int margin) {
-    return SendMsg(SCI_GETMARGINMASKN, margin);
+// 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);
+}
 
-void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
-    SendMsg(SCI_SETMARGINSENSITIVEN, margin, sensitive);
+// 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);
+}
 
-bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
-    return SendMsg(SCI_GETMARGINSENSITIVEN, margin) != 0;
+// 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);
+                       if (!len) return "";
+                       char* buf = text.GetWriteBuf(len);
 
+                       int pos = SendMsg(2153, line, (long)buf);
+                       text.UngetWriteBuf(len);
 
+                       return text;
+}
 
-//----------------------------------------------------------------------
-// Selection and Caret styles
+// 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 pixelWidth) {
+    SendMsg(2155, 0, pixelWidth);
+}
 
-void wxStyledTextCtrl::SetSelectionForeground(const wxColour& colour) {
-    SendMsg(SCI_SETSELFORE, 0, wxColourAsLong(colour));
+// 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 pixelWidth) {
+    SendMsg(2157, 0, pixelWidth);
+}
 
-void wxStyledTextCtrl::SetSelectionBackground(const wxColour& colour) {
-    SendMsg(SCI_SETSELBACK, 0, wxColourAsLong(colour));
+// 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::SetCaretForeground(const wxColour& colour) {
-    SendMsg(SCI_SETCARETFORE, 0, 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;
 
-int wxStyledTextCtrl::GetCaretPeriod() {
-    return SendMsg(SCI_GETCARETPERIOD);
+                            GetSelection(&start, &end);
+                            int   len  = end - start;
+                            if (!len) return "";
+                            char* buff = text.GetWriteBuf(len);
+
+                            SendMsg(2161, 0, (long)buff);
+                            text.UngetWriteBuf(len);
+                            return text;
 }
 
+// Retrieve a range of text.
+wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
+                            wxString text;
+                            int   len  = endPos - startPos;
+                            if (!len) return "";
+                            char* buff = text.GetWriteBuf(len);
+                            TextRange tr;
+                            tr.lpstrText = buff;
+                            tr.chrg.cpMin = startPos;
+                            tr.chrg.cpMax = endPos;
+
+                            SendMsg(2162, 0, (long)&tr);
+                            text.UngetWriteBuf(len);
+                            return text;
+}
 
-void wxStyledTextCtrl::SetCaretPeriod(int milliseconds) {
-    SendMsg(SCI_SETCARETPERIOD, milliseconds);
+// Draw the selection in normal style or with selection highlighted.
+void wxStyledTextCtrl::HideSelection(bool normal) {
+    SendMsg(2163, normal, 0);
 }
 
+// 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);
+}
 
-//----------------------------------------------------------------------
-// Other settings
+// 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);
+}
 
-void wxStyledTextCtrl::SetBufferedDraw(bool isBuffered) {
-    SendMsg(SCI_SETBUFFEREDDRAW, isBuffered);
+// 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::SetTabWidth(int numChars) {
-    SendMsg(SCI_SETTABWIDTH, numChars);
+// 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::SetWordChars(const wxString& wordChars) {
-    SendMsg(SCI_SETTABWIDTH, 0, (long)wordChars.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);
+}
 
-//----------------------------------------------------------------------
-// Brace highlighting
+// 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);
+}
 
-void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
-    SendMsg(SCI_BRACEHIGHLIGHT, pos1, pos2);
+// 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::BraceBadlight(int pos) {
-    SendMsg(SCI_BRACEBADLIGHT, pos);
+// 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);  // leave room for the null...
 
-int wxStyledTextCtrl::BraceMatch(int pos, int maxReStyle) {
-    return SendMsg(SCI_BRACEMATCH, pos, maxReStyle);
+                        SendMsg(2182, len+1, (long)buff);
+                        text.UngetWriteBuf(len);
+                        return text;
 }
 
+// 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);
+}
 
-//----------------------------------------------------------------------
-// Markers
-
-void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
-                                          const wxColour& foreground,
-                                          const wxColour& background) {
-    MarkerSetType(markerNumber, markerSymbol);
-    MarkerSetForeground(markerNumber, foreground);
-    MarkerSetBackground(markerNumber, background);
+// Returns true if overtype mode is active otherwise false is returned.
+bool wxStyledTextCtrl::GetOvertype() {
+    return SendMsg(2187, 0, 0) != 0;
 }
 
+// Set the width of the insert mode caret
+void wxStyledTextCtrl::SetCaretWidth(int pixelWidth) {
+    SendMsg(2188, pixelWidth, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetType(int markerNumber, int markerSymbol) {
-    SendMsg(SCI_MARKERDEFINE, markerNumber, markerSymbol);
+// Returns the width of the insert mode caret
+int wxStyledTextCtrl::GetCaretWidth() {
+    return SendMsg(2189, 0, 0);
 }
 
+// Sets the position that starts the target which is used for updating the
+// document without affecting the scroll position.
+void wxStyledTextCtrl::SetTargetStart(int pos) {
+    SendMsg(2190, pos, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETFORE, markerNumber, wxColourAsLong(colour));
+// Get the position that starts the target.
+int wxStyledTextCtrl::GetTargetStart() {
+    return SendMsg(2191, 0, 0);
 }
 
+// Sets the position that ends the target which is used for updating the
+// document without affecting the scroll position.
+void wxStyledTextCtrl::SetTargetEnd(int pos) {
+    SendMsg(2192, pos, 0);
+}
 
-void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& colour) {
-    SendMsg(SCI_MARKERSETBACK, markerNumber, wxColourAsLong(colour));
+// Get the position that ends the target.
+int wxStyledTextCtrl::GetTargetEnd() {
+    return SendMsg(2193, 0, 0);
 }
 
+// Replace the target text with the argument text.
+// Returns the length of the replacement text.
 
-int wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
-    return SendMsg(SCI_MARKERADD, line, markerNumber);
+                       int wxStyledTextCtrl::ReplaceTarget(const wxString& text) {
+                           return SendMsg(2194, text.Len(), (long)text.c_str());
+                       
 }
 
+// Replace the target text with the argument text after \d processing.
+// Looks for \d where d is between 1 and 9 and replaces these with the strings
+// matched in the last search operation which were surrounded by \( and \).
+// Returns the length of the replacement text including any change
+// caused by processing the \d patterns.
 
-void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
-    SendMsg(SCI_MARKERDELETE, line, markerNumber);
+                       int wxStyledTextCtrl::ReplaceTargetRE(const wxString& text) {
+                           return SendMsg(2195, text.Len(), (long)text.c_str());
+                       
 }
 
+// Search for a counted string in the target and set the target to the found
+// range.
+// Returns length of range or -1 for failure in which case target is not moved.
 
-void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
-    SendMsg(SCI_MARKERDELETEALL, markerNumber);
+                       int wxStyledTextCtrl::SearchInTarget(const wxString& text) {
+                           return SendMsg(2197, text.Len(), (long)text.c_str());
+                       
 }
 
+// Set the search flags used by SearchInTarget
+void wxStyledTextCtrl::SetSearchFlags(int flags) {
+    SendMsg(2198, flags, 0);
+}
 
-int wxStyledTextCtrl::MarkerGet(int line) {
-    return SendMsg(SCI_MARKERGET);
+// Get the search flags used by SearchInTarget
+int wxStyledTextCtrl::GetSearchFlags() {
+    return SendMsg(2199, 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());
+}
 
-int wxStyledTextCtrl::MarkerGetNextLine(int lineStart, int markerMask) {
-    return SendMsg(SCI_MARKERNEXT, lineStart, markerMask);
+// 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;
+}
 
-int wxStyledTextCtrl::MarkerGetPrevLine(int lineStart, int markerMask) {
-//    return SendMsg(SCI_MARKERPREV, lineStart, markerMask);
-    return 0;
+// Retrieve the position where the caret was before displaying the call tip.
+int wxStyledTextCtrl::CallTipPosAtStart() {
+    return SendMsg(2203, 0, 0);
 }
 
+// Highlight a segment of the definition.
+void wxStyledTextCtrl::CallTipSetHighlight(int start, int end) {
+    SendMsg(2204, start, end);
+}
 
-int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
-    return SendMsg(SCI_MARKERLINEFROMHANDLE, handle);
+// Set the background colour for the call tip.
+void wxStyledTextCtrl::CallTipSetBackground(const wxColour& back) {
+    SendMsg(2205, wxColourAsLong(back), 0);
 }
 
+// Find the display line of a document line taking hidden lines into account.
+int wxStyledTextCtrl::VisibleFromDocLine(int line) {
+    return SendMsg(2220, line, 0);
+}
 
-void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
-    SendMsg(SCI_MARKERDELETEHANDLE, handle);
+// Find the document line of a display line taking hidden lines into account.
+int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay) {
+    return SendMsg(2221, lineDisplay, 0);
 }
 
+// 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);
+}
 
+// Retrieve the fold level of a line.
+int wxStyledTextCtrl::GetFoldLevel(int line) {
+    return SendMsg(2223, line, 0);
+}
 
-//----------------------------------------------------------------------
-// Indicators
+// 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::IndicatorSetStyle(int indicNum, int indicStyle) {
-    SendMsg(SCI_INDICSETSTYLE, indicNum, indicStyle);
+// 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);
+}
 
-int wxStyledTextCtrl::IndicatorGetStyle(int indicNum) {
-    return SendMsg(SCI_INDICGETSTYLE, indicNum);
+// 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::IndicatorSetColour(int indicNum, const wxColour& colour) {
-    SendMsg(SCI_INDICSETSTYLE, indicNum, wxColourAsLong(colour));
+// 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);
+}
 
-//----------------------------------------------------------------------
-// Auto completion
+// Set some debugging options for folding
+void wxStyledTextCtrl::SetFoldFlags(int flags) {
+    SendMsg(2233, flags, 0);
+}
 
+// Ensure a particular line is visible by expanding any header line hiding it.
+// Use the currently set visibility policy to determine which range to display.
+void wxStyledTextCtrl::EnsureVisibleEnforcePolicy(int line) {
+    SendMsg(2234, line, 0);
+}
 
-void wxStyledTextCtrl::AutoCompShow(const wxString& listOfWords) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)listOfWords.c_str());
+// Sets whether a tab pressed when caret is within indentation indents
+void wxStyledTextCtrl::SetTabIndents(bool tabIndents) {
+    SendMsg(2260, tabIndents, 0);
 }
 
+// Does a tab pressed when caret is within indentation indent?
+bool wxStyledTextCtrl::GetTabIndents() {
+    return SendMsg(2261, 0, 0) != 0;
+}
 
-void wxStyledTextCtrl::AutoCompCancel() {
-    SendMsg(SCI_AUTOCCANCEL);
+// Sets whether a backspace pressed when caret is within indentation unindents
+void wxStyledTextCtrl::SetBackSpaceUnIndents(bool bsUnIndents) {
+    SendMsg(2262, bsUnIndents, 0);
 }
 
+// Does a backspace pressed when caret is within indentation unindent?
+bool wxStyledTextCtrl::GetBackSpaceUnIndents() {
+    return SendMsg(2263, 0, 0) != 0;
+}
 
-bool wxStyledTextCtrl::AutoCompActive() {
-    return SendMsg(SCI_AUTOCACTIVE) != 0;
+// Sets the time the mouse must sit still to generate a mouse dwell event
+void wxStyledTextCtrl::SetMouseDwellTime(int periodMilliseconds) {
+    SendMsg(2264, periodMilliseconds, 0);
 }
 
+// Retrieve the time the mouse must sit still to generate a mouse dwell event
+int wxStyledTextCtrl::GetMouseDwellTime() {
+    return SendMsg(2265, 0, 0);
+}
 
-int wxStyledTextCtrl::AutoCompPosAtStart() {
-    return SendMsg(SCI_AUTOCPOSSTART);
+// Move the caret inside current view if it's not there already
+void wxStyledTextCtrl::MoveCaretInsideView() {
+    SendMsg(2401, 0, 0);
 }
 
+// How many characters are on a line, not including end of line characters.
+int wxStyledTextCtrl::LineLength(int line) {
+    return SendMsg(2350, line, 0);
+}
 
-void wxStyledTextCtrl::AutoCompComplete() {
-    SendMsg(SCI_AUTOCCOMPLETE);
+// Highlight the characters at two positions.
+void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
+    SendMsg(2351, pos1, pos2);
 }
 
+// Highlight the character at a position indicating there is no matching brace.
+void wxStyledTextCtrl::BraceBadLight(int pos) {
+    SendMsg(2352, pos, 0);
+}
 
-void wxStyledTextCtrl::AutoCompStopChars(const wxString& stopChars) {
-    SendMsg(SCI_AUTOCSHOW, 0, (long)stopChars.c_str());
+// Find the position of a matching brace or INVALID_POSITION if no match.
+int wxStyledTextCtrl::BraceMatch(int pos) {
+    return SendMsg(2353, pos, 0);
 }
 
+// Are the end of line characters visible.
+bool wxStyledTextCtrl::GetViewEOL() {
+    return SendMsg(2355, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Call tips
+// Make the end of line characters visible or invisible
+void wxStyledTextCtrl::SetViewEOL(bool visible) {
+    SendMsg(2356, visible, 0);
+}
 
-void wxStyledTextCtrl::CallTipShow(int pos, const wxString& text) {
-    SendMsg(SCI_CALLTIPSHOW, pos, (long)text.c_str());
+// Retrieve a pointer to the document object.
+void* wxStyledTextCtrl::GetDocPointer() {
+                           return (void*)SendMsg(2357);
 }
 
+// Change the document object used.
+void wxStyledTextCtrl::SetDocPointer(void* docPointer) {
+                           SendMsg(2358, 0, (long)docPointer);
+}
 
-void wxStyledTextCtrl::CallTipCancel() {
-    SendMsg(SCI_CALLTIPCANCEL);
+// Set which document modification events are sent to the container.
+void wxStyledTextCtrl::SetModEventMask(int mask) {
+    SendMsg(2359, mask, 0);
 }
 
+// Retrieve the column number which text should be kept within.
+int wxStyledTextCtrl::GetEdgeColumn() {
+    return SendMsg(2360, 0, 0);
+}
 
-bool wxStyledTextCtrl::CallTipActive() {
-    return SendMsg(SCI_CALLTIPACTIVE) != 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);
 }
 
+// Retrieve the edge highlight mode.
+int wxStyledTextCtrl::GetEdgeMode() {
+    return SendMsg(2362, 0, 0);
+}
 
-int wxStyledTextCtrl::CallTipPosAtStart() {
-    return SendMsg(SCI_CALLTIPPOSSTART);
+// 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);
 }
 
+// Retrieve the colour used in edge indication.
+wxColour wxStyledTextCtrl::GetEdgeColour() {
+    long c = SendMsg(2364, 0, 0);
+    return wxColourFromLong(c);
+}
 
-void wxStyledTextCtrl::CallTipSetHighlight(int start, int end) {
-    SendMsg(SCI_CALLTIPSETHLT, start, end);
+// Change the colour used in edge indication.
+void wxStyledTextCtrl::SetEdgeColour(const wxColour& edgeColour) {
+    SendMsg(2365, wxColourAsLong(edgeColour), 0);
 }
 
+// Sets the current caret position to be the search anchor.
+void wxStyledTextCtrl::SearchAnchor() {
+    SendMsg(2366, 0, 0);
+}
 
-void wxStyledTextCtrl::CallTipSetBackground(const wxColour& colour) {
-    SendMsg(SCI_CALLTIPSETBACK, wxColourAsLong(colour));
+// Find some text starting at the search anchor.
+// Does not ensure the selection is visible.
+int wxStyledTextCtrl::SearchNext(int flags, const wxString& text) {
+    return SendMsg(2367, flags, (long)text.c_str());
 }
 
+// Find some text starting at the search anchor and moving backwards.
+// Does not ensure the selection is visible.
+int wxStyledTextCtrl::SearchPrev(int flags, const wxString& text) {
+    return SendMsg(2368, flags, (long)text.c_str());
+}
 
-//----------------------------------------------------------------------
-// Key bindings
+// 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::CmdKeyAssign(int key, int modifiers, int cmd) {
-    SendMsg(SCI_ASSIGNCMDKEY, MAKELONG(key, modifiers), cmd);
+// 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::CmdKeyClear(int key, int modifiers) {
-    SendMsg(SCI_CLEARCMDKEY, MAKELONG(key, modifiers));
+// 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);
+}
 
-void wxStyledTextCtrl::CmdKeyClearAll() {
-    SendMsg(SCI_CLEARALLCMDKEYS);
+// 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::CmdKeyExecute(int cmd) {
-    SendMsg(cmd);
+// 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);
+}
 
+// Get which document modification events are sent to the container.
+int wxStyledTextCtrl::GetModEventMask() {
+    return SendMsg(2378, 0, 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) {
-    FORMATRANGE 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(EM_FORMATRANGE, doDraw, (long)&fr);
+// Change internal focus flag
+void wxStyledTextCtrl::SetSTCFocus(bool focus) {
+    SendMsg(2380, focus, 0);
 }
 
+// Get internal focus flag
+bool wxStyledTextCtrl::GetSTCFocus() {
+    return SendMsg(2381, 0, 0) != 0;
+}
 
-//----------------------------------------------------------------------
-// Document Sharing
+// Change error status - 0 = OK
+void wxStyledTextCtrl::SetStatus(int statusCode) {
+    SendMsg(2382, statusCode, 0);
+}
 
-void* wxStyledTextCtrl::GetDocument() {
-    return (void*)SendMsg(SCI_GETDOCPOINTER);
+// Get error status
+int wxStyledTextCtrl::GetStatus() {
+    return SendMsg(2383, 0, 0);
 }
 
+// Set whether the mouse is captured when its button is pressed
+void wxStyledTextCtrl::SetMouseDownCaptures(bool captures) {
+    SendMsg(2384, captures, 0);
+}
 
-void wxStyledTextCtrl::SetDocument(void* document) {
-    SendMsg(SCI_SETDOCPOINTER, 0, (long)document);
+// Get whether mouse gets captured
+bool wxStyledTextCtrl::GetMouseDownCaptures() {
+    return SendMsg(2385, 0, 0) != 0;
 }
 
+// Sets the cursor to one of the SC_CURSOR* values
+void wxStyledTextCtrl::SetCursor(int cursorType) {
+    SendMsg(2386, cursorType, 0);
+}
 
-//----------------------------------------------------------------------
-// Folding
+// Get cursor type
+int wxStyledTextCtrl::GetCursor() {
+    return SendMsg(2387, 0, 0);
+}
 
-int  wxStyledTextCtrl::VisibleFromDocLine(int docLine) {
-    return SendMsg(SCI_VISIBLEFROMDOCLINE, docLine);
+// Move to the previous change in capitalistion
+void wxStyledTextCtrl::WordPartLeft() {
+    SendMsg(2390, 0, 0);
 }
 
+// Move to the previous change in capitalistion extending selection to new caret position.
+void wxStyledTextCtrl::WordPartLeftExtend() {
+    SendMsg(2391, 0, 0);
+}
 
-int  wxStyledTextCtrl::DocLineFromVisible(int displayLine) {
-    return SendMsg(SCI_DOCLINEFROMVISIBLE, displayLine);
+// Move to the change next in capitalistion
+void wxStyledTextCtrl::WordPartRight() {
+    SendMsg(2392, 0, 0);
 }
 
+// Move to the next change in capitalistion extending selection to new caret position.
+void wxStyledTextCtrl::WordPartRightExtend() {
+    SendMsg(2393, 0, 0);
+}
 
-int  wxStyledTextCtrl::SetFoldLevel(int line, int level) {
-    return SendMsg(SCI_SETFOLDLEVEL, line, level);
+// Set the way the display area is determined when a particular line is to be moved to.
+void wxStyledTextCtrl::SetVisiblePolicy(int visiblePolicy, int visibleSlop) {
+    SendMsg(2394, visiblePolicy, visibleSlop);
 }
 
+// Delete back from the current position to the start of the line
+void wxStyledTextCtrl::DelLineLeft() {
+    SendMsg(2395, 0, 0);
+}
 
-int  wxStyledTextCtrl::GetFoldLevel(int line) {
-    return SendMsg(SCI_GETFOLDLEVEL,  line);
+// Delete forwards from the current position to the end of the line
+void wxStyledTextCtrl::DelLineRight() {
+    SendMsg(2396, 0, 0);
 }
 
+// Start notifying the container of all key presses and commands.
+void wxStyledTextCtrl::StartRecord() {
+    SendMsg(3001, 0, 0);
+}
 
-int  wxStyledTextCtrl::GetLastChild(int line) {
-    return SendMsg(SCI_GETLASTCHILD,  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);
+}
 
-int  wxStyledTextCtrl::GetFoldParent(int line) {
-    return SendMsg(SCI_GETFOLDPARENT,  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::ShowLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_SHOWLINES, lineStart, lineEnd);
+// 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());
+}
 
-void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
-    SendMsg(SCI_HIDELINES, lineStart, lineEnd);
+// Set the lexing language of the document based on string name.
+void wxStyledTextCtrl::SetLexerLanguage(const wxString& language) {
+    SendMsg(4006, 0, (long)language.c_str());
 }
 
+// END of generated section
+//----------------------------------------------------------------------
+
 
-bool wxStyledTextCtrl::GetLineVisible(int line) {
-    return SendMsg(SCI_GETLINEVISIBLE, line) != 0;
+// Returns the line number of the line with the caret.
+int wxStyledTextCtrl::GetCurrentLine() {
+    int line = LineFromPosition(GetCurrentPos());
+    return line;
 }
 
 
-void wxStyledTextCtrl::SetFoldExpanded(int line) {
-    SendMsg(SCI_SETFOLDEXPANDED, line);
-}
+// 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(':');
 
-bool wxStyledTextCtrl::GetFoldExpanded(int line) {
-    return SendMsg(SCI_GETFOLDEXPANDED, line) != 0;
-}
+        if (option == "bold")
+            StyleSetBold(styleNum, true);
 
+        else if (option == "italic")
+            StyleSetItalic(styleNum, true);
 
-void wxStyledTextCtrl::ToggleFold(int line) {
-    SendMsg(SCI_TOGGLEFOLD, line);
-}
+        else if (option == "underline")
+            StyleSetUnderline(styleNum, true);
 
+        else if (option == "eol")
+            StyleSetEOLFilled(styleNum, true);
 
-void wxStyledTextCtrl::EnsureVisible(int line) {
-    SendMsg(SCI_ENSUREVISIBLE, line);
-}
+        else if (option == "size") {
+            long points;
+            if (val.ToLong(&points))
+                StyleSetSize(styleNum, points);
+        }
 
+        else if (option == "face")
+            StyleSetFaceName(styleNum, val);
 
-//----------------------------------------------------------------------
-// Long Lines
+        else if (option == "fore")
+            StyleSetForeground(styleNum, wxColourFromSpec(val));
 
-int wxStyledTextCtrl::GetEdgeColumn() {
-    return SendMsg(SCI_GETEDGECOLUMN);
+        else if (option == "back")
+            StyleSetBackground(styleNum, wxColourFromSpec(val));
+    }
 }
 
-void wxStyledTextCtrl::SetEdgeColumn(int column) {
-    SendMsg(SCI_SETEDGECOLUMN, column);
-}
 
-wxSTC_EDGE wxStyledTextCtrl::GetEdgeMode() {
-    return (wxSTC_EDGE) SendMsg(SCI_GETEDGEMODE);
-}
+// 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::SetEdgeMode(wxSTC_EDGE mode){
-    SendMsg(SCI_SETEDGEMODE, mode);
+    // TODO: add encoding/charset mapping
+    StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
 }
 
-wxColour wxStyledTextCtrl::GetEdgeColour() {
-    long c = SendMsg(SCI_GETEDGECOLOUR);
-    return wxColourFromLong(c);
-}
+// 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);
 
-void wxStyledTextCtrl::SetEdgeColour(const wxColour& colour) {
-    SendMsg(SCI_SETEDGECOLOUR, wxColourAsLong(colour));
+    // TODO: add encoding/charset mapping
 }
 
 
-//----------------------------------------------------------------------
-// Lexer
-
-void     wxStyledTextCtrl::SetLexer(wxSTC_LEX lexer) {
-    SendMsg(SCI_SETLEXER, lexer);
+// Perform one of the operations defined by the wxSTC_CMD_* constants.
+void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
+    SendMsg(cmd);
 }
 
 
-wxSTC_LEX wxStyledTextCtrl::GetLexer() {
-    return (wxSTC_LEX)SendMsg(SCI_GETLEXER);
+// 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::Colourise(int start, int end) {
-    SendMsg(SCI_COLOURISE, start, end);
+// 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);
 }
 
 
-void     wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
-    SendMsg(SCI_SETPROPERTY, (long)key.c_str(), (long)value.c_str());
+// 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);
+}
+
+// Scroll enough to make the given line visible
+void wxStyledTextCtrl::ScrollToLine(int line) {
+    m_swx->DoScrollToLine(line);
 }
 
 
-void     wxStyledTextCtrl::SetKeywords(int keywordSet, const wxString& keywordList) {
-    SendMsg(SCI_SETKEYWORDS, keywordSet, (long)keywordList.c_str());
+// Scroll enough to make the given column visible
+void wxStyledTextCtrl::ScrollToColumn(int column) {
+    m_swx->DoScrollToColumn(column);
 }
 
 
@@ -1272,27 +1816,44 @@ void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) {
 }
 
 
-void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent& evt) {
+void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) {
     wxPoint pt = evt.GetPosition();
+    ScreenToClient(&pt.x, &pt.y);
     m_swx->DoContextMenu(Point(pt.x, pt.y));
 }
 
+
+void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
+    m_swx->DoMouseWheel(evt.GetWheelRotation(),
+                        evt.GetWheelDelta(),
+                        evt.GetLinesPerAction(),
+                        evt.ControlDown());
+}
+
+
 void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
-    int  processed = 0;
     long key = evt.KeyCode();
     if ((key > WXK_ESCAPE) &&
         (key != WXK_DELETE) && (key < 255) &&
         !evt.ControlDown() && !evt.AltDown()) {
 
         m_swx->DoAddChar(key);
-        processed = true;
     }
     else {
-        key = toupper(key);
-        processed = m_swx->DoKeyDown(key, evt.ShiftDown(),
-                                     evt.ControlDown(), evt.AltDown());
+        evt.Skip();
     }
-    if (! processed)
+}
+
+void wxStyledTextCtrl::OnKeyDown(wxKeyEvent& evt) {
+    long key = evt.KeyCode();
+    //key = toupper(key);  //**** ????
+    bool consumed = FALSE;
+    int processed = m_swx->DoKeyDown(key,
+                                     evt.ShiftDown(),
+                                     evt.ControlDown(),
+                                     evt.AltDown(),
+                                     &consumed);
+    if (!processed && !consumed)
         evt.Skip();
 }
 
@@ -1319,9 +1880,15 @@ void wxStyledTextCtrl::OnMenu(wxCommandEvent& evt) {
 }
 
 
+void wxStyledTextCtrl::OnListBox(wxCommandEvent& evt) {
+    m_swx->DoOnListBox();
+}
+
+
 //----------------------------------------------------------------------
 // Turn notifications from Scintilla into events
 
+
 void wxStyledTextCtrl::NotifyChange() {
     wxStyledTextEvent evt(wxEVT_STC_CHANGE, GetId());
     GetEventHandler()->ProcessEvent(evt);
@@ -1329,69 +1896,110 @@ void wxStyledTextCtrl::NotifyChange() {
 
 void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
     SCNotification& scn = *_scn;
-    int eventType = 0;
+    wxStyledTextEvent evt(0, GetId());
+
+    evt.SetPosition(scn.position);
+    evt.SetKey(scn.ch);
+    evt.SetModifiers(scn.modifiers);
+
     switch (scn.nmhdr.code) {
     case SCN_STYLENEEDED:
-        eventType = wxEVT_STC_STYLENEEDED;
+        evt.SetEventType(wxEVT_STC_STYLENEEDED);
         break;
+
     case SCN_CHARADDED:
-        eventType = wxEVT_STC_CHARADDED;
-        break;
-    case SCN_UPDATEUI:
-        eventType = wxEVT_STC_UPDATEUI;
+        evt.SetEventType(wxEVT_STC_CHARADDED);
         break;
+
     case SCN_SAVEPOINTREACHED:
-        eventType = wxEVT_STC_SAVEPOINTREACHED;
+        evt.SetEventType(wxEVT_STC_SAVEPOINTREACHED);
         break;
+
     case SCN_SAVEPOINTLEFT:
-        eventType = wxEVT_STC_SAVEPOINTLEFT;
+        evt.SetEventType(wxEVT_STC_SAVEPOINTLEFT);
         break;
+
     case SCN_MODIFYATTEMPTRO:
-        eventType = wxEVT_STC_ROMODIFYATTEMPT;
+        evt.SetEventType(wxEVT_STC_ROMODIFYATTEMPT);
+        break;
+
+    case SCN_KEY:
+        evt.SetEventType(wxEVT_STC_KEY);
         break;
+
     case SCN_DOUBLECLICK:
-        eventType = wxEVT_STC_DOUBLECLICK;
+        evt.SetEventType(wxEVT_STC_DOUBLECLICK);
         break;
-    case SCN_MODIFIED:
-        eventType = wxEVT_STC_MODIFIED;
+
+    case SCN_UPDATEUI:
+        evt.SetEventType(wxEVT_STC_UPDATEUI);
         break;
-    case SCN_KEY:
-        eventType = wxEVT_STC_KEY;
+
+    case SCN_MODIFIED:
+        evt.SetEventType(wxEVT_STC_MODIFIED);
+        evt.SetModificationType(scn.modificationType);
+        if (scn.text)
+            evt.SetText(wxString(scn.text, scn.length));
+        evt.SetLength(scn.length);
+        evt.SetLinesAdded(scn.linesAdded);
+        evt.SetLine(scn.line);
+        evt.SetFoldLevelNow(scn.foldLevelNow);
+        evt.SetFoldLevelPrev(scn.foldLevelPrev);
         break;
+
     case SCN_MACRORECORD:
-        eventType = wxEVT_STC_MACRORECORD;
+        evt.SetEventType(wxEVT_STC_MACRORECORD);
+        evt.SetMessage(scn.message);
+        evt.SetWParam(scn.wParam);
+        evt.SetLParam(scn.lParam);
         break;
+
     case SCN_MARGINCLICK:
-        eventType = wxEVT_STC_MARGINCLICK;
+        evt.SetEventType(wxEVT_STC_MARGINCLICK);
+        evt.SetMargin(scn.margin);
         break;
+
     case SCN_NEEDSHOWN:
-        eventType = wxEVT_STC_NEEDSHOWN;
+        evt.SetEventType(wxEVT_STC_NEEDSHOWN);
+        evt.SetLength(scn.length);
+        break;
+
+    case SCN_POSCHANGED:
+        evt.SetEventType(wxEVT_STC_POSCHANGED);
+        break;
+
+    case SCN_PAINTED:
+        evt.SetEventType(wxEVT_STC_PAINTED);
+        break;
+
+    case SCN_USERLISTSELECTION:
+        evt.SetEventType(wxEVT_STC_USERLISTSELECTION);
+        evt.SetListType(scn.listType);
+        evt.SetText(scn.text);
+        break;
+
+    case SCN_URIDROPPED:
+        evt.SetEventType(wxEVT_STC_URIDROPPED);
+        evt.SetText(scn.text);
+        break;
+
+    case SCN_DWELLSTART:
+        evt.SetEventType(wxEVT_STC_DWELLSTART);
+        evt.SetX(scn.x);
+        evt.SetY(scn.y);
+        break;
+
+    case SCN_DWELLEND:
+        evt.SetEventType(wxEVT_STC_DWELLEND);
+        evt.SetX(scn.x);
+        evt.SetY(scn.y);
         break;
-    }
-    if (eventType) {
-        wxStyledTextEvent evt(eventType, GetId());
-        evt.SetPosition(scn.position);
-        evt.SetKey(scn.ch);
-        evt.SetModifiers(scn.modifiers);
-        if (eventType == wxEVT_STC_MODIFIED) {
-            evt.SetModificationType(scn.modificationType);
-            evt.SetText(scn.text);
-            evt.SetLength(scn.length);
-            evt.SetLinesAdded(scn.linesAdded);
-            evt.SetLine(scn.line);
-            evt.SetFoldLevelNow(scn.foldLevelNow);
-            evt.SetFoldLevelPrev(scn.foldLevelPrev);
-        }
-        if (eventType == wxEVT_STC_MARGINCLICK)
-            evt.SetMargin(scn.margin);
-        if (eventType == wxEVT_STC_MACRORECORD) {
-            evt.SetMessage(scn.message);
-            evt.SetWParam(scn.wParam);
-            evt.SetLParam(scn.lParam);
-        }
 
-        GetEventHandler()->ProcessEvent(evt);
+    default:
+        return;
     }
+
+    GetEventHandler()->ProcessEvent(evt);
 }
 
 
@@ -1416,8 +2024,9 @@ wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType, int id)
     m_message = 0;
     m_wParam = 0;
     m_lParam = 0;
-
-
+    m_listType = 0;
+    m_x = 0;
+    m_y = 0;
 }
 
 bool wxStyledTextEvent::GetShift() const { return (m_modifiers & SCI_SHIFT) != 0; }
@@ -1445,7 +2054,9 @@ void wxStyledTextEvent::CopyObject(wxObject& obj) const {
     o->m_wParam =        m_wParam;
     o->m_lParam =        m_lParam;
 
-
+    o->m_listType =     m_listType;
+    o->m_x =            m_x;
+    o->m_y =            m_y;
 
 }