Can I get any more help on implementing the wxWidgets Scintilla wrapper in my application?
Yeah, the sample code provided with wxWidgets actually adds another layer (a wrapper around the wrapper) that takes a little detective work to figure out. Here’s a simper code snippet from my implementation: wxChar* MyKeyWords = _T(“new delete class “) _T(“if else while do switch case default for foreach break continue on_continue on_done on_break on_exit return “) _T(“int char float string bool data byte typeid dynamic “) _T(“const weakref private ref synchronized “) _T(“mod isa has “) _T(“hexdata ascii unicode “) _T(“true false null “); . . .