1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/netwerk/streamconv/public/nsITXTToHTMLConv.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#include "nsIStreamConverter.idl" 1.10 + 1.11 +[scriptable, uuid(933355f6-1dd2-11b2-a9b0-d335b9e35983)] 1.12 +interface nsITXTToHTMLConv : nsIStreamConverter { 1.13 + /** 1.14 + * @param text: Title to set for the HTML document. Only applicable if 1.15 + * preFormatHTML(true) is called. 1.16 + * @result The given title will be used to form an HTML document 1.17 + * from the plain text document. 1.18 + */ 1.19 + void setTitle(in wstring text); 1.20 + 1.21 + /** 1.22 + * @param value: true to use an HTML header and footer on the document, 1.23 + * false to omit it. 1.24 + * @result The document will use a header and footer if value is 1.25 + * true. 1.26 + */ 1.27 + void preFormatHTML(in boolean value); 1.28 +};