"Lars Heuer" <heuer@semagia. com> wrote
[color=blue][color=green]
>> Is there any HTML WYSIWYG editor component available for
>> Python/wxPython? Thanks.[/color]
>
> There is wxMozilla: http://wxMozilla.sf.net/[/color]
Thanks for the tip. Looks like a very elaborate component.
Is there anything simpler? I'd need just simple HTML editing
with formatting (bold, italic), links, and tables.
Hi skol,
[color=blue][color=green][color=darkred]
>>> Is there any HTML WYSIWYG editor component available for
>>> Python/wxPython? Thanks.[/color]
>>
>> There is wxMozilla: http://wxMozilla.sf.net/[/color][/color]
[color=blue]
> Thanks for the tip. Looks like a very elaborate component.
> Is there anything simpler? I'd need just simple HTML editing
> with formatting (bold, italic), links, and tables.[/color]
You can use wxHTML for showing HTML and wxTextCtrl with (if I remember
right) the wxTE_RICHEDIT flag for editing.
Or the Scintilla component that should work for simple bold, italic
and link formating.
Tables might be difficult, though.
If you'll like to see wxMozilla Editor in action you may take a look
at http://www.eclass.net/
You could try the (very) simple HTML editor I use for my CM project. It
can only handle B, I, U and A, but then again, it was never meant to do
more. It's written in wxPython, based on Scintilla and can probably be
extended to fit your needs.
Comment