~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/content/html/content/src/nsHTMLBRElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
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
 
13
 * License.
 
14
 *
 
15
 * The Original Code is Mozilla Communicator client code.
 
16
 *
 
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.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 *
 
25
 * Alternatively, the contents of this file may be used under the terms of
 
26
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
27
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
28
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
29
 * of those above. If you wish to allow use of your version of this file only
 
30
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
31
 * use your version of this file under the terms of the NPL, indicate your
 
32
 * decision by deleting the provisions above and replace them with the notice
 
33
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
34
 * the provisions above, a recipient may use your version of this file under
 
35
 * the terms of any one of the NPL, the GPL or the LGPL.
 
36
 *
 
37
 * ***** END LICENSE BLOCK ***** */
 
38
#include "nsIDOMHTMLBRElement.h"
 
39
#include "nsIDOMEventReceiver.h"
 
40
#include "nsIHTMLContent.h"
 
41
#include "nsGenericHTMLElement.h"
 
42
#include "nsHTMLAtoms.h"
 
43
#include "nsStyleConsts.h"
 
44
#include "nsIPresContext.h"
 
45
#include "nsMappedAttributes.h"
 
46
#include "nsRuleNode.h"
 
47
 
 
48
class nsHTMLBRElement : public nsGenericHTMLElement,
 
49
                        public nsIDOMHTMLBRElement
 
50
{
 
51
public:
 
52
  nsHTMLBRElement();
 
53
  virtual ~nsHTMLBRElement();
 
54
 
 
55
  // nsISupports
 
56
  NS_DECL_ISUPPORTS_INHERITED
 
57
 
 
58
  // nsIDOMNode
 
59
  NS_FORWARD_NSIDOMNODE_NO_CLONENODE(nsGenericHTMLElement::)
 
60
 
 
61
  // nsIDOMElement
 
62
  NS_FORWARD_NSIDOMELEMENT(nsGenericHTMLElement::)
 
63
 
 
64
  // nsIDOMHTMLElement
 
65
  NS_FORWARD_NSIDOMHTMLELEMENT(nsGenericHTMLElement::)
 
66
 
 
67
  // nsIDOMHTMLBRElement
 
68
  NS_DECL_NSIDOMHTMLBRELEMENT    
 
69
 
 
70
  virtual PRBool ParseAttribute(nsIAtom* aAttribute,
 
71
                                const nsAString& aValue,
 
72
                                nsAttrValue& aResult);
 
73
  NS_IMETHOD AttributeToString(nsIAtom* aAttribute,
 
74
                               const nsHTMLValue& aValue,
 
75
                               nsAString& aResult) const;
 
76
  NS_IMETHOD_(PRBool) IsAttributeMapped(const nsIAtom* aAttribute) const;
 
77
  NS_IMETHOD GetAttributeMappingFunction(nsMapRuleToAttributesFunc& aMapRuleFunc) const;
 
78
};
 
79
 
 
80
nsresult
 
81
NS_NewHTMLBRElement(nsIHTMLContent** aInstancePtrResult,
 
82
                    nsINodeInfo *aNodeInfo, PRBool aFromParser)
 
83
{
 
84
  NS_ENSURE_ARG_POINTER(aInstancePtrResult);
 
85
 
 
86
  nsHTMLBRElement* it = new nsHTMLBRElement();
 
87
 
 
88
  if (!it) {
 
89
    return NS_ERROR_OUT_OF_MEMORY;
 
90
  }
 
91
 
 
92
  nsresult rv = it->Init(aNodeInfo);
 
93
 
 
94
  if (NS_FAILED(rv)) {
 
95
    delete it;
 
96
 
 
97
    return rv;
 
98
  }
 
99
 
 
100
  *aInstancePtrResult = NS_STATIC_CAST(nsIHTMLContent *, it);
 
101
  NS_ADDREF(*aInstancePtrResult);
 
102
 
 
103
  return NS_OK;
 
104
}
 
105
 
 
106
 
 
107
nsHTMLBRElement::nsHTMLBRElement()
 
108
{
 
109
}
 
110
 
 
111
nsHTMLBRElement::~nsHTMLBRElement()
 
112
{
 
113
}
 
114
 
 
115
NS_IMPL_ADDREF_INHERITED(nsHTMLBRElement, nsGenericElement) 
 
116
NS_IMPL_RELEASE_INHERITED(nsHTMLBRElement, nsGenericElement) 
 
117
 
 
118
 
 
119
// QueryInterface implementation for nsHTMLBRElement
 
120
NS_HTML_CONTENT_INTERFACE_MAP_BEGIN(nsHTMLBRElement, nsGenericHTMLElement)
 
121
  NS_INTERFACE_MAP_ENTRY(nsIDOMHTMLBRElement)
 
122
  NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(HTMLBRElement)
 
123
NS_HTML_CONTENT_INTERFACE_MAP_END
 
124
 
 
125
 
 
126
nsresult
 
127
nsHTMLBRElement::CloneNode(PRBool aDeep, nsIDOMNode** aReturn)
 
128
{
 
129
  NS_ENSURE_ARG_POINTER(aReturn);
 
130
  *aReturn = nsnull;
 
131
 
 
132
  nsHTMLBRElement* it = new nsHTMLBRElement();
 
133
 
 
134
  if (!it) {
 
135
    return NS_ERROR_OUT_OF_MEMORY;
 
136
  }
 
137
 
 
138
  nsCOMPtr<nsIDOMNode> kungFuDeathGrip(it);
 
139
 
 
140
  nsresult rv = it->Init(mNodeInfo);
 
141
 
 
142
  if (NS_FAILED(rv))
 
143
    return rv;
 
144
 
 
145
  CopyInnerTo(it, aDeep);
 
146
 
 
147
  *aReturn = NS_STATIC_CAST(nsIDOMNode *, it);
 
148
 
 
149
  NS_ADDREF(*aReturn);
 
150
 
 
151
  return NS_OK;
 
152
}
 
153
 
 
154
 
 
155
NS_IMPL_STRING_ATTR(nsHTMLBRElement, Clear, clear)
 
156
 
 
157
static const nsHTMLValue::EnumTable kClearTable[] = {
 
158
  { "left", NS_STYLE_CLEAR_LEFT },
 
159
  { "right", NS_STYLE_CLEAR_RIGHT },
 
160
  { "all", NS_STYLE_CLEAR_LEFT_AND_RIGHT },
 
161
  { "both", NS_STYLE_CLEAR_LEFT_AND_RIGHT },
 
162
  { 0 }
 
163
};
 
164
 
 
165
PRBool
 
166
nsHTMLBRElement::ParseAttribute(nsIAtom* aAttribute,
 
167
                                const nsAString& aValue,
 
168
                                nsAttrValue& aResult)
 
169
{
 
170
  if (aAttribute == nsHTMLAtoms::clear) {
 
171
    return aResult.ParseEnumValue(aValue, kClearTable);
 
172
  }
 
173
 
 
174
  return nsGenericHTMLElement::ParseAttribute(aAttribute, aValue, aResult);
 
175
}
 
176
 
 
177
NS_IMETHODIMP
 
178
nsHTMLBRElement::AttributeToString(nsIAtom* aAttribute,
 
179
                                   const nsHTMLValue& aValue,
 
180
                                   nsAString& aResult) const
 
181
{
 
182
  if (aAttribute == nsHTMLAtoms::clear) {
 
183
    if (eHTMLUnit_Enumerated == aValue.GetUnit()) {
 
184
      aValue.EnumValueToString(kClearTable, aResult);
 
185
      return NS_CONTENT_ATTR_HAS_VALUE;
 
186
    }
 
187
  }
 
188
  return nsGenericHTMLElement::AttributeToString(aAttribute, aValue, aResult);
 
189
}
 
190
 
 
191
static void
 
192
MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
 
193
                      nsRuleData* aData)
 
194
{
 
195
  if (aData->mSID == eStyleStruct_Display) {
 
196
    if (aData->mDisplayData->mClear.GetUnit() == eCSSUnit_Null) {
 
197
      nsHTMLValue value;
 
198
      aAttributes->GetAttribute(nsHTMLAtoms::clear, value);
 
199
      if (value.GetUnit() == eHTMLUnit_Enumerated)
 
200
        aData->mDisplayData->mClear.SetIntValue(value.GetIntValue(), eCSSUnit_Enumerated);
 
201
    }
 
202
  }
 
203
 
 
204
  nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData);
 
205
}
 
206
 
 
207
NS_IMETHODIMP_(PRBool)
 
208
nsHTMLBRElement::IsAttributeMapped(const nsIAtom* aAttribute) const
 
209
{
 
210
  static const MappedAttributeEntry attributes[] = {
 
211
    { &nsHTMLAtoms::clear },
 
212
    { nsnull }
 
213
  };
 
214
 
 
215
  static const MappedAttributeEntry* const map[] = {
 
216
    attributes,
 
217
    sCommonAttributeMap,
 
218
  };
 
219
 
 
220
  return FindAttributeDependence(aAttribute, map, NS_ARRAY_LENGTH(map));
 
221
}
 
222
 
 
223
NS_IMETHODIMP
 
224
nsHTMLBRElement::GetAttributeMappingFunction(nsMapRuleToAttributesFunc& aMapRuleFunc) const
 
225
{
 
226
  aMapRuleFunc = &MapAttributesIntoRule;
 
227
  return NS_OK;
 
228
}