/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
staticvoid ApplyClip(nsDisplayListBuilder* aBuilder, const DisplayItemClipChain*& aClipToModify, const ActiveScrolledRoot* aASR,
DisplayItemClipChain& aClipChainOnStack) {
aClipChainOnStack.mASR = aASR; if (aClipToModify && aClipToModify->mASR == aASR) { // Intersect with aClipToModify and replace the clip chain item.
aClipChainOnStack.mClip.IntersectWith(aClipToModify->mClip);
aClipChainOnStack.mParent = aClipToModify->mParent;
aClipToModify = &aClipChainOnStack;
} elseif (!aClipToModify ||
ActiveScrolledRoot::IsAncestor(aClipToModify->mASR, aASR)) { // Add a new clip chain item at the bottom.
aClipChainOnStack.mParent = aClipToModify;
aClipToModify = &aClipChainOnStack;
} else { // We need to insert / intersect a DisplayItemClipChain in the middle of the // aClipToModify chain. This is a very rare case. // Find the common ancestor and have the builder create the // DisplayItemClipChain intersection. This will create new // DisplayItemClipChain objects for all descendants of ancestorSC and we // will not hold on to a pointer to aClipChainOnStack. const DisplayItemClipChain* ancestorSC = aClipToModify; while (ancestorSC &&
ActiveScrolledRoot::IsAncestor(aASR, ancestorSC->mASR)) {
ancestorSC = ancestorSC->mParent;
}
ancestorSC = aBuilder->CopyWholeChain(ancestorSC);
aClipChainOnStack.mParent = nullptr;
aClipToModify = aBuilder->CreateClipChainIntersection(
ancestorSC, aClipToModify, &aClipChainOnStack);
}
}
nsRect clipRect = aFrame->GetContentRectRelativeToSelf() +
aBuilder->ToReferenceFrame(aFrame); // If we have a border-radius, we have to clip our content to that // radius.
ClipContainingBlockDescendants(
aBuilder, clipRect, hasBorderRadius ? radii : nullptr, aClipChainOnStack);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.