Recently, I was working on a project that required my to take RTF code and make
it appear as formatted text inside a text control. Since the wx support for RTF
isn't here yet, I worked on a solution that would get me by until the real thing
comes out.
NOTE: This solution is Windows specific. Sorry, everybody else...
I put the RTF code on the clipboard as 'Rich Text Format' then paste it to the
text box. wx has it's own module to access the clipboard, but in order to put
something on as RTF, I'd have have to create my own rich-text text object.
You can check it out at the wxPyWiki:
<http://wiki.wxpython.org/index.cgi/Display_RTF_Using_the_Clipboard>