2001-03-27 23:11:08 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsICiter_h__
|
|
|
|
#define nsICiter_h__
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "domstubs.idl"
|
2001-04-07 00:45:26 +00:00
|
|
|
%{C++
|
|
|
|
#include "nsString.h"
|
|
|
|
%}
|
2001-03-27 23:11:08 +00:00
|
|
|
/** Handle plaintext citations, as in mail quoting.
|
|
|
|
* Used by the editor but not dependant on it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
[scriptable, uuid(a6cf9102-15b3-11d2-932e-00805f8add32)]
|
|
|
|
|
|
|
|
interface nsICiter : nsISupports
|
|
|
|
{
|
|
|
|
|
|
|
|
DOMString GetCiteString(in DOMString aInString);
|
|
|
|
|
|
|
|
DOMString StripCites(in DOMString aInString);
|
|
|
|
|
|
|
|
DOMString Rewrap(in DOMString aInString,
|
|
|
|
in unsigned long aWrapCol, in unsigned long aFirstLineOffset,
|
|
|
|
in boolean aRespectNewlines);
|
|
|
|
};
|
|
|
|
|
|
|
|
|