Bug 788829 - Call SetSizeConstraints even if a popup is not open. r=enndeakin
[gecko.git] / parser / html / nsHtml5HtmlAttributes.h
blob87d3f38087428930b5e1755e9b15da2676be2c0b
1 /*
2 * Copyright (c) 2007 Henri Sivonen
3 * Copyright (c) 2008-2011 Mozilla Foundation
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
25 * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
26 * Please edit HtmlAttributes.java instead and regenerate.
29 #ifndef nsHtml5HtmlAttributes_h__
30 #define nsHtml5HtmlAttributes_h__
32 #include "prtypes.h"
33 #include "nsIAtom.h"
34 #include "nsHtml5AtomTable.h"
35 #include "nsString.h"
36 #include "nsINameSpaceManager.h"
37 #include "nsIContent.h"
38 #include "nsTraceRefcnt.h"
39 #include "jArray.h"
40 #include "nsHtml5ArrayCopy.h"
41 #include "nsAHtml5TreeBuilderState.h"
42 #include "nsHtml5Atoms.h"
43 #include "nsHtml5ByteReadable.h"
44 #include "nsIUnicodeDecoder.h"
45 #include "nsHtml5Macros.h"
47 class nsHtml5StreamParser;
49 class nsHtml5Tokenizer;
50 class nsHtml5TreeBuilder;
51 class nsHtml5MetaScanner;
52 class nsHtml5AttributeName;
53 class nsHtml5ElementName;
54 class nsHtml5UTF16Buffer;
55 class nsHtml5StateSnapshot;
56 class nsHtml5Portability;
59 class nsHtml5HtmlAttributes
61 public:
62 static nsHtml5HtmlAttributes* EMPTY_ATTRIBUTES;
63 private:
64 int32_t mode;
65 int32_t length;
66 autoJArray<nsHtml5AttributeName*,int32_t> names;
67 autoJArray<nsString*,int32_t> values;
68 public:
69 nsHtml5HtmlAttributes(int32_t mode);
70 ~nsHtml5HtmlAttributes();
71 int32_t getIndex(nsHtml5AttributeName* name);
72 nsString* getValue(nsHtml5AttributeName* name);
73 int32_t getLength();
74 nsIAtom* getLocalNameNoBoundsCheck(int32_t index);
75 int32_t getURINoBoundsCheck(int32_t index);
76 nsIAtom* getPrefixNoBoundsCheck(int32_t index);
77 nsString* getValueNoBoundsCheck(int32_t index);
78 nsHtml5AttributeName* getAttributeNameNoBoundsCheck(int32_t index);
79 void addAttribute(nsHtml5AttributeName* name, nsString* value);
80 void clear(int32_t m);
81 void releaseValue(int32_t i);
82 void clearWithoutReleasingContents();
83 bool contains(nsHtml5AttributeName* name);
84 void adjustForMath();
85 void adjustForSvg();
86 nsHtml5HtmlAttributes* cloneAttributes(nsHtml5AtomTable* interner);
87 bool equalsAnother(nsHtml5HtmlAttributes* other);
88 static void initializeStatics();
89 static void releaseStatics();
94 #endif