1999-09-21 02:12:01 +00:00
|
|
|
/*
|
|
|
|
* 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 <rbs@maths.uq.edu.au>
|
|
|
|
* David J. Fiddes <D.J.Fiddes@hw.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <mstyle> -- style change
|
|
|
|
//
|
|
|
|
|
|
|
|
nsresult
|
1999-12-10 13:02:23 +00:00
|
|
|
NS_NewMathMLmstyleFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1999-12-10 13:02:23 +00:00
|
|
|
nsMathMLmstyleFrame* it = new (aPresShell) nsMathMLmstyleFrame;
|
1999-09-21 02:12:01 +00:00
|
|
|
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
|
1999-11-24 06:03:41 +00:00
|
|
|
nsMathMLmstyleFrame::Init(nsIPresContext* aPresContext,
|
1999-09-21 02:12:01 +00:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
nsresult rv = nsMathMLContainerFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
|
|
|
|
|
2000-03-28 09:38:24 +00:00
|
|
|
mEmbellishData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY;
|
2000-01-14 08:38:25 +00:00
|
|
|
mPresentationData.mstyle = this;
|
|
|
|
|
2002-01-10 04:42:55 +00:00
|
|
|
// cache the values that we would have if we were not special...
|
|
|
|
// In the event of dynamic updates, e.g., if our displastyle and/or
|
|
|
|
// scriptlevel attributes are removed, we will recover our state using
|
|
|
|
// these cached values
|
|
|
|
mInheritedScriptLevel = mPresentationData.scriptLevel;
|
|
|
|
mInheritedDisplayStyle = mPresentationData.flags & NS_MATHML_DISPLAYSTYLE;
|
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
// see if the displaystyle attribute is there
|
|
|
|
nsAutoString value;
|
2001-08-17 09:54:04 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttr(kNameSpaceID_None,
|
1999-12-10 13:02:23 +00:00
|
|
|
nsMathMLAtoms::displaystyle_, value)) {
|
2001-12-16 11:58:03 +00:00
|
|
|
if (value.Equals(NS_LITERAL_STRING("true"))) {
|
2000-01-14 08:38:25 +00:00
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE;
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2001-12-16 11:58:03 +00:00
|
|
|
else if (value.Equals(NS_LITERAL_STRING("false"))) {
|
2000-01-14 08:38:25 +00:00
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE;
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if the scriptlevel attribute is there
|
2001-08-17 09:54:04 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttr(kNameSpaceID_None,
|
1999-12-10 13:02:23 +00:00
|
|
|
nsMathMLAtoms::scriptlevel_, value)) {
|
2001-02-23 16:10:51 +00:00
|
|
|
PRInt32 errorCode, userValue;
|
|
|
|
userValue = value.ToInteger(&errorCode);
|
|
|
|
if (!errorCode) {
|
1999-09-21 02:12:01 +00:00
|
|
|
if (value[0] != '+' && value[0] != '-') { // record that it is an explicit value
|
2000-01-14 08:38:25 +00:00
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL;
|
2001-02-23 16:10:51 +00:00
|
|
|
mPresentationData.scriptLevel = userValue;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-02-23 16:10:51 +00:00
|
|
|
mPresentationData.scriptLevel += userValue; // incremental value...
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TODO:
|
1999-10-02 06:20:30 +00:00
|
|
|
// Examine all other attributes
|
1999-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-01-10 04:42:55 +00:00
|
|
|
nsMathMLmstyleFrame::UpdatePresentationData(nsIPresContext* aPresContext,
|
|
|
|
PRInt32 aScriptLevelIncrement,
|
|
|
|
PRUint32 aFlagsValues,
|
|
|
|
PRUint32 aFlagsToUpdate)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
1999-10-02 06:20:30 +00:00
|
|
|
// mstyle is special...
|
|
|
|
// Since UpdatePresentationData() can be called by a parent frame, the
|
|
|
|
// scriptlevel and displaystyle attributes of mstyle must take precedence.
|
1999-09-21 02:12:01 +00:00
|
|
|
// Update only if attributes are not there
|
2000-01-14 08:38:25 +00:00
|
|
|
|
2002-01-10 04:42:55 +00:00
|
|
|
// But... cache the values that we would have if we were not special...
|
|
|
|
// In the event of dynamic updates, e.g., if our displastyle and/or
|
|
|
|
// scriptlevel attributes are removed, we will recover our state using
|
|
|
|
// these cached values
|
|
|
|
mInheritedScriptLevel += aScriptLevelIncrement;
|
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aFlagsToUpdate)) {
|
|
|
|
mInheritedDisplayStyle = aFlagsValues & NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if updating the displaystyle flag is allowed
|
2000-01-14 08:38:25 +00:00
|
|
|
if (!NS_MATHML_IS_MSTYLE_WITH_DISPLAYSTYLE(mPresentationData.flags)) {
|
2002-01-10 04:42:55 +00:00
|
|
|
// see if the displaystyle flag is relevant to this call
|
2001-02-02 09:38:48 +00:00
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aFlagsToUpdate)) {
|
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aFlagsValues)) {
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
}
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2001-02-02 09:38:48 +00:00
|
|
|
|
2002-01-10 04:42:55 +00:00
|
|
|
// see if updating the scriptlevel is allowed
|
2000-01-14 08:38:25 +00:00
|
|
|
if (!NS_MATHML_IS_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL(mPresentationData.flags)) {
|
|
|
|
mPresentationData.scriptLevel += aScriptLevelIncrement;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2001-02-02 09:38:48 +00:00
|
|
|
|
2002-01-10 04:42:55 +00:00
|
|
|
// see if the compression flag is relevant to this call
|
2001-02-02 09:38:48 +00:00
|
|
|
if (NS_MATHML_IS_COMPRESSED(aFlagsToUpdate)) {
|
|
|
|
if (NS_MATHML_IS_COMPRESSED(aFlagsValues)) {
|
|
|
|
// 'compressed' means 'prime' style in App. G, TeXbook
|
|
|
|
mPresentationData.flags |= NS_MATHML_COMPRESSED;
|
|
|
|
}
|
|
|
|
// no else. the flag is sticky. it retains its value once it is set
|
|
|
|
}
|
2002-01-10 04:42:55 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-02-23 16:10:51 +00:00
|
|
|
nsMathMLmstyleFrame::UpdatePresentationDataFromChildAt(nsIPresContext* aPresContext,
|
|
|
|
PRInt32 aFirstIndex,
|
|
|
|
PRInt32 aLastIndex,
|
|
|
|
PRInt32 aScriptLevelIncrement,
|
|
|
|
PRUint32 aFlagsValues,
|
|
|
|
PRUint32 aFlagsToUpdate)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
|
|
|
// mstyle is special...
|
|
|
|
// Since UpdatePresentationDataFromChildAt() can be called by a parent frame,
|
|
|
|
// wee need to ensure that the attributes of mstyle take precedence
|
2000-01-14 08:38:25 +00:00
|
|
|
|
2001-02-02 09:38:48 +00:00
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aFlagsToUpdate)) {
|
2002-01-10 04:42:55 +00:00
|
|
|
if (NS_MATHML_IS_MSTYLE_WITH_DISPLAYSTYLE(mPresentationData.flags)) {
|
|
|
|
// our current state takes precedence, updating is not allowed
|
2001-02-02 09:38:48 +00:00
|
|
|
aFlagsToUpdate &= ~NS_MATHML_DISPLAYSTYLE;
|
2002-01-10 04:42:55 +00:00
|
|
|
aFlagsValues &= ~NS_MATHML_DISPLAYSTYLE;
|
2001-02-02 09:38:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-14 08:38:25 +00:00
|
|
|
if (NS_MATHML_IS_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL(mPresentationData.flags)) {
|
2002-01-10 04:42:55 +00:00
|
|
|
// our current state takes precedence, updating is not allowed
|
1999-09-21 02:12:01 +00:00
|
|
|
aScriptLevelIncrement = 0;
|
|
|
|
}
|
2001-02-02 09:38:48 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
// let the base class worry about the update
|
2001-02-02 09:38:48 +00:00
|
|
|
return
|
|
|
|
nsMathMLContainerFrame::UpdatePresentationDataFromChildAt(
|
2001-02-23 16:10:51 +00:00
|
|
|
aPresContext, aFirstIndex, aLastIndex, aScriptLevelIncrement,
|
2001-02-02 09:38:48 +00:00
|
|
|
aFlagsValues, aFlagsToUpdate);
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2002-01-10 04:42:55 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLmstyleFrame::AttributeChanged(nsIPresContext* aPresContext,
|
|
|
|
nsIContent* aContent,
|
|
|
|
PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType,
|
|
|
|
PRInt32 aHint)
|
|
|
|
{
|
|
|
|
if (nsMathMLAtoms::displaystyle_ == aAttribute ||
|
|
|
|
nsMathMLAtoms::scriptlevel_ == aAttribute) {
|
|
|
|
nsPresentationData oldData = mPresentationData;
|
|
|
|
// process our attributes
|
|
|
|
nsAutoString value;
|
|
|
|
if (NS_CONTENT_ATTR_NOT_THERE == mContent->GetAttr(kNameSpaceID_None,
|
|
|
|
nsMathMLAtoms::scriptlevel_, value)) {
|
|
|
|
// when our scriptlevel attribute is gone, we recover our inherited scriptlevel
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL;
|
|
|
|
mPresentationData.scriptLevel = mInheritedScriptLevel;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 errorCode, userValue;
|
|
|
|
userValue = value.ToInteger(&errorCode);
|
|
|
|
if (!errorCode) {
|
|
|
|
if (value[0] != '+' && value[0] != '-') {
|
|
|
|
// record that it is an explicit value
|
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL;
|
|
|
|
mPresentationData.scriptLevel = userValue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// incremental value...
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_MSTYLE_WITH_EXPLICIT_SCRIPTLEVEL;
|
|
|
|
mPresentationData.scriptLevel = mInheritedScriptLevel + userValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NS_CONTENT_ATTR_NOT_THERE == mContent->GetAttr(kNameSpaceID_None,
|
|
|
|
nsMathMLAtoms::displaystyle_, value)) {
|
|
|
|
// when our displaystyle attribute is gone, we recover our inherited displaystyle
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE;
|
2002-01-10 21:30:41 +00:00
|
|
|
if (NS_MATHML_DISPLAYSTYLE & mInheritedDisplayStyle)
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
else
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
2002-01-10 04:42:55 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (value.Equals(NS_LITERAL_STRING("true"))) {
|
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE;
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
else if (value.Equals(NS_LITERAL_STRING("false"))) {
|
|
|
|
mPresentationData.flags |= NS_MATHML_MSTYLE_WITH_DISPLAYSTYLE;
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// propagate to our children if something changed
|
|
|
|
if (oldData.flags != mPresentationData.flags ||
|
|
|
|
oldData.scriptLevel != mPresentationData.scriptLevel) {
|
2002-01-10 21:30:41 +00:00
|
|
|
PRUint32 whichFlags = NS_MATHML_DISPLAYSTYLE;
|
|
|
|
PRUint32 newValues = NS_MATHML_DISPLAYSTYLE & mPresentationData.flags;
|
|
|
|
if (newValues == (oldData.flags & NS_MATHML_DISPLAYSTYLE)) {
|
|
|
|
newValues = 0;
|
|
|
|
whichFlags = 0;
|
2002-01-10 04:42:55 +00:00
|
|
|
}
|
|
|
|
// use the base method here because we really want to reflect any updates
|
|
|
|
nsMathMLContainerFrame::UpdatePresentationDataFromChildAt(aPresContext, 0, -1,
|
|
|
|
mPresentationData.scriptLevel - oldData.scriptLevel, newValues, whichFlags);
|
2002-01-12 03:04:14 +00:00
|
|
|
// now grab the scriptlevel of our parent
|
|
|
|
nsPresentationData parentData;
|
|
|
|
GetPresentationDataFrom(mParent, parentData);
|
2002-01-10 04:42:55 +00:00
|
|
|
// re-resolve style data in our subtree to sync any change of script sizes
|
2002-01-12 03:04:14 +00:00
|
|
|
PropagateScriptStyleFor(aPresContext, this, parentData.scriptLevel);
|
2002-01-10 04:42:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsMathMLContainerFrame::
|
|
|
|
AttributeChanged(aPresContext, aContent, aNameSpaceID,
|
|
|
|
aAttribute, aModType, aHint);
|
|
|
|
}
|