Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML Editor for CBuilder/Delphi

I need to find basic WYSIWYG HTML editor component for C++Builder 5 to let users to create some simple text that I will paste into existing HTML page template. Just a simple support to create links, add images, use headers/bold/italic.

like image 563
Riho Avatar asked Dec 31 '08 07:12

Riho


2 Answers

You can drop a TWebBrowser on a form and enable designmode on it, like this:

// Delphi code..
(WebBrowser1.Document as IHTMLDocument2).designMode := 'on';

After executing the above line, the page will be editable. You can type extra text, delete, etc. If you want to make selections bold or insert images, you're going to have to add some buttons to program that. The cool thing is that you can do that either from Delphi (or C++ builder in your case) or you can add javascript on the page to edit itself.

The contents of the page can be retrieved from

(WebBrowser.Document as IHTMLDocument2).body.innerHTML;

Remember that (WebBrowser.Document as IHTMLDocument2) could be nil.


Anyway, I can imagine that there are components around that do all the work for you, which is probably a better route to take than reinventing the wheel.

like image 135
Wouter van Nifterick Avatar answered Oct 13 '22 10:10

Wouter van Nifterick


I would recommend TRichView due to its world class support, and deep feature set. While it is not a true "HTML" editor, it does support the ability to export to HTML, even generating the appropriate CSS styles if necessary. I use it for handling the email portion of our main product and it works very well. Internally the storage is either RTF (extended to support images better), or as a proprietary format. There are plenty of examples of a simple editors which would easily suit your needs.

like image 38
skamradt Avatar answered Oct 13 '22 10:10

skamradt