WYSIWYG text Editor in python?
Neil Hodgson
nhodgson at bigpond.net.au
Mon Dec 17 16:00:29 EST 2001
Enrique
> ... need a MS-Word-like text editor
RichEdit is built into windows and is fairly capable - WordPad is a very
simple use of RichEdit. [This URL will need unwrapping]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/riche
dit_94xg.asp
> able to render on screen text in bold, [OK]
> italics, [OK]
> underline, [OK]
> greek symbols [OK] and
> super/subscripts. [Available in recent versions as CFM_SUBSCRIPT /
CFM_SUPERSCRIPT but not exposed in WordPad].
> I work with MS-Windows.
RichEdit was previously used as the editor for Python source code within
PythonWin until Mark and I replaced it with Scintilla. Scintilla is better
than RichEdit for source code but worse for documents.
In a quick search I couldn't find a Python demonstration of RichEdit.
Neil
More information about the Python-list
mailing list