/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Mozilla Communicator client code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsIDOMHTMLTableCaptionElem.h" #include "nsIDOMEventReceiver.h" #include "nsGenericHTMLElement.h" #include "nsHTMLAtoms.h" #include "nsStyleConsts.h" #include "nsPresContext.h" #include "nsMappedAttributes.h" #include "nsRuleData.h" class nsHTMLTableCaptionElement : public nsGenericHTMLElement, public nsIDOMHTMLTableCaptionElement { public: nsHTMLTableCaptionElement(nsINodeInfo *aNodeInfo); virtual ~nsHTMLTableCaptionElement(); // nsISupports NS_DECL_ISUPPORTS_INHERITED // nsIDOMNode NS_FORWARD_NSIDOMNODE_NO_CLONENODE(nsGenericHTMLElement::) // nsIDOMElement NS_FORWARD_NSIDOMELEMENT(nsGenericHTMLElement::) // nsIDOMHTMLElement NS_FORWARD_NSIDOMHTMLELEMENT(nsGenericHTMLElement::) // nsIDOMHTMLTableCaptionElement NS_DECL_NSIDOMHTMLTABLECAPTIONELEMENT virtual PRBool ParseAttribute(nsIAtom* aAttribute, const nsAString& aValue, nsAttrValue& aResult); virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const; NS_IMETHOD_(PRBool) IsAttributeMapped(const nsIAtom* aAttribute) const; }; NS_IMPL_NS_NEW_HTML_ELEMENT(TableCaption) nsHTMLTableCaptionElement::nsHTMLTableCaptionElement(nsINodeInfo *aNodeInfo) : nsGenericHTMLElement(aNodeInfo) { } nsHTMLTableCaptionElement::~nsHTMLTableCaptionElement() { } NS_IMPL_ADDREF_INHERITED(nsHTMLTableCaptionElement, nsGenericElement) NS_IMPL_RELEASE_INHERITED(nsHTMLTableCaptionElement, nsGenericElement) // QueryInterface implementation for nsHTMLTableCaptionElement NS_HTML_CONTENT_INTERFACE_MAP_BEGIN(nsHTMLTableCaptionElement, nsGenericHTMLElement) NS_INTERFACE_MAP_ENTRY(nsIDOMHTMLTableCaptionElement) NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(HTMLTableCaptionElement) NS_HTML_CONTENT_INTERFACE_MAP_END NS_IMPL_DOM_CLONENODE(nsHTMLTableCaptionElement) NS_IMPL_STRING_ATTR(nsHTMLTableCaptionElement, Align, align) static const nsAttrValue::EnumTable kCaptionAlignTable[] = { { "left", NS_SIDE_LEFT }, { "right", NS_SIDE_RIGHT }, { "top", NS_SIDE_TOP}, { "bottom",NS_SIDE_BOTTOM}, { 0 } }; PRBool nsHTMLTableCaptionElement::ParseAttribute(nsIAtom* aAttribute, const nsAString& aValue, nsAttrValue& aResult) { if (aAttribute == nsHTMLAtoms::align) { return aResult.ParseEnumValue(aValue, kCaptionAlignTable); } return nsGenericHTMLElement::ParseAttribute(aAttribute, aValue, aResult); } static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes, nsRuleData* aData) { if (aData->mSID == eStyleStruct_TableBorder) { if (aData->mTableData->mCaptionSide.GetUnit() == eCSSUnit_Null) { const nsAttrValue* value = aAttributes->GetAttr(nsHTMLAtoms::align); if (value && value->Type() == nsAttrValue::eEnum) aData->mTableData->mCaptionSide.SetIntValue(value->GetEnumValue(), eCSSUnit_Enumerated); } } nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData); } NS_IMETHODIMP_(PRBool) nsHTMLTableCaptionElement::IsAttributeMapped(const nsIAtom* aAttribute) const { static const MappedAttributeEntry attributes[] = { { &nsHTMLAtoms::align }, { nsnull } }; static const MappedAttributeEntry* const map[] = { attributes, sCommonAttributeMap, }; return FindAttributeDependence(aAttribute, map, NS_ARRAY_LENGTH(map)); } nsMapRuleToAttributesFunc nsHTMLTableCaptionElement::GetAttributeMappingFunction() const { return &MapAttributesIntoRule; }