/* * 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 MathML Project. * * The Initial Developer of the Original Code is The University Of * Queensland. Portions created by The University Of Queensland are * Copyright (C) 1999 The University Of Queensland. All Rights Reserved. * * Contributor(s): * Roger B. Sidje * David J. Fiddes */ #include "nsCOMPtr.h" #include "nsHTMLParts.h" #include "nsIHTMLContent.h" #include "nsFrame.h" #include "nsLineLayout.h" #include "nsHTMLIIDs.h" #include "nsIPresContext.h" #include "nsHTMLAtoms.h" #include "nsUnitConversion.h" #include "nsIStyleContext.h" #include "nsStyleConsts.h" #include "nsINameSpaceManager.h" #include "nsIRenderingContext.h" #include "nsIFontMetrics.h" #include "nsStyleUtil.h" #include "nsMathMLmstyleFrame.h" // // -- style change // nsresult NS_NewMathMLmstyleFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame) { NS_PRECONDITION(aNewFrame, "null OUT ptr"); if (nsnull == aNewFrame) { return NS_ERROR_NULL_POINTER; } nsMathMLmstyleFrame* it = new (aPresShell) nsMathMLmstyleFrame; if (nsnull == it) { return NS_ERROR_OUT_OF_MEMORY; } *aNewFrame = it; return NS_OK; } nsMathMLmstyleFrame::nsMathMLmstyleFrame() { } nsMathMLmstyleFrame::~nsMathMLmstyleFrame() { } // mstyle needs special care for its scriptlevel and displaystyle attributes NS_IMETHODIMP nsMathMLmstyleFrame::Init(nsIPresContext* aPresContext, nsIContent* aContent, nsIFrame* aParent, nsIStyleContext* aContext, nsIFrame* aPrevInFlow) { nsresult rv = nsMathMLContainerFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow); mEmbellishData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY; mPresentationData.mstyle = this; mInnerScriptLevelIncrement = 0; // see if the displaystyle attribute is there nsAutoString value; if (NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttribute(kNameSpaceID_None, nsMathMLAtoms::displaystyle_, value)) { if (value.EqualsWithConversion("true")) { mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE; mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE; } else if (value.EqualsWithConversion("false")) { mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE; mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE; } } // see if the scriptlevel attribute is there if (NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttribute(kNameSpaceID_None, nsMathMLAtoms::scriptlevel_, value)) { PRInt32 aErrorCode, aUserValue; aUserValue = value.ToInteger(&aErrorCode); if (NS_SUCCEEDED(aErrorCode)) { if (value[0] != '+' && value[0] != '-') { // record that it is an explicit value mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL; mPresentationData.scriptLevel = aUserValue; } else { // mScriptLevel += aUserValue; // incremental value... mInnerScriptLevelIncrement = aUserValue; } } } // TODO: // Examine all other attributes return rv; } NS_IMETHODIMP nsMathMLmstyleFrame::UpdatePresentationData(PRInt32 aScriptLevelIncrement, PRBool aDisplayStyle, PRBool aCompressed) { // mstyle is special... // Since UpdatePresentationData() can be called by a parent frame, the // scriptlevel and displaystyle attributes of mstyle must take precedence. // Update only if attributes are not there if (!NS_MATHML_IS_MSTYLE_WITH_DISPLAYSTYLE(mPresentationData.flags)) { if (aDisplayStyle) mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE; else mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE; } if (!NS_MATHML_IS_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL(mPresentationData.flags)) { mPresentationData.scriptLevel += aScriptLevelIncrement; } if (aCompressed) mPresentationData.flags |= NS_MATHML_COMPRESSED; else mPresentationData.flags &= ~NS_MATHML_COMPRESSED; return NS_OK; } NS_IMETHODIMP nsMathMLmstyleFrame::UpdatePresentationDataFromChildAt(PRInt32 aIndex, PRInt32 aScriptLevelIncrement, PRBool aDisplayStyle, PRBool aCompressed) { // mstyle is special... // Since UpdatePresentationDataFromChildAt() can be called by a parent frame, // wee need to ensure that the attributes of mstyle take precedence PRBool compressed = NS_MATHML_IS_COMPRESSED(mPresentationData.flags); PRBool displayStyle = NS_MATHML_IS_DISPLAYSTYLE(mPresentationData.flags); if (NS_MATHML_IS_MSTYLE_WITH_DISPLAYSTYLE(mPresentationData.flags)) { aDisplayStyle = displayStyle; } if (NS_MATHML_IS_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL(mPresentationData.flags)) { aScriptLevelIncrement = 0; } if (0 == aScriptLevelIncrement && aDisplayStyle == displayStyle && aCompressed == compressed) return NS_OK; // quick return, there is nothing to change // let the base class worry about the update return nsMathMLContainerFrame::UpdatePresentationDataFromChildAt(aIndex, aScriptLevelIncrement, aDisplayStyle, aCompressed); }