I am currently developing an application in wxPython, one of its main parts is to accept C code through multiline TextCtrl, and it would be good if entered C code could be syntax highlighted.

Is there a way to achieve this with TextCtrl, or is there any other convenient method for achieving the same purpose?

link|improve this question
feedback

1 Answer

Don't use a standard wxTextCtrl for it, use the wxWidgets wrapper of the Scintilla syntax highlighting editor component. With wxPython this would be wx.stc.StyledTextCtrl.

You can set one of various syntax highlighters with this class, there is one for C/C++ too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.