1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
37 #ifndef nsMetaCharsetObserverFactory_h__
38 #define nsMetaCharsetObserverFactory_h__
40 #include "nsIFactory.h"
41 #include "nsIMetaCharsetService.h"
42 #include "nsIElementObserver.h"
43 #include "nsIObserver.h"
44 #include "nsObserverBase.h"
45 #include "nsWeakReference.h"
47 //==========================================================================
49 // Class declaration for the class
51 //==========================================================================
52 class nsMetaCharsetObserver
: public nsIElementObserver
,
54 public nsObserverBase
,
55 public nsIMetaCharsetService
,
56 public nsSupportsWeakReference
{
58 nsMetaCharsetObserver();
59 virtual ~nsMetaCharsetObserver();
61 /* methode for nsIElementObserver */
64 * Subject call observer when the parser hit the tag
65 * @param aDocumentID- ID of the document
66 * @param aTag- the tag
67 * @param numOfAttributes - number of attributes
68 * @param nameArray - array of name.
69 * @param valueArray - array of value
71 NS_IMETHOD
Notify(PRUint32 aDocumentID
, eHTMLTags aTag
, PRUint32 numOfAttributes
,
72 const PRUnichar
* nameArray
[], const PRUnichar
* valueArray
[]);
73 NS_IMETHOD
Notify(PRUint32 aDocumentID
, const PRUnichar
* aTag
, PRUint32 numOfAttributes
,
74 const PRUnichar
* nameArray
[], const PRUnichar
* valueArray
[]);
76 NS_IMETHOD
Notify(nsISupports
* aWebShell
,
77 nsISupports
* aChannel
,
78 const PRUnichar
* aTag
,
79 const nsStringArray
* keys
,
80 const nsStringArray
* values
,
81 const PRUint32 aFlags
);
85 /* methode for nsIObserver */
88 /* methode for nsIMetaCharsetService */
94 NS_IMETHOD
Notify(PRUint32 aDocumentID
, PRUint32 numOfAttributes
,
95 const PRUnichar
* nameArray
[], const PRUnichar
* valueArray
[]);
97 NS_IMETHOD
Notify(nsISupports
* aWebShell
,
98 nsISupports
* aChannel
,
99 const nsStringArray
* keys
,
100 const nsStringArray
* values
);
102 NS_IMETHOD
GetCharsetFromCompatibilityTag(const nsStringArray
* keys
,
103 const nsStringArray
* values
,
104 nsAString
& aCharset
);
106 nsCOMPtr
<nsICharsetAlias
> mAlias
;
108 PRBool bMetaCharsetObserverStarted
;
111 #endif // nsMetaCharsetObserverFactory_h__