/* -*- 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 "nsIDOMHTMLIFrameElement.h" #include "nsGenericHTMLElement.h" #include "nsHTMLAtoms.h" #include "nsPresContext.h" #include "nsIPresShell.h" #include "nsIDocument.h" #include "nsMappedAttributes.h" #include "nsDOMError.h" #include "nsRuleData.h" class nsHTMLIFrameElement : public nsGenericHTMLFrameElement, public nsIDOMHTMLIFrameElement { public: nsHTMLIFrameElement(nsINodeInfo *aNodeInfo); virtual ~nsHTMLIFrameElement(); // nsISupports NS_DECL_ISUPPORTS_INHERITED // nsIDOMNode NS_FORWARD_NSIDOMNODE_NO_CLONENODE(nsGenericHTMLFrameElement::) // nsIDOMElement NS_FORWARD_NSIDOMELEMENT(nsGenericHTMLFrameElement::) // nsIDOMHTMLElement NS_FORWARD_NSIDOMHTMLELEMENT(nsGenericHTMLFrameElement::) // nsIDOMHTMLIFrameElement NS_DECL_NSIDOMHTMLIFRAMEELEMENT // nsIContent virtual PRBool ParseAttribute(nsIAtom* aAttribute, const nsAString& aValue, nsAttrValue& aResult); NS_IMETHOD_(PRBool) IsAttributeMapped(const nsIAtom* aAttribute) const; virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const; }; NS_IMPL_NS_NEW_HTML_ELEMENT(IFrame) nsHTMLIFrameElement::nsHTMLIFrameElement(nsINodeInfo *aNodeInfo) : nsGenericHTMLFrameElement(aNodeInfo) { } nsHTMLIFrameElement::~nsHTMLIFrameElement() { } NS_IMPL_ADDREF(nsHTMLIFrameElement) NS_IMPL_RELEASE(nsHTMLIFrameElement) // QueryInterface implementation for nsHTMLIFrameElement NS_HTML_CONTENT_INTERFACE_MAP_BEGIN(nsHTMLIFrameElement, nsGenericHTMLFrameElement) NS_INTERFACE_MAP_ENTRY(nsIDOMHTMLIFrameElement) NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(HTMLIFrameElement) NS_HTML_CONTENT_INTERFACE_MAP_END NS_IMPL_DOM_CLONENODE(nsHTMLIFrameElement) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, Align, align) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, FrameBorder, frameborder) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, Height, height) NS_IMPL_URI_ATTR(nsHTMLIFrameElement, LongDesc, longdesc) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, MarginHeight, marginheight) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, MarginWidth, marginwidth) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, Name, name) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, Scrolling, scrolling) NS_IMPL_URI_ATTR(nsHTMLIFrameElement, Src, src) NS_IMPL_STRING_ATTR(nsHTMLIFrameElement, Width, width) NS_IMETHODIMP nsHTMLIFrameElement::GetContentDocument(nsIDOMDocument** aContentDocument) { return nsGenericHTMLFrameElement::GetContentDocument(aContentDocument); } PRBool nsHTMLIFrameElement::ParseAttribute(nsIAtom* aAttribute, const nsAString& aValue, nsAttrValue& aResult) { if (aAttribute == nsHTMLAtoms::marginwidth) { return aResult.ParseSpecialIntValue(aValue, PR_TRUE, PR_FALSE); } if (aAttribute == nsHTMLAtoms::marginheight) { return aResult.ParseSpecialIntValue(aValue, PR_TRUE, PR_FALSE); } if (aAttribute == nsHTMLAtoms::width) { return aResult.ParseSpecialIntValue(aValue, PR_TRUE, PR_FALSE); } if (aAttribute == nsHTMLAtoms::height) { return aResult.ParseSpecialIntValue(aValue, PR_TRUE, PR_FALSE); } if (aAttribute == nsHTMLAtoms::frameborder) { return ParseFrameborderValue(aValue, aResult); } if (aAttribute == nsHTMLAtoms::scrolling) { return ParseScrollingValue(aValue, aResult); } if (aAttribute == nsHTMLAtoms::align) { return ParseAlignValue(aValue, aResult); } return nsGenericHTMLFrameElement::ParseAttribute(aAttribute, aValue, aResult); } static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes, nsRuleData* aData) { if (aData->mSID == eStyleStruct_Border) { // frameborder: 0 | 1 (| NO | YES in quirks mode) // If frameborder is 0 or No, set border to 0 // else leave it as the value set in html.css const nsAttrValue* value = aAttributes->GetAttr(nsHTMLAtoms::frameborder); if (value && value->Type() == nsAttrValue::eEnum) { PRInt32 frameborder = value->GetEnumValue(); if (NS_STYLE_FRAME_0 == frameborder || NS_STYLE_FRAME_NO == frameborder || NS_STYLE_FRAME_OFF == frameborder) { if (aData->mMarginData->mBorderWidth.mLeft.GetUnit() == eCSSUnit_Null) aData->mMarginData->mBorderWidth.mLeft.SetFloatValue(0.0f, eCSSUnit_Pixel); if (aData->mMarginData->mBorderWidth.mRight.GetUnit() == eCSSUnit_Null) aData->mMarginData->mBorderWidth.mRight.SetFloatValue(0.0f, eCSSUnit_Pixel); if (aData->mMarginData->mBorderWidth.mTop.GetUnit() == eCSSUnit_Null) aData->mMarginData->mBorderWidth.mTop.SetFloatValue(0.0f, eCSSUnit_Pixel); if (aData->mMarginData->mBorderWidth.mBottom.GetUnit() == eCSSUnit_Null) aData->mMarginData->mBorderWidth.mBottom.SetFloatValue(0.0f, eCSSUnit_Pixel); } } } else if (aData->mSID == eStyleStruct_Position) { // width: value if (aData->mPositionData->mWidth.GetUnit() == eCSSUnit_Null) { const nsAttrValue* value = aAttributes->GetAttr(nsHTMLAtoms::width); if (value && value->Type() == nsAttrValue::eInteger) aData->mPositionData->mWidth.SetFloatValue((float)value->GetIntegerValue(), eCSSUnit_Pixel); else if (value && value->Type() == nsAttrValue::ePercent) aData->mPositionData->mWidth.SetPercentValue(value->GetPercentValue()); } // height: value if (aData->mPositionData->mHeight.GetUnit() == eCSSUnit_Null) { const nsAttrValue* value = aAttributes->GetAttr(nsHTMLAtoms::height); if (value && value->Type() == nsAttrValue::eInteger) aData->mPositionData->mHeight.SetFloatValue((float)value->GetIntegerValue(), eCSSUnit_Pixel); else if (value && value->Type() == nsAttrValue::ePercent) aData->mPositionData->mHeight.SetPercentValue(value->GetPercentValue()); } } nsGenericHTMLElement::MapScrollingAttributeInto(aAttributes, aData); nsGenericHTMLElement::MapImageAlignAttributeInto(aAttributes, aData); nsGenericHTMLElement::MapCommonAttributesInto(aAttributes, aData); } NS_IMETHODIMP_(PRBool) nsHTMLIFrameElement::IsAttributeMapped(const nsIAtom* aAttribute) const { static const MappedAttributeEntry attributes[] = { { &nsHTMLAtoms::width }, { &nsHTMLAtoms::height }, { &nsHTMLAtoms::frameborder }, { nsnull }, }; static const MappedAttributeEntry* const map[] = { attributes, sScrollingAttributeMap, sImageAlignAttributeMap, sCommonAttributeMap, }; return FindAttributeDependence(aAttribute, map, NS_ARRAY_LENGTH(map)); } nsMapRuleToAttributesFunc nsHTMLIFrameElement::GetAttributeMappingFunction() const { return &MapAttributesIntoRule; }