views:

96

answers:

1

I'm using PyQT4 to create a little GUI that allows people in my lab to write notes about physiological experiments. Right now I've got plain text editing going but it would be nice if the user could use rich text editing to set the currently selected text's font properties, bold/italic/font/font size would be sufficient. I am specifically looking for a ready-made component that would connect to and control a QTextEdit. If adding images was supported that would be even better. I am looking for something no more fancy than stackoverflow's javascript wysiwyg rich text editor which I am using to write this question, but in PyQT4, obviously.

I could program this toolbar myself, however I am sure someone has already done this, yet Google has been unhelpful. If not something ready-made, then at least a stub I could copy-paste snippets of. Thanks!

A: 

I have a WIP one in my OpenWorld software: http://traipse.assembla.com/wiki/show/open-world It's far from complete and could probably be done better. It's GPL v2

Prof.Ebral