Bug 1669129 - [devtools] Enable devtools.overflow.debugging.enabled. r=jdescottes
[gecko.git] / editor / nsIEditorMailSupport.idl
blob9d58f14dbb6b113a38a39631ed3ae568d792c4a0
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsISupports.idl"
8 interface nsIArray;
10 webidl Node;
12 [scriptable, builtinclass, uuid(fdf23301-4a94-11d3-9ce4-9960496c41bc)]
13 interface nsIEditorMailSupport : nsISupports
15 /** Insert a string as quoted text
16 * (whose representation is dependant on the editor type),
17 * replacing the selected text (if any),
18 * including, if possible, a "cite" attribute.
19 * @param aQuotedText The actual text to be quoted
20 * @param aCitation The "mid" URL of the source message
21 * @param aInsertHTML Insert as html? (vs plaintext)
22 * @return The node which was inserted
24 [can_run_script]
25 Node insertAsCitedQuotation(in AString aQuotedText,
26 in AString aCitation,
27 in boolean aInsertHTML);
29 /**
30 * Rewrap the selected part of the document, re-quoting if necessary.
31 * @param aRespectNewlines Try to maintain newlines in the original?
33 [can_run_script]
34 void rewrap(in boolean aRespectNewlines);