2001-09-25 22:53:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-05-26 23:14:05 +00:00
|
|
|
|
|
|
|
#ifndef nsInternetCiter_h__
|
|
|
|
#define nsInternetCiter_h__
|
|
|
|
|
2012-07-13 06:33:42 +00:00
|
|
|
#include "nscore.h"
|
2014-12-02 05:06:55 +00:00
|
|
|
#include "nsStringFwd.h"
|
1999-05-26 23:14:05 +00:00
|
|
|
|
2000-04-20 22:45:54 +00:00
|
|
|
/** Mail citations using standard Internet style.
|
1999-05-26 23:14:05 +00:00
|
|
|
*/
|
2011-03-31 11:32:13 +00:00
|
|
|
class nsInternetCiter
|
1999-05-26 23:14:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-03-31 11:32:13 +00:00
|
|
|
static nsresult GetCiteString(const nsAString & aInString, nsAString & aOutString);
|
2000-04-18 22:39:10 +00:00
|
|
|
|
2011-03-31 11:32:13 +00:00
|
|
|
static nsresult StripCites(const nsAString & aInString, nsAString & aOutString);
|
2000-04-18 22:39:10 +00:00
|
|
|
|
2011-03-31 11:32:13 +00:00
|
|
|
static nsresult Rewrap(const nsAString & aInString,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aWrapCol, uint32_t aFirstLineOffset,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aRespectNewlines,
|
2011-03-31 11:32:13 +00:00
|
|
|
nsAString & aOutString);
|
2000-04-20 22:45:54 +00:00
|
|
|
|
|
|
|
protected:
|
2011-03-31 11:32:13 +00:00
|
|
|
static nsresult StripCitesAndLinebreaks(const nsAString& aInString, nsAString& aOutString,
|
2012-08-22 15:56:38 +00:00
|
|
|
bool aLinebreaksToo, int32_t* aCiteLevel);
|
1999-05-26 23:14:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //nsInternetCiter_h__
|
|
|
|
|