2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef nsTextToSubURI_h__
|
|
|
|
#define nsTextToSubURI_h__
|
|
|
|
|
|
|
|
#include "nsITextToSubURI.h"
|
2014-05-08 02:32:00 -07:00
|
|
|
#include "nsString.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//==============================================================
|
|
|
|
class nsTextToSubURI: public nsITextToSubURI {
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITEXTTOSUBURI
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsTextToSubURI();
|
|
|
|
|
|
|
|
private:
|
2014-06-23 15:40:02 -07:00
|
|
|
virtual ~nsTextToSubURI();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// IRI is "Internationalized Resource Identifiers"
|
|
|
|
// http://www.ietf.org/internet-drafts/draft-duerst-iri-01.txt
|
|
|
|
//
|
|
|
|
// if the IRI option is true then we assume that the URI is encoded as UTF-8
|
|
|
|
// note: there is no definite way to distinguish between IRI and a URI encoded
|
|
|
|
// with a non-UTF-8 charset
|
|
|
|
// Use this option carefully -- it may cause dataloss
|
|
|
|
// (recommended to set to true for UI purpose only)
|
|
|
|
//
|
|
|
|
nsresult convertURItoUnicode(const nsAFlatCString &aCharset,
|
|
|
|
const nsAFlatCString &aURI,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIRI,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAString &_retval);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsTextToSubURI_h__
|
|
|
|
|