Cross platform RTF control? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:14:12Zhttp://stackoverflow.com/feeds/question/78153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78153/cross-platform-rtf-control1Cross platform RTF control?foobar2008-09-16T22:54:14Z2008-09-24T00:01:56Z
<p>Does anyone know of an RTF control that can be used on Linux/Windows/Mac? It's unfortunate that I have to mention it, but it actually has to be able to save and open rtf files... unlike wxWidgets wxRichTextCtrl for instance.</p>
<p>Edit: Thanks to HappySmileMan for his reply. Better still if it's more of a standalone and not a part of a large library that it would depend on.</p>
<p>Edit: ... and it doesn't look like it can open rtf files... ugh.</p>
http://stackoverflow.com/questions/78153/cross-platform-rtf-control/78176#781760Answer by HappySmileMan for Cross platform RTF control?HappySmileMan2008-09-16T23:00:41Z2008-09-16T23:00:41Z<p>If I understand the question correctly, the feature you are looking for is in the Qt toolkit.</p>
<p>Some info on this can be found at <a href="http://doc.trolltech.com/4.4/richtext.html" rel="nofollow">http://doc.trolltech.com/4.4/richtext.html</a></p>
http://stackoverflow.com/questions/78153/cross-platform-rtf-control/78214#782140Answer by puetzk for Cross platform RTF control?puetzk2008-09-16T23:08:08Z2008-09-16T23:08:08Z<p>Qt's control is HTML, not RTF (though foobar may just mean rich text, in which case it would be fine)</p>
http://stackoverflow.com/questions/78153/cross-platform-rtf-control/107051#1070510Answer by foobar for Cross platform RTF control?foobar2008-09-20T04:05:06Z2008-09-20T04:05:06Z<p>It seems that what I want (cross platform rtf control that reads and writes actual rtf files) doesn't exist, at least not for free and open source.
...I'd accept this answer but it doesn't seem possible.</p>
http://stackoverflow.com/questions/78153/cross-platform-rtf-control/124637#1246371Answer by puetzk for Cross platform RTF control?puetzk2008-09-24T00:01:56Z2008-09-24T00:01:56Z<p>RTF is simply not that common; it's a messy format controlled by Microsoft, basically a text dump of the .doc format. The only open source RTF implementations I know of are in Abiword, OpenOffice, and KWord. All are cross-platform, but none probably qualify as "controls" to your liking (though abiword has a bonobo interface, and KWord has a KPart, so they can be embedded, albeit in a heavyweight fashion).</p>