2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: set ts=2 sw=2 et tw=78:
|
|
|
|
* ***** 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 Novell code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Novell Corporation.
|
2007-10-06 05:08:39 -07:00
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* robert@ocallahan.org
|
|
|
|
*
|
|
|
|
* 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 *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* structures that represent things to be painted (ordered in z-order),
|
|
|
|
* used during painting and hit testing
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
|
|
|
|
#include "nsCSSRendering.h"
|
|
|
|
#include "nsISelectionController.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsRegion.h"
|
|
|
|
#include "nsFrameManager.h"
|
|
|
|
#include "gfxContext.h"
|
2008-07-16 23:30:25 -07:00
|
|
|
#include "nsStyleStructInlines.h"
|
2008-09-13 02:42:11 -07:00
|
|
|
#include "nsStyleTransformMatrix.h"
|
|
|
|
#include "gfxMatrix.h"
|
2008-09-10 17:24:16 -07:00
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#include "nsSVGIntegrationUtils.h"
|
|
|
|
#endif
|
2009-07-21 17:44:57 -07:00
|
|
|
#include "nsLayoutUtils.h"
|
2010-07-15 14:08:12 -07:00
|
|
|
#include "nsIScrollableFrame.h"
|
2010-07-24 02:35:29 -07:00
|
|
|
#include "nsThemeConstants.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-04-08 08:19:51 -07:00
|
|
|
#include "imgIContainer.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2010-02-28 23:56:19 -08:00
|
|
|
#include "BasicLayers.h"
|
|
|
|
|
2010-05-20 20:20:48 -07:00
|
|
|
using namespace mozilla;
|
2010-02-28 23:56:19 -08:00
|
|
|
using namespace mozilla::layers;
|
2009-04-08 08:19:51 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDisplayListBuilder::nsDisplayListBuilder(nsIFrame* aReferenceFrame,
|
2008-04-10 20:46:37 -07:00
|
|
|
PRBool aIsForEvents, PRBool aBuildCaret)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mReferenceFrame(aReferenceFrame),
|
|
|
|
mIgnoreScrollFrame(nsnull),
|
2008-04-06 04:34:14 -07:00
|
|
|
mCurrentTableItem(nsnull),
|
2007-03-22 10:30:00 -07:00
|
|
|
mBuildCaret(aBuildCaret),
|
|
|
|
mEventDelivery(aIsForEvents),
|
2010-09-01 13:44:48 -07:00
|
|
|
mIgnoreSuppression(PR_FALSE),
|
|
|
|
mHadToIgnoreSuppression(PR_FALSE),
|
2007-03-22 10:30:00 -07:00
|
|
|
mIsAtRootOfPseudoStackingContext(PR_FALSE),
|
2010-07-12 13:24:33 -07:00
|
|
|
mSelectedFramesOnly(PR_FALSE),
|
2009-07-21 17:45:14 -07:00
|
|
|
mAccurateVisibleRegions(PR_FALSE),
|
2009-09-12 15:44:18 -07:00
|
|
|
mInTransform(PR_FALSE),
|
2010-05-12 17:56:08 -07:00
|
|
|
mSyncDecodeImages(PR_FALSE),
|
|
|
|
mIsPaintingToWindow(PR_FALSE) {
|
2010-06-21 09:21:41 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayListBuilder);
|
2010-07-19 18:29:25 -07:00
|
|
|
PL_InitArenaPool(&mPool, "displayListArena", 1024,
|
|
|
|
NS_MAX(NS_ALIGNMENT_OF(void*),NS_ALIGNMENT_OF(double))-1);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext* pc = aReferenceFrame->PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIPresShell *shell = pc->PresShell();
|
|
|
|
if (pc->IsRenderingOnlySelection()) {
|
|
|
|
nsCOMPtr<nsISelectionController> selcon(do_QueryInterface(shell));
|
|
|
|
if (selcon) {
|
|
|
|
selcon->GetSelection(nsISelectionController::SELECTION_NORMAL,
|
|
|
|
getter_AddRefs(mBoundingSelection));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-15 14:08:10 -07:00
|
|
|
PR_STATIC_ASSERT(nsDisplayItem::TYPE_MAX < (1 << nsDisplayItem::TYPE_BITS));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void MarkFrameForDisplay(nsIFrame* aFrame, nsIFrame* aStopAtFrame) {
|
2007-03-30 14:11:41 -07:00
|
|
|
nsFrameManager* frameManager = aFrame->PresContext()->PresShell()->FrameManager();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
for (nsIFrame* f = aFrame; f;
|
|
|
|
f = nsLayoutUtils::GetParentOrPlaceholderFor(frameManager, f)) {
|
|
|
|
if (f->GetStateBits() & NS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO)
|
|
|
|
return;
|
|
|
|
f->AddStateBits(NS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO);
|
|
|
|
if (f == aStopAtFrame) {
|
|
|
|
// we've reached a frame that we know will be painted, so we can stop.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame, nsIFrame* aFrame,
|
|
|
|
const nsRect& aDirtyRect) {
|
|
|
|
nsRect dirty = aDirtyRect - aFrame->GetOffsetTo(aDirtyFrame);
|
|
|
|
nsRect overflowRect = aFrame->GetOverflowRect();
|
|
|
|
if (!dirty.IntersectRect(dirty, overflowRect))
|
|
|
|
return;
|
2010-03-28 18:46:55 -07:00
|
|
|
aFrame->Properties().Set(nsDisplayListBuilder::OutOfFlowDirtyRectProperty(),
|
|
|
|
new nsRect(dirty));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
MarkFrameForDisplay(aFrame, aDirtyFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void UnmarkFrameForDisplay(nsIFrame* aFrame) {
|
2010-03-28 18:46:55 -07:00
|
|
|
nsPresContext* presContext = aFrame->PresContext();
|
|
|
|
presContext->PropertyTable()->
|
|
|
|
Delete(aFrame, nsDisplayListBuilder::OutOfFlowDirtyRectProperty());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-28 18:46:55 -07:00
|
|
|
nsFrameManager* frameManager = presContext->PresShell()->FrameManager();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
for (nsIFrame* f = aFrame; f;
|
|
|
|
f = nsLayoutUtils::GetParentOrPlaceholderFor(frameManager, f)) {
|
|
|
|
if (!(f->GetStateBits() & NS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO))
|
|
|
|
return;
|
|
|
|
f->RemoveStateBits(NS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayListBuilder::~nsDisplayListBuilder() {
|
2008-01-03 17:53:01 -08:00
|
|
|
NS_ASSERTION(mFramesMarkedForDisplay.Length() == 0,
|
|
|
|
"All frames should have been unmarked");
|
|
|
|
NS_ASSERTION(mPresShellStates.Length() == 0,
|
|
|
|
"All presshells should have been exited");
|
2008-04-06 04:34:14 -07:00
|
|
|
NS_ASSERTION(!mCurrentTableItem, "No table item should be active");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PL_FreeArenaPool(&mPool);
|
|
|
|
PL_FinishArenaPool(&mPool);
|
2010-06-21 09:21:41 -07:00
|
|
|
MOZ_COUNT_DTOR(nsDisplayListBuilder);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
PRUint32
|
|
|
|
nsDisplayListBuilder::GetBackgroundPaintFlags() {
|
|
|
|
PRUint32 flags = 0;
|
|
|
|
if (mSyncDecodeImages) {
|
|
|
|
flags |= nsCSSRendering::PAINTBG_SYNC_DECODE_IMAGES;
|
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2009-08-13 19:09:51 -07:00
|
|
|
void
|
|
|
|
nsDisplayListBuilder::SubtractFromVisibleRegion(nsRegion* aVisibleRegion,
|
|
|
|
const nsRegion& aRegion)
|
|
|
|
{
|
2009-09-19 05:12:48 -07:00
|
|
|
nsRegion tmp;
|
|
|
|
tmp.Sub(*aVisibleRegion, aRegion);
|
|
|
|
// Don't let *aVisibleRegion get too complex, but don't let it fluff out
|
|
|
|
// to its bounds either, which can be very bad (see bug 516740).
|
|
|
|
if (GetAccurateVisibleRegions() || tmp.GetNumRects() <= 15) {
|
|
|
|
*aVisibleRegion = tmp;
|
2009-08-13 19:09:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-16 03:52:01 -07:00
|
|
|
nsCaret *
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDisplayListBuilder::GetCaret() {
|
2010-03-28 16:21:11 -07:00
|
|
|
nsRefPtr<nsCaret> caret = CurrentPresShellState()->mPresShell->GetCaret();
|
2007-03-22 10:30:00 -07:00
|
|
|
return caret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayListBuilder::EnterPresShell(nsIFrame* aReferenceFrame,
|
|
|
|
const nsRect& aDirtyRect) {
|
2008-01-03 17:53:01 -08:00
|
|
|
PresShellState* state = mPresShellStates.AppendElement();
|
|
|
|
if (!state)
|
|
|
|
return;
|
|
|
|
state->mPresShell = aReferenceFrame->PresContext()->PresShell();
|
|
|
|
state->mCaretFrame = nsnull;
|
|
|
|
state->mFirstFrameMarkedForDisplay = mFramesMarkedForDisplay.Length();
|
|
|
|
|
2009-04-25 01:19:23 -07:00
|
|
|
state->mPresShell->UpdateCanvasBackground();
|
|
|
|
|
2010-05-12 17:56:08 -07:00
|
|
|
if (mIsPaintingToWindow) {
|
|
|
|
state->mPresShell->IncrementPaintCount();
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:44:48 -07:00
|
|
|
PRBool buildCaret = mBuildCaret;
|
|
|
|
if (mIgnoreSuppression || !state->mPresShell->IsPaintingSuppressed()) {
|
|
|
|
if (state->mPresShell->IsPaintingSuppressed()) {
|
|
|
|
mHadToIgnoreSuppression = PR_TRUE;
|
|
|
|
}
|
|
|
|
state->mIsBackgroundOnly = PR_FALSE;
|
|
|
|
} else {
|
|
|
|
state->mIsBackgroundOnly = PR_TRUE;
|
|
|
|
buildCaret = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!buildCaret)
|
2007-03-22 10:30:00 -07:00
|
|
|
return;
|
|
|
|
|
2010-03-28 16:21:11 -07:00
|
|
|
nsRefPtr<nsCaret> caret = state->mPresShell->GetCaret();
|
2008-01-03 17:53:01 -08:00
|
|
|
state->mCaretFrame = caret->GetCaretFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-03 17:53:01 -08:00
|
|
|
if (state->mCaretFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Check if the dirty rect intersects with the caret's dirty rect.
|
|
|
|
nsRect caretRect =
|
2008-01-03 17:53:01 -08:00
|
|
|
caret->GetCaretRect() + state->mCaretFrame->GetOffsetTo(aReferenceFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (caretRect.Intersects(aDirtyRect)) {
|
|
|
|
// Okay, our rects intersect, let's mark the frame and all of its ancestors.
|
2008-01-03 17:53:01 -08:00
|
|
|
mFramesMarkedForDisplay.AppendElement(state->mCaretFrame);
|
|
|
|
MarkFrameForDisplay(state->mCaretFrame, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayListBuilder::LeavePresShell(nsIFrame* aReferenceFrame,
|
2009-04-25 01:19:23 -07:00
|
|
|
const nsRect& aDirtyRect) {
|
2008-01-03 17:53:01 -08:00
|
|
|
if (CurrentPresShellState()->mPresShell != aReferenceFrame->PresContext()->PresShell()) {
|
|
|
|
// Must have not allocated a state for this presshell, presumably due
|
|
|
|
// to OOM.
|
2007-03-22 10:30:00 -07:00
|
|
|
return;
|
2008-01-03 17:53:01 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-03 17:53:01 -08:00
|
|
|
// Unmark and pop off the frames marked for display in this pres shell.
|
|
|
|
PRUint32 firstFrameForShell = CurrentPresShellState()->mFirstFrameMarkedForDisplay;
|
|
|
|
for (PRUint32 i = firstFrameForShell;
|
|
|
|
i < mFramesMarkedForDisplay.Length(); ++i) {
|
|
|
|
UnmarkFrameForDisplay(mFramesMarkedForDisplay[i]);
|
|
|
|
}
|
|
|
|
mFramesMarkedForDisplay.SetLength(firstFrameForShell);
|
|
|
|
mPresShellStates.SetLength(mPresShellStates.Length() - 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-07-28 05:51:09 -07:00
|
|
|
nsDisplayListBuilder::MarkFramesForDisplayList(nsIFrame* aDirtyFrame,
|
|
|
|
const nsFrameList& aFrames,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsRect& aDirtyRect) {
|
2009-07-28 05:51:09 -07:00
|
|
|
for (nsFrameList::Enumerator e(aFrames); !e.AtEnd(); e.Next()) {
|
|
|
|
mFramesMarkedForDisplay.AppendElement(e.get());
|
|
|
|
MarkOutOfFlowFrameForDisplay(aDirtyFrame, e.get(), aDirtyRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
nsDisplayListBuilder::Allocate(size_t aSize) {
|
|
|
|
void *tmp;
|
|
|
|
PL_ARENA_ALLOCATE(tmp, &mPool, aSize);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayListSet::MoveTo(const nsDisplayListSet& aDestination) const
|
|
|
|
{
|
|
|
|
aDestination.BorderBackground()->AppendToTop(BorderBackground());
|
|
|
|
aDestination.BlockBorderBackgrounds()->AppendToTop(BlockBorderBackgrounds());
|
|
|
|
aDestination.Floats()->AppendToTop(Floats());
|
|
|
|
aDestination.Content()->AppendToTop(Content());
|
|
|
|
aDestination.PositionedDescendants()->AppendToTop(PositionedDescendants());
|
|
|
|
aDestination.Outlines()->AppendToTop(Outlines());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-11-11 12:31:39 -08:00
|
|
|
nsDisplayList::FlattenTo(nsTArray<nsDisplayItem*>* aElements) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDisplayItem* item;
|
|
|
|
while ((item = RemoveBottom()) != nsnull) {
|
2010-07-15 14:07:49 -07:00
|
|
|
if (item->GetType() == nsDisplayItem::TYPE_WRAP_LIST) {
|
2007-03-22 10:30:00 -07:00
|
|
|
item->GetList()->FlattenTo(aElements);
|
|
|
|
item->~nsDisplayItem();
|
|
|
|
} else {
|
|
|
|
aElements->AppendElement(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-10 17:24:16 -07:00
|
|
|
nsRect
|
|
|
|
nsDisplayList::GetBounds(nsDisplayListBuilder* aBuilder) const {
|
|
|
|
nsRect bounds;
|
|
|
|
for (nsDisplayItem* i = GetBottom(); i != nsnull; i = i->GetAbove()) {
|
|
|
|
bounds.UnionRect(bounds, i->GetBounds(aBuilder));
|
|
|
|
}
|
|
|
|
return bounds;
|
|
|
|
}
|
|
|
|
|
2010-07-15 14:08:09 -07:00
|
|
|
PRBool
|
2010-08-27 16:15:08 -07:00
|
|
|
nsDisplayList::ComputeVisibilityForRoot(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
nsRegion r;
|
|
|
|
r.And(*aVisibleRegion, GetBounds(aBuilder));
|
|
|
|
return ComputeVisibilityForSublist(aBuilder, aVisibleRegion, r.GetBounds());
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDisplayList::ComputeVisibilityForSublist(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsRegion* aVisibleRegion,
|
|
|
|
const nsRect& aListVisibleBounds) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsRegion r;
|
|
|
|
r.And(*aVisibleRegion, GetBounds(aBuilder));
|
|
|
|
NS_ASSERTION(r.GetBounds() == aListVisibleBounds,
|
|
|
|
"bad aListVisibleBounds");
|
|
|
|
#endif
|
|
|
|
mVisibleRect = aListVisibleBounds;
|
2010-07-15 14:08:09 -07:00
|
|
|
PRBool anyVisible = PR_FALSE;
|
2010-03-10 12:55:05 -08:00
|
|
|
|
2007-11-11 12:31:39 -08:00
|
|
|
nsAutoTArray<nsDisplayItem*, 512> elements;
|
2007-03-22 10:30:00 -07:00
|
|
|
FlattenTo(&elements);
|
2007-11-11 12:31:39 -08:00
|
|
|
|
|
|
|
for (PRInt32 i = elements.Length() - 1; i >= 0; --i) {
|
|
|
|
nsDisplayItem* item = elements[i];
|
|
|
|
nsDisplayItem* belowItem = i < 1 ? nsnull : elements[i - 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (belowItem && item->TryMerge(aBuilder, belowItem)) {
|
|
|
|
belowItem->~nsDisplayItem();
|
2007-11-11 12:31:39 -08:00
|
|
|
elements.ReplaceElementsAt(i - 1, 1, item);
|
2007-03-22 10:30:00 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-08-13 19:09:51 -07:00
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
nsRect bounds = item->GetBounds(aBuilder);
|
|
|
|
|
|
|
|
nsRegion itemVisible;
|
2010-07-15 14:08:02 -07:00
|
|
|
itemVisible.And(*aVisibleRegion, bounds);
|
2009-09-06 17:35:14 -07:00
|
|
|
item->mVisibleRect = itemVisible.GetBounds();
|
|
|
|
|
2010-08-13 02:55:54 -07:00
|
|
|
if (item->ComputeVisibility(aBuilder, aVisibleRegion)) {
|
2010-07-15 14:08:09 -07:00
|
|
|
anyVisible = PR_TRUE;
|
2010-07-15 14:08:02 -07:00
|
|
|
nsIFrame* f = item->GetUnderlyingFrame();
|
2009-09-06 17:35:14 -07:00
|
|
|
if (item->IsOpaque(aBuilder) && f) {
|
2009-10-06 21:28:41 -07:00
|
|
|
// Subtract opaque item from the visible region
|
|
|
|
aBuilder->SubtractFromVisibleRegion(aVisibleRegion, nsRegion(bounds));
|
2009-09-06 17:35:14 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-07-15 14:08:09 -07:00
|
|
|
AppendToBottom(item);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-08-13 19:09:51 -07:00
|
|
|
|
2010-08-27 16:15:08 -07:00
|
|
|
mIsOpaque = !aVisibleRegion->Intersects(mVisibleRect);
|
2009-09-06 17:35:14 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
mDidComputeVisibility = PR_TRUE;
|
|
|
|
#endif
|
2010-07-15 14:08:09 -07:00
|
|
|
return anyVisible;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-10 12:55:05 -08:00
|
|
|
void nsDisplayList::PaintRoot(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx,
|
|
|
|
PRUint32 aFlags) const {
|
|
|
|
PaintForFrame(aBuilder, aCtx, aBuilder->ReferenceFrame(), aFlags);
|
|
|
|
}
|
|
|
|
|
2010-02-28 23:56:19 -08:00
|
|
|
/**
|
|
|
|
* We paint by executing a layer manager transaction, constructing a
|
|
|
|
* single layer representing the display list, and then making it the
|
|
|
|
* root of the layer manager, drawing into the ThebesLayers.
|
|
|
|
*/
|
2010-03-10 12:55:05 -08:00
|
|
|
void nsDisplayList::PaintForFrame(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx,
|
|
|
|
nsIFrame* aForFrame,
|
|
|
|
PRUint32 aFlags) const {
|
2009-09-06 17:35:14 -07:00
|
|
|
NS_ASSERTION(mDidComputeVisibility,
|
|
|
|
"Must call ComputeVisibility before calling Paint");
|
|
|
|
|
2010-03-01 00:03:49 -08:00
|
|
|
nsRefPtr<LayerManager> layerManager;
|
|
|
|
if (aFlags & PAINT_USE_WIDGET_LAYERS) {
|
|
|
|
nsIFrame* referenceFrame = aBuilder->ReferenceFrame();
|
|
|
|
NS_ASSERTION(referenceFrame == nsLayoutUtils::GetDisplayRootFrame(referenceFrame),
|
|
|
|
"Reference frame must be a display root for us to use the layer manager");
|
2010-07-02 12:11:04 -07:00
|
|
|
nsIWidget* window = referenceFrame->GetNearestWidget();
|
2010-03-01 00:03:49 -08:00
|
|
|
if (window) {
|
|
|
|
layerManager = window->GetLayerManager();
|
2010-07-15 14:07:51 -07:00
|
|
|
if (layerManager) {
|
2010-07-15 14:08:11 -07:00
|
|
|
aBuilder->LayerBuilder()->WillBeginRetainedLayerTransaction(layerManager);
|
2010-07-15 14:07:51 -07:00
|
|
|
}
|
2010-03-01 00:03:49 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!layerManager) {
|
|
|
|
if (!aCtx) {
|
|
|
|
NS_WARNING("Nowhere to paint into");
|
|
|
|
return;
|
|
|
|
}
|
2010-07-15 14:08:10 -07:00
|
|
|
layerManager = new BasicLayerManager();
|
2010-03-01 00:03:49 -08:00
|
|
|
if (!layerManager)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-15 14:07:52 -07:00
|
|
|
if (aFlags & PAINT_FLUSH_LAYERS) {
|
|
|
|
FrameLayerBuilder::InvalidateAllLayers(layerManager);
|
|
|
|
}
|
|
|
|
|
2010-03-01 00:03:49 -08:00
|
|
|
if (aCtx) {
|
|
|
|
layerManager->BeginTransactionWithTarget(aCtx->ThebesContext());
|
|
|
|
} else {
|
|
|
|
layerManager->BeginTransaction();
|
|
|
|
}
|
2010-02-28 23:56:19 -08:00
|
|
|
|
2010-05-20 20:20:48 -07:00
|
|
|
nsRefPtr<Layer> root = aBuilder->LayerBuilder()->
|
2010-07-15 14:07:51 -07:00
|
|
|
BuildContainerLayerFor(aBuilder, layerManager, aForFrame, nsnull, *this);
|
2010-02-28 23:56:19 -08:00
|
|
|
if (!root)
|
|
|
|
return;
|
|
|
|
|
2010-03-10 12:55:05 -08:00
|
|
|
nsIntRect visible =
|
|
|
|
mVisibleRect.ToNearestPixels(aForFrame->PresContext()->AppUnitsPerDevPixel());
|
|
|
|
root->SetVisibleRegion(nsIntRegion(visible));
|
|
|
|
|
2010-02-28 23:56:19 -08:00
|
|
|
layerManager->SetRoot(root);
|
2010-07-15 14:08:11 -07:00
|
|
|
aBuilder->LayerBuilder()->WillEndTransaction(layerManager);
|
2010-05-20 20:20:48 -07:00
|
|
|
layerManager->EndTransaction(FrameLayerBuilder::DrawThebesLayer,
|
|
|
|
aBuilder);
|
2010-07-15 14:07:51 -07:00
|
|
|
aBuilder->LayerBuilder()->DidEndTransaction(layerManager);
|
2010-02-28 23:56:19 -08:00
|
|
|
|
2010-07-15 14:07:52 -07:00
|
|
|
if (aFlags & PAINT_FLUSH_LAYERS) {
|
|
|
|
FrameLayerBuilder::InvalidateAllLayers(layerManager);
|
|
|
|
}
|
|
|
|
|
2007-05-04 16:28:00 -07:00
|
|
|
nsCSSRendering::DidPaint();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 nsDisplayList::Count() const {
|
|
|
|
PRUint32 count = 0;
|
|
|
|
for (nsDisplayItem* i = GetBottom(); i; i = i->GetAbove()) {
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayItem* nsDisplayList::RemoveBottom() {
|
|
|
|
nsDisplayItem* item = mSentinel.mAbove;
|
|
|
|
if (!item)
|
|
|
|
return nsnull;
|
|
|
|
mSentinel.mAbove = item->mAbove;
|
|
|
|
if (item == mTop) {
|
|
|
|
// must have been the only item
|
|
|
|
mTop = &mSentinel;
|
|
|
|
}
|
|
|
|
item->mAbove = nsnull;
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayList::DeleteAll() {
|
|
|
|
nsDisplayItem* item;
|
|
|
|
while ((item = RemoveBottom()) != nsnull) {
|
|
|
|
item->~nsDisplayItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
void nsDisplayList::HitTest(nsDisplayListBuilder* aBuilder, const nsRect& aRect,
|
|
|
|
nsDisplayItem::HitTestState* aState,
|
|
|
|
nsTArray<nsIFrame*> *aOutFrames) const {
|
2008-01-03 18:08:29 -08:00
|
|
|
PRInt32 itemBufferStart = aState->mItemBuffer.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDisplayItem* item;
|
|
|
|
for (item = GetBottom(); item; item = item->GetAbove()) {
|
2008-01-03 18:08:29 -08:00
|
|
|
aState->mItemBuffer.AppendElement(item);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-01-03 18:08:29 -08:00
|
|
|
for (PRInt32 i = aState->mItemBuffer.Length() - 1; i >= itemBufferStart; --i) {
|
|
|
|
// Pop element off the end of the buffer. We want to shorten the buffer
|
|
|
|
// so that recursive calls to HitTest have more buffer space.
|
|
|
|
item = aState->mItemBuffer[i];
|
|
|
|
aState->mItemBuffer.SetLength(i);
|
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
if (aRect.Intersects(item->GetBounds(aBuilder))) {
|
|
|
|
nsTArray<nsIFrame*> outFrames;
|
|
|
|
item->HitTest(aBuilder, aRect, aState, &outFrames);
|
|
|
|
|
|
|
|
for (PRUint32 j = 0; j < outFrames.Length(); j++) {
|
|
|
|
nsIFrame *f = outFrames.ElementAt(j);
|
|
|
|
// Handle the XUL 'mousethrough' feature and 'pointer-events'.
|
2009-08-26 20:53:35 -07:00
|
|
|
if (!f->GetMouseThrough() &&
|
|
|
|
f->GetStyleVisibility()->mPointerEvents != NS_STYLE_POINTER_EVENTS_NONE) {
|
2010-04-07 17:31:26 -07:00
|
|
|
aOutFrames->AppendElement(f);
|
2008-01-03 18:08:29 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-07 17:31:26 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2008-09-13 02:42:11 -07:00
|
|
|
NS_ASSERTION(aState->mItemBuffer.Length() == PRUint32(itemBufferStart),
|
2008-01-03 18:08:29 -08:00
|
|
|
"How did we forget to pop some elements?");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void Sort(nsDisplayList* aList, PRInt32 aCount, nsDisplayList::SortLEQ aCmp,
|
|
|
|
void* aClosure) {
|
|
|
|
if (aCount < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsDisplayList list1;
|
|
|
|
nsDisplayList list2;
|
|
|
|
int i;
|
|
|
|
PRInt32 half = aCount/2;
|
|
|
|
PRBool sorted = PR_TRUE;
|
|
|
|
nsDisplayItem* prev = nsnull;
|
|
|
|
for (i = 0; i < aCount; ++i) {
|
|
|
|
nsDisplayItem* item = aList->RemoveBottom();
|
|
|
|
(i < half ? &list1 : &list2)->AppendToTop(item);
|
|
|
|
if (sorted && prev && !aCmp(prev, item, aClosure)) {
|
|
|
|
sorted = PR_FALSE;
|
|
|
|
}
|
|
|
|
prev = item;
|
|
|
|
}
|
|
|
|
if (sorted) {
|
|
|
|
aList->AppendToTop(&list1);
|
|
|
|
aList->AppendToTop(&list2);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sort(&list1, half, aCmp, aClosure);
|
|
|
|
Sort(&list2, aCount - half, aCmp, aClosure);
|
|
|
|
|
|
|
|
for (i = 0; i < aCount; ++i) {
|
|
|
|
if (list1.GetBottom() &&
|
|
|
|
(!list2.GetBottom() ||
|
|
|
|
aCmp(list1.GetBottom(), list2.GetBottom(), aClosure))) {
|
|
|
|
aList->AppendToTop(list1.RemoveBottom());
|
|
|
|
} else {
|
|
|
|
aList->AppendToTop(list2.RemoveBottom());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool IsContentLEQ(nsDisplayItem* aItem1, nsDisplayItem* aItem2,
|
|
|
|
void* aClosure) {
|
|
|
|
// These GetUnderlyingFrame calls return non-null because we're only used
|
|
|
|
// in sorting
|
|
|
|
return nsLayoutUtils::CompareTreePosition(
|
|
|
|
aItem1->GetUnderlyingFrame()->GetContent(),
|
|
|
|
aItem2->GetUnderlyingFrame()->GetContent(),
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsIContent*>(aClosure)) <= 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool IsZOrderLEQ(nsDisplayItem* aItem1, nsDisplayItem* aItem2,
|
|
|
|
void* aClosure) {
|
|
|
|
// These GetUnderlyingFrame calls return non-null because we're only used
|
2010-04-01 19:09:05 -07:00
|
|
|
// in sorting. Note that we can't just take the difference of the two
|
|
|
|
// z-indices here, because that might overflow a 32-bit int.
|
|
|
|
PRInt32 index1 = nsLayoutUtils::GetZIndex(aItem1->GetUnderlyingFrame());
|
|
|
|
PRInt32 index2 = nsLayoutUtils::GetZIndex(aItem2->GetUnderlyingFrame());
|
|
|
|
if (index1 == index2)
|
2007-03-22 10:30:00 -07:00
|
|
|
return IsContentLEQ(aItem1, aItem2, aClosure);
|
2010-04-01 19:09:05 -07:00
|
|
|
return index1 < index2;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayList::ExplodeAnonymousChildLists(nsDisplayListBuilder* aBuilder) {
|
|
|
|
// See if there's anything to do
|
|
|
|
PRBool anyAnonymousItems = PR_FALSE;
|
|
|
|
nsDisplayItem* i;
|
|
|
|
for (i = GetBottom(); i != nsnull; i = i->GetAbove()) {
|
|
|
|
if (!i->GetUnderlyingFrame()) {
|
|
|
|
anyAnonymousItems = PR_TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!anyAnonymousItems)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsDisplayList tmp;
|
|
|
|
while ((i = RemoveBottom()) != nsnull) {
|
|
|
|
if (i->GetUnderlyingFrame()) {
|
|
|
|
tmp.AppendToTop(i);
|
|
|
|
} else {
|
|
|
|
nsDisplayList* list = i->GetList();
|
|
|
|
NS_ASSERTION(list, "leaf items can't be anonymous");
|
|
|
|
list->ExplodeAnonymousChildLists(aBuilder);
|
|
|
|
nsDisplayItem* j;
|
|
|
|
while ((j = list->RemoveBottom()) != nsnull) {
|
2007-07-08 00:08:04 -07:00
|
|
|
tmp.AppendToTop(static_cast<nsDisplayWrapList*>(i)->
|
2007-03-22 10:30:00 -07:00
|
|
|
WrapWithClone(aBuilder, j));
|
|
|
|
}
|
|
|
|
i->~nsDisplayItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AppendToTop(&tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayList::SortByZOrder(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIContent* aCommonAncestor) {
|
|
|
|
Sort(aBuilder, IsZOrderLEQ, aCommonAncestor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayList::SortByContentOrder(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIContent* aCommonAncestor) {
|
|
|
|
Sort(aBuilder, IsContentLEQ, aCommonAncestor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayList::Sort(nsDisplayListBuilder* aBuilder,
|
|
|
|
SortLEQ aCmp, void* aClosure) {
|
|
|
|
ExplodeAnonymousChildLists(aBuilder);
|
|
|
|
::Sort(this, Count(), aCmp, aClosure);
|
|
|
|
}
|
|
|
|
|
2010-07-15 14:07:51 -07:00
|
|
|
PRBool nsDisplayItem::RecomputeVisibility(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
nsRect bounds = GetBounds(aBuilder);
|
|
|
|
|
|
|
|
nsRegion itemVisible;
|
|
|
|
itemVisible.And(*aVisibleRegion, bounds);
|
|
|
|
mVisibleRect = itemVisible.GetBounds();
|
|
|
|
|
2010-08-13 02:55:54 -07:00
|
|
|
if (!ComputeVisibility(aBuilder, aVisibleRegion))
|
2010-07-15 14:07:51 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (IsOpaque(aBuilder)) {
|
|
|
|
aVisibleRegion->Sub(*aVisibleRegion, bounds);
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-04-25 01:19:23 -07:00
|
|
|
void nsDisplaySolidColor::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2009-04-25 01:19:23 -07:00
|
|
|
aCtx->SetColor(mColor);
|
2009-09-06 17:35:14 -07:00
|
|
|
aCtx->FillRect(mVisibleRect);
|
2009-04-25 01:19:23 -07:00
|
|
|
}
|
|
|
|
|
2010-07-24 02:35:29 -07:00
|
|
|
static void
|
|
|
|
RegisterThemeWidgetGeometry(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = aFrame->PresContext();
|
|
|
|
nsITheme* theme = presContext->GetTheme();
|
|
|
|
if (!theme)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIFrame* displayRoot = nsLayoutUtils::GetDisplayRootFrame(aFrame);
|
|
|
|
nsIWidget* widget = displayRoot->GetNearestWidget();
|
|
|
|
// If the display root doesn't have a widget, just bail. Something
|
|
|
|
// weird is going on, maybe we're printing?
|
|
|
|
if (!widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (nsIFrame* f = aFrame; f; f = f->GetParent()) {
|
|
|
|
// Bail out if we're in a transformed subtree
|
|
|
|
if (f->IsTransformed())
|
|
|
|
return;
|
|
|
|
// Bail out if we're not in the displayRoot's document
|
|
|
|
if (!f->GetParent() && f != displayRoot)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect borderBox(aFrame->GetOffsetTo(displayRoot), aFrame->GetSize());
|
|
|
|
theme->RegisterWidgetGeometry(widget,
|
|
|
|
aFrame->GetStyleDisplay()->mAppearance,
|
|
|
|
borderBox.ToNearestPixels(presContext->AppUnitsPerDevPixel()));
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayBackground::nsDisplayBackground(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame)
|
2010-07-24 02:35:29 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayBackground);
|
|
|
|
const nsStyleDisplay* disp = mFrame->GetStyleDisplay();
|
|
|
|
mIsThemed = mFrame->IsThemed(disp, &mThemeTransparency);
|
|
|
|
|
|
|
|
// Perform necessary RegisterWidgetGeometry
|
|
|
|
if (mIsThemed &&
|
|
|
|
(disp->mAppearance == NS_THEME_MOZ_MAC_UNIFIED_TOOLBAR ||
|
|
|
|
disp->mAppearance == NS_THEME_TOOLBAR)) {
|
|
|
|
RegisterThemeWidgetGeometry(aFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-24 02:24:44 -07:00
|
|
|
// Returns TRUE if aContainedRect is guaranteed to be contained in
|
|
|
|
// the rounded rect defined by aRoundedRect and aRadii. Complex cases are
|
|
|
|
// handled conservatively by returning FALSE in some situations where
|
|
|
|
// a more thorough analysis could return TRUE.
|
|
|
|
static PRBool RoundedRectContainsRect(const nsRect& aRoundedRect,
|
|
|
|
const nscoord aRadii[8],
|
|
|
|
const nsRect& aContainedRect) {
|
|
|
|
// rectFullHeight and rectFullWidth together will approximately contain
|
|
|
|
// the total area of the frame minus the rounded corners.
|
|
|
|
nsRect rectFullHeight = aRoundedRect;
|
2009-09-16 08:01:36 -07:00
|
|
|
nscoord xDiff = NS_MAX(aRadii[NS_CORNER_TOP_LEFT_X], aRadii[NS_CORNER_BOTTOM_LEFT_X]);
|
2009-04-24 02:24:44 -07:00
|
|
|
rectFullHeight.x += xDiff;
|
2009-09-16 08:01:36 -07:00
|
|
|
rectFullHeight.width -= NS_MAX(aRadii[NS_CORNER_TOP_RIGHT_X],
|
2009-04-24 02:24:44 -07:00
|
|
|
aRadii[NS_CORNER_BOTTOM_RIGHT_X]) + xDiff;
|
|
|
|
if (rectFullHeight.Contains(aContainedRect))
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
nsRect rectFullWidth = aRoundedRect;
|
2009-09-16 08:01:36 -07:00
|
|
|
nscoord yDiff = NS_MAX(aRadii[NS_CORNER_TOP_LEFT_Y], aRadii[NS_CORNER_TOP_RIGHT_Y]);
|
2009-04-24 02:24:44 -07:00
|
|
|
rectFullWidth.y += yDiff;
|
2009-09-16 08:01:36 -07:00
|
|
|
rectFullWidth.height -= NS_MAX(aRadii[NS_CORNER_BOTTOM_LEFT_Y],
|
2009-04-24 02:24:44 -07:00
|
|
|
aRadii[NS_CORNER_BOTTOM_RIGHT_Y]) + yDiff;
|
|
|
|
if (rectFullWidth.Contains(aContainedRect))
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-07-15 14:08:06 -07:00
|
|
|
PRBool
|
|
|
|
nsDisplayBackground::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion)
|
2010-07-15 14:08:06 -07:00
|
|
|
{
|
2010-08-13 02:55:54 -07:00
|
|
|
if (!nsDisplayItem::ComputeVisibility(aBuilder, aVisibleRegion))
|
2010-07-15 14:08:09 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
|
2010-07-15 14:08:06 -07:00
|
|
|
// Return false if the background was propagated away from this
|
|
|
|
// frame. We don't want this display item to show up and confuse
|
|
|
|
// anything.
|
|
|
|
nsStyleContext* bgSC;
|
|
|
|
return mIsThemed ||
|
|
|
|
nsCSSRendering::FindBackground(mFrame->PresContext(), mFrame, &bgSC);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool
|
|
|
|
nsDisplayBackground::IsOpaque(nsDisplayListBuilder* aBuilder) {
|
|
|
|
// theme background overrides any other background
|
2007-12-17 21:26:38 -08:00
|
|
|
if (mIsThemed)
|
2010-06-10 15:53:57 -07:00
|
|
|
return mThemeTransparency == nsITheme::eOpaque;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-15 14:08:06 -07:00
|
|
|
nsStyleContext* bgSC;
|
2010-04-02 18:58:26 -07:00
|
|
|
if (!nsCSSRendering::FindBackground(mFrame->PresContext(), mFrame, &bgSC))
|
2009-04-08 08:19:51 -07:00
|
|
|
return PR_FALSE;
|
2010-04-02 18:58:26 -07:00
|
|
|
const nsStyleBackground* bg = bgSC->GetStyleBackground();
|
2009-04-08 08:19:51 -07:00
|
|
|
|
|
|
|
const nsStyleBackground::Layer& bottomLayer = bg->BottomLayer();
|
|
|
|
|
|
|
|
// bottom layer's clip is used for the color
|
|
|
|
if (bottomLayer.mClip != NS_STYLE_BG_CLIP_BORDER ||
|
|
|
|
nsLayoutUtils::HasNonZeroCorner(mFrame->GetStyleBorder()->mBorderRadius))
|
|
|
|
return PR_FALSE;
|
|
|
|
|
2009-07-04 02:30:59 -07:00
|
|
|
if (NS_GET_A(bg->mBackgroundColor) == 255 &&
|
|
|
|
!nsCSSRendering::IsCanvasFrame(mFrame))
|
2009-04-08 08:19:51 -07:00
|
|
|
return PR_TRUE;
|
|
|
|
|
2009-08-21 13:39:25 -07:00
|
|
|
return bottomLayer.mRepeat == NS_STYLE_BG_REPEAT_XY &&
|
|
|
|
bottomLayer.mImage.IsOpaque();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2010-05-12 17:56:11 -07:00
|
|
|
nsDisplayBackground::IsUniform(nsDisplayListBuilder* aBuilder, nscolor* aColor) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// theme background overrides any other background
|
2007-12-17 21:26:38 -08:00
|
|
|
if (mIsThemed)
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
|
2010-04-02 18:58:26 -07:00
|
|
|
nsStyleContext *bgSC;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool hasBG =
|
2010-04-02 18:58:26 -07:00
|
|
|
nsCSSRendering::FindBackground(mFrame->PresContext(), mFrame, &bgSC);
|
2010-05-12 17:56:11 -07:00
|
|
|
if (!hasBG) {
|
|
|
|
*aColor = NS_RGBA(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_TRUE;
|
2010-05-12 17:56:11 -07:00
|
|
|
}
|
2010-04-02 18:58:26 -07:00
|
|
|
const nsStyleBackground* bg = bgSC->GetStyleBackground();
|
2009-08-21 13:39:25 -07:00
|
|
|
if (bg->BottomLayer().mImage.IsEmpty() &&
|
2009-02-19 21:29:21 -08:00
|
|
|
bg->mImageCount == 1 &&
|
2008-09-30 22:50:52 -07:00
|
|
|
!nsLayoutUtils::HasNonZeroCorner(mFrame->GetStyleBorder()->mBorderRadius) &&
|
2010-05-12 17:56:11 -07:00
|
|
|
bg->BottomLayer().mClip == NS_STYLE_BG_CLIP_BORDER) {
|
|
|
|
// Canvas frames don't actually render their background color, since that
|
|
|
|
// gets propagated to the solid color of the viewport
|
|
|
|
// (see nsCSSRendering::PaintBackgroundWithSC)
|
|
|
|
*aColor = nsCSSRendering::IsCanvasFrame(mFrame) ? NS_RGBA(0,0,0,0)
|
|
|
|
: bg->mBackgroundColor;
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_TRUE;
|
2010-05-12 17:56:11 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2010-08-13 02:54:37 -07:00
|
|
|
nsDisplayBackground::IsVaryingRelativeToMovingFrame(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-07-15 14:08:12 -07:00
|
|
|
// theme background overrides any other background and is never fixed
|
|
|
|
if (mIsThemed)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
2008-04-10 20:46:37 -07:00
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
2010-04-02 18:58:26 -07:00
|
|
|
nsStyleContext *bgSC;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool hasBG =
|
2010-07-15 14:08:06 -07:00
|
|
|
nsCSSRendering::FindBackground(presContext, mFrame, &bgSC);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!hasBG)
|
|
|
|
return PR_FALSE;
|
2010-04-02 18:58:26 -07:00
|
|
|
const nsStyleBackground* bg = bgSC->GetStyleBackground();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!bg->HasFixedBackground())
|
|
|
|
return PR_FALSE;
|
|
|
|
|
2010-08-13 02:54:37 -07:00
|
|
|
// If aFrame is mFrame or an ancestor in this document, and aFrame is
|
|
|
|
// not the viewport frame, then moving aFrame will move mFrame
|
|
|
|
// relative to the viewport, so our fixed-pos background will change.
|
|
|
|
return aFrame->GetParent() &&
|
|
|
|
(aFrame == mFrame ||
|
|
|
|
nsLayoutUtils::IsProperAncestorFrame(aFrame, mFrame));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-15 14:08:12 -07:00
|
|
|
PRBool
|
|
|
|
nsDisplayBackground::IsFixedAndCoveringViewport(nsDisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
if (mIsThemed)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
nsStyleContext* bgSC;
|
|
|
|
PRBool hasBG =
|
|
|
|
nsCSSRendering::FindBackground(presContext, mFrame, &bgSC);
|
|
|
|
if (!hasBG)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
const nsStyleBackground* bg = bgSC->GetStyleBackground();
|
|
|
|
if (!bg->HasFixedBackground())
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
NS_FOR_VISIBLE_BACKGROUND_LAYERS_BACK_TO_FRONT(i, bg) {
|
|
|
|
const nsStyleBackground::Layer& layer = bg->mLayers[i];
|
|
|
|
if (layer.mAttachment != NS_STYLE_BG_ATTACHMENT_FIXED &&
|
|
|
|
!layer.mImage.IsEmpty()) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
if (layer.mClip != NS_STYLE_BG_CLIP_BORDER)
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsLayoutUtils::HasNonZeroCorner(mFrame->GetStyleBorder()->mBorderRadius))
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsRect bounds = GetBounds(aBuilder);
|
|
|
|
nsIFrame* rootScrollFrame = presContext->PresShell()->GetRootScrollFrame();
|
|
|
|
if (!rootScrollFrame)
|
|
|
|
return PR_FALSE;
|
|
|
|
nsIScrollableFrame* scrollable = do_QueryFrame(rootScrollFrame);
|
|
|
|
nsRect scrollport = scrollable->GetScrollPortRect() +
|
|
|
|
aBuilder->ToReferenceFrame(rootScrollFrame);
|
|
|
|
return bounds.Contains(scrollport);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
|
|
|
nsDisplayBackground::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2009-09-12 15:44:18 -07:00
|
|
|
PRUint32 flags = aBuilder->GetBackgroundPaintFlags();
|
2009-05-27 22:01:42 -07:00
|
|
|
nsDisplayItem* nextItem = GetAbove();
|
|
|
|
if (nextItem && nextItem->GetUnderlyingFrame() == mFrame &&
|
|
|
|
nextItem->GetType() == TYPE_BORDER) {
|
2009-09-12 15:44:18 -07:00
|
|
|
flags |= nsCSSRendering::PAINTBG_WILL_PAINT_BORDER;
|
2009-05-27 22:01:42 -07:00
|
|
|
}
|
2007-03-30 14:11:41 -07:00
|
|
|
nsCSSRendering::PaintBackground(mFrame->PresContext(), *aCtx, mFrame,
|
2009-09-06 17:35:14 -07:00
|
|
|
mVisibleRect,
|
|
|
|
nsRect(offset, mFrame->GetSize()),
|
2009-05-27 22:01:42 -07:00
|
|
|
flags);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-12-17 21:26:38 -08:00
|
|
|
nsRect
|
|
|
|
nsDisplayBackground::GetBounds(nsDisplayListBuilder* aBuilder) {
|
2010-08-23 02:30:08 -07:00
|
|
|
if (mIsThemed) {
|
|
|
|
nsRect r(nsPoint(0,0), mFrame->GetSize());
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
presContext->GetTheme()->
|
|
|
|
GetWidgetOverflow(presContext->DeviceContext(), mFrame,
|
|
|
|
mFrame->GetStyleDisplay()->mAppearance, &r);
|
|
|
|
return r + ToReferenceFrame();
|
|
|
|
}
|
2007-12-17 21:26:38 -08:00
|
|
|
|
2010-08-13 03:01:58 -07:00
|
|
|
return nsRect(ToReferenceFrame(), mFrame->GetSize());
|
2007-12-17 21:26:38 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRect
|
|
|
|
nsDisplayOutline::GetBounds(nsDisplayListBuilder* aBuilder) {
|
2010-08-13 03:01:58 -07:00
|
|
|
return mFrame->GetOverflowRect() + ToReferenceFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayOutline::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// TODO join outlines together
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2007-03-30 14:11:41 -07:00
|
|
|
nsCSSRendering::PaintOutline(mFrame->PresContext(), *aCtx, mFrame,
|
2009-09-06 17:35:14 -07:00
|
|
|
mVisibleRect,
|
|
|
|
nsRect(offset, mFrame->GetSize()),
|
2008-08-06 03:33:18 -07:00
|
|
|
mFrame->GetStyleContext());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2009-09-06 17:35:14 -07:00
|
|
|
nsDisplayOutline::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
if (!nsDisplayItem::ComputeVisibility(aBuilder, aVisibleRegion))
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
const nsStyleOutline* outline = mFrame->GetStyleOutline();
|
2010-08-13 03:01:58 -07:00
|
|
|
nsRect borderBox(ToReferenceFrame(), mFrame->GetSize());
|
2009-10-06 21:28:41 -07:00
|
|
|
if (borderBox.Contains(aVisibleRegion->GetBounds()) &&
|
2008-09-30 22:50:52 -07:00
|
|
|
!nsLayoutUtils::HasNonZeroCorner(outline->mOutlineRadius)) {
|
2008-09-12 20:45:37 -07:00
|
|
|
if (outline->mOutlineOffset >= 0) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// the visible region is entirely inside the border-rect, and the outline
|
|
|
|
// isn't rendered inside the border-rect, so the outline is not visible
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayCaret::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Note: Because we exist, we know that the caret is visible, so we don't
|
|
|
|
// need to check for the caret's visibility.
|
2010-08-13 03:01:58 -07:00
|
|
|
mCaret->PaintCaret(aBuilder, aCtx, mFrame, ToReferenceFrame());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2009-09-06 17:35:14 -07:00
|
|
|
nsDisplayBorder::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
if (!nsDisplayItem::ComputeVisibility(aBuilder, aVisibleRegion))
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
|
2007-09-27 15:52:32 -07:00
|
|
|
nsRect paddingRect = mFrame->GetPaddingRect() - mFrame->GetPosition() +
|
2010-08-13 03:01:58 -07:00
|
|
|
ToReferenceFrame();
|
2008-07-16 23:30:25 -07:00
|
|
|
const nsStyleBorder *styleBorder;
|
2007-09-27 15:52:32 -07:00
|
|
|
if (paddingRect.Contains(aVisibleRegion->GetBounds()) &&
|
2008-07-16 23:30:25 -07:00
|
|
|
!(styleBorder = mFrame->GetStyleBorder())->IsBorderImageLoaded() &&
|
2008-09-30 22:50:52 -07:00
|
|
|
!nsLayoutUtils::HasNonZeroCorner(styleBorder->mBorderRadius)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// the visible region is entirely inside the content rect, and no part
|
|
|
|
// of the border is rendered inside the content rect, so we are not
|
|
|
|
// visible
|
2008-07-16 23:30:25 -07:00
|
|
|
// Skip this if there's a border-image (which draws a background
|
|
|
|
// too) or if there is a border-radius (which makes the border draw
|
|
|
|
// further in).
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayBorder::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2007-03-30 14:11:41 -07:00
|
|
|
nsCSSRendering::PaintBorder(mFrame->PresContext(), *aCtx, mFrame,
|
2009-09-06 17:35:14 -07:00
|
|
|
mVisibleRect,
|
|
|
|
nsRect(offset, mFrame->GetSize()),
|
2008-08-06 03:33:18 -07:00
|
|
|
mFrame->GetStyleContext(),
|
|
|
|
mFrame->GetSkipSides());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-30 15:14:04 -08:00
|
|
|
// Given a region, compute a conservative approximation to it as a list
|
|
|
|
// of rectangles that aren't vertically adjacent (i.e., vertically
|
|
|
|
// adjacent or overlapping rectangles are combined).
|
|
|
|
// Right now this is only approximate, some vertically overlapping rectangles
|
|
|
|
// aren't guaranteed to be combined.
|
|
|
|
static void
|
|
|
|
ComputeDisjointRectangles(const nsRegion& aRegion,
|
|
|
|
nsTArray<nsRect>* aRects) {
|
|
|
|
nscoord accumulationMargin = nsPresContext::CSSPixelsToAppUnits(25);
|
|
|
|
nsRect accumulated;
|
|
|
|
nsRegionRectIterator iter(aRegion);
|
|
|
|
while (PR_TRUE) {
|
|
|
|
const nsRect* r = iter.Next();
|
|
|
|
if (r && !accumulated.IsEmpty() &&
|
|
|
|
accumulated.YMost() >= r->y - accumulationMargin) {
|
|
|
|
accumulated.UnionRect(accumulated, *r);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!accumulated.IsEmpty()) {
|
|
|
|
aRects->AppendElement(accumulated);
|
|
|
|
accumulated.Empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!r)
|
|
|
|
break;
|
|
|
|
|
|
|
|
accumulated = *r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-07 17:57:47 -07:00
|
|
|
void
|
2009-02-10 00:45:13 -08:00
|
|
|
nsDisplayBoxShadowOuter::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2009-11-30 15:14:04 -08:00
|
|
|
nsRect borderRect = nsRect(offset, mFrame->GetSize());
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
nsAutoTArray<nsRect,10> rects;
|
|
|
|
ComputeDisjointRectangles(mVisibleRegion, &rects);
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < rects.Length(); ++i) {
|
|
|
|
aCtx->PushState();
|
|
|
|
aCtx->SetClipRect(rects[i], nsClipCombine_kIntersect);
|
|
|
|
nsCSSRendering::PaintBoxShadowOuter(presContext, *aCtx, mFrame,
|
|
|
|
borderRect, rects[i]);
|
|
|
|
aCtx->PopState();
|
|
|
|
}
|
2008-07-07 17:57:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRect
|
2009-02-10 00:45:13 -08:00
|
|
|
nsDisplayBoxShadowOuter::GetBounds(nsDisplayListBuilder* aBuilder) {
|
2010-08-13 03:01:58 -07:00
|
|
|
return mFrame->GetOverflowRect() + ToReferenceFrame();
|
2008-07-07 17:57:47 -07:00
|
|
|
}
|
|
|
|
|
2009-01-29 23:03:46 -08:00
|
|
|
PRBool
|
2009-09-06 17:35:14 -07:00
|
|
|
nsDisplayBoxShadowOuter::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
if (!nsDisplayItem::ComputeVisibility(aBuilder, aVisibleRegion))
|
2009-01-29 23:03:46 -08:00
|
|
|
return PR_FALSE;
|
|
|
|
|
2009-11-30 15:14:04 -08:00
|
|
|
// Store the actual visible region
|
|
|
|
mVisibleRegion.And(*aVisibleRegion, mVisibleRect);
|
|
|
|
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint origin = ToReferenceFrame();
|
2009-10-06 21:28:41 -07:00
|
|
|
nsRect visibleBounds = aVisibleRegion->GetBounds();
|
2009-04-24 02:24:44 -07:00
|
|
|
nsRect frameRect(origin, mFrame->GetSize());
|
|
|
|
if (!frameRect.Contains(visibleBounds))
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
// the visible region is entirely inside the border-rect, and box shadows
|
|
|
|
// never render within the border-rect (unless there's a border radius).
|
|
|
|
nscoord twipsRadii[8];
|
2010-09-07 15:20:35 -07:00
|
|
|
PRBool hasBorderRadii = mFrame->GetBorderRadii(twipsRadii);
|
2009-04-24 02:24:44 -07:00
|
|
|
if (!hasBorderRadii)
|
2009-01-29 23:03:46 -08:00
|
|
|
return PR_FALSE;
|
|
|
|
|
2009-04-24 02:24:44 -07:00
|
|
|
return !RoundedRectContainsRect(frameRect, twipsRadii, visibleBounds);
|
2009-01-29 23:03:46 -08:00
|
|
|
}
|
|
|
|
|
2009-02-10 00:45:13 -08:00
|
|
|
void
|
|
|
|
nsDisplayBoxShadowInner::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-08-13 03:01:58 -07:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2009-11-30 15:14:04 -08:00
|
|
|
nsRect borderRect = nsRect(offset, mFrame->GetSize());
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
nsAutoTArray<nsRect,10> rects;
|
|
|
|
ComputeDisjointRectangles(mVisibleRegion, &rects);
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < rects.Length(); ++i) {
|
|
|
|
aCtx->PushState();
|
|
|
|
aCtx->SetClipRect(rects[i], nsClipCombine_kIntersect);
|
|
|
|
nsCSSRendering::PaintBoxShadowInner(presContext, *aCtx, mFrame,
|
|
|
|
borderRect, rects[i]);
|
|
|
|
aCtx->PopState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDisplayBoxShadowInner::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
|
|
|
if (!nsDisplayItem::ComputeVisibility(aBuilder, aVisibleRegion))
|
2009-11-30 15:14:04 -08:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
// Store the actual visible region
|
|
|
|
mVisibleRegion.And(*aVisibleRegion, mVisibleRect);
|
|
|
|
return PR_TRUE;
|
2009-02-10 00:45:13 -08:00
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayWrapList::nsDisplayWrapList(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayList* aList)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mList.AppendToTop(aList);
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayWrapList::nsDisplayWrapList(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayItem* aItem)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mList.AppendToTop(aItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayWrapList::~nsDisplayWrapList() {
|
|
|
|
mList.DeleteAll();
|
|
|
|
}
|
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
void
|
|
|
|
nsDisplayWrapList::HitTest(nsDisplayListBuilder* aBuilder, const nsRect& aRect,
|
|
|
|
HitTestState* aState, nsTArray<nsIFrame*> *aOutFrames) {
|
|
|
|
mList.HitTest(aBuilder, aRect, aState, aOutFrames);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRect
|
|
|
|
nsDisplayWrapList::GetBounds(nsDisplayListBuilder* aBuilder) {
|
2008-09-10 17:24:16 -07:00
|
|
|
return mList.GetBounds(aBuilder);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2009-09-06 17:35:14 -07:00
|
|
|
nsDisplayWrapList::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
2010-08-27 16:15:08 -07:00
|
|
|
return mList.ComputeVisibilityForSublist(aBuilder, aVisibleRegion,
|
|
|
|
mVisibleRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDisplayWrapList::IsOpaque(nsDisplayListBuilder* aBuilder) {
|
2010-08-27 16:15:08 -07:00
|
|
|
return mList.IsOpaque();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-12 17:56:11 -07:00
|
|
|
PRBool nsDisplayWrapList::IsUniform(nsDisplayListBuilder* aBuilder, nscolor* aColor) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// We could try to do something but let's conservatively just return PR_FALSE.
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-08-13 02:54:37 -07:00
|
|
|
PRBool nsDisplayWrapList::IsVaryingRelativeToMovingFrame(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame) {
|
2008-04-10 20:46:37 -07:00
|
|
|
NS_WARNING("nsDisplayWrapList::IsVaryingRelativeToMovingFrame called unexpectedly");
|
|
|
|
// We could try to do something but let's conservatively just return PR_TRUE.
|
|
|
|
return PR_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayWrapList::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-02-28 23:56:19 -08:00
|
|
|
NS_ERROR("nsDisplayWrapList should have been flattened away for painting");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-15 14:08:05 -07:00
|
|
|
PRBool nsDisplayWrapList::ChildrenCanBeInactive(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
|
|
|
const nsDisplayList& aList,
|
|
|
|
nsIFrame* aActiveScrolledRoot) {
|
|
|
|
for (nsDisplayItem* i = aList.GetBottom(); i; i = i->GetAbove()) {
|
|
|
|
nsIFrame* f = i->GetUnderlyingFrame();
|
|
|
|
if (f) {
|
|
|
|
nsIFrame* activeScrolledRoot =
|
2010-08-08 11:49:06 -07:00
|
|
|
nsLayoutUtils::GetActiveScrolledRootFor(f, nsnull);
|
2010-07-15 14:08:05 -07:00
|
|
|
if (activeScrolledRoot != aActiveScrolledRoot)
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerState state = i->GetLayerState(aBuilder, aManager);
|
|
|
|
if (state == LAYER_ACTIVE)
|
|
|
|
return PR_FALSE;
|
|
|
|
if (state == LAYER_NONE) {
|
|
|
|
nsDisplayList* list = i->GetList();
|
|
|
|
if (list && !ChildrenCanBeInactive(aBuilder, aManager, *list, aActiveScrolledRoot))
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static nsresult
|
|
|
|
WrapDisplayList(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
|
|
|
nsDisplayList* aList, nsDisplayWrapper* aWrapper) {
|
2010-08-13 02:55:54 -07:00
|
|
|
if (!aList->GetTop())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
nsDisplayItem* item = aWrapper->WrapList(aBuilder, aFrame, aList);
|
|
|
|
if (!item)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
// aList was emptied
|
|
|
|
aList->AppendToTop(item);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
WrapEachDisplayItem(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsDisplayList* aList, nsDisplayWrapper* aWrapper) {
|
|
|
|
nsDisplayList newList;
|
|
|
|
nsDisplayItem* item;
|
|
|
|
while ((item = aList->RemoveBottom())) {
|
|
|
|
item = aWrapper->WrapItem(aBuilder, item);
|
|
|
|
if (!item)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
newList.AppendToTop(item);
|
|
|
|
}
|
|
|
|
// aList was emptied
|
|
|
|
aList->AppendToTop(&newList);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsDisplayWrapper::WrapLists(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsDisplayListSet& aIn, const nsDisplayListSet& aOut)
|
|
|
|
{
|
|
|
|
nsresult rv = WrapListsInPlace(aBuilder, aFrame, aIn);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (&aOut == &aIn)
|
|
|
|
return NS_OK;
|
|
|
|
aOut.BorderBackground()->AppendToTop(aIn.BorderBackground());
|
|
|
|
aOut.BlockBorderBackgrounds()->AppendToTop(aIn.BlockBorderBackgrounds());
|
|
|
|
aOut.Floats()->AppendToTop(aIn.Floats());
|
|
|
|
aOut.Content()->AppendToTop(aIn.Content());
|
|
|
|
aOut.PositionedDescendants()->AppendToTop(aIn.PositionedDescendants());
|
|
|
|
aOut.Outlines()->AppendToTop(aIn.Outlines());
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsDisplayWrapper::WrapListsInPlace(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
if (WrapBorderBackground()) {
|
|
|
|
// Our border-backgrounds are in-flow
|
|
|
|
rv = WrapDisplayList(aBuilder, aFrame, aLists.BorderBackground(), this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
// Our block border-backgrounds are in-flow
|
|
|
|
rv = WrapDisplayList(aBuilder, aFrame, aLists.BlockBorderBackgrounds(), this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// The floats are not in flow
|
|
|
|
rv = WrapEachDisplayItem(aBuilder, aLists.Floats(), this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// Our child content is in flow
|
|
|
|
rv = WrapDisplayList(aBuilder, aFrame, aLists.Content(), this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// The positioned descendants may not be in-flow
|
|
|
|
rv = WrapEachDisplayItem(aBuilder, aLists.PositionedDescendants(), this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// The outlines may not be in-flow
|
|
|
|
return WrapEachDisplayItem(aBuilder, aLists.Outlines(), this);
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayOpacity::nsDisplayOpacity(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayList* aList)
|
|
|
|
: nsDisplayWrapList(aBuilder, aFrame, aList) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayOpacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplayOpacity::~nsDisplayOpacity() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayOpacity);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PRBool nsDisplayOpacity::IsOpaque(nsDisplayListBuilder* aBuilder) {
|
|
|
|
// We are never opaque, if our opacity was < 1 then we wouldn't have
|
|
|
|
// been created.
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-02-28 23:56:19 -08:00
|
|
|
// nsDisplayOpacity uses layers for rendering
|
|
|
|
already_AddRefed<Layer>
|
|
|
|
nsDisplayOpacity::BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager) {
|
2010-05-20 20:20:48 -07:00
|
|
|
nsRefPtr<Layer> layer = aBuilder->LayerBuilder()->
|
2010-07-15 14:07:51 -07:00
|
|
|
BuildContainerLayerFor(aBuilder, aManager, mFrame, this, mList);
|
2010-02-28 23:56:19 -08:00
|
|
|
if (!layer)
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-10 12:55:05 -08:00
|
|
|
layer->SetOpacity(mFrame->GetStyleDisplay()->mOpacity);
|
2010-02-28 23:56:19 -08:00
|
|
|
return layer.forget();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-15 14:08:05 -07:00
|
|
|
nsDisplayItem::LayerState
|
|
|
|
nsDisplayOpacity::GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager) {
|
2010-07-15 14:08:06 -07:00
|
|
|
if (mFrame->AreLayersMarkedActive())
|
|
|
|
return LAYER_ACTIVE;
|
2010-07-15 14:08:05 -07:00
|
|
|
nsIFrame* activeScrolledRoot =
|
2010-08-08 11:49:06 -07:00
|
|
|
nsLayoutUtils::GetActiveScrolledRootFor(mFrame, nsnull);
|
2010-07-15 14:08:05 -07:00
|
|
|
return !ChildrenCanBeInactive(aBuilder, aManager, mList, activeScrolledRoot)
|
|
|
|
? LAYER_ACTIVE : LAYER_INACTIVE;
|
|
|
|
}
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
PRBool nsDisplayOpacity::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Our children are translucent so we should not allow them to subtract
|
|
|
|
// area from aVisibleRegion. We do need to find out what is visible under
|
|
|
|
// our children in the temporary compositing buffer, because if our children
|
|
|
|
// paint our entire bounds opaquely then we don't need an alpha channel in
|
|
|
|
// the temporary compositing buffer.
|
2010-02-28 23:56:19 -08:00
|
|
|
nsRect bounds = GetBounds(aBuilder);
|
|
|
|
nsRegion visibleUnderChildren;
|
|
|
|
visibleUnderChildren.And(*aVisibleRegion, bounds);
|
|
|
|
return
|
2010-08-13 02:55:54 -07:00
|
|
|
nsDisplayWrapList::ComputeVisibility(aBuilder, &visibleUnderChildren);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplayOpacity::TryMerge(nsDisplayListBuilder* aBuilder, nsDisplayItem* aItem) {
|
|
|
|
if (aItem->GetType() != TYPE_OPACITY)
|
|
|
|
return PR_FALSE;
|
|
|
|
// items for the same content element should be merged into a single
|
|
|
|
// compositing group
|
|
|
|
// aItem->GetUnderlyingFrame() returns non-null because it's nsDisplayOpacity
|
|
|
|
if (aItem->GetUnderlyingFrame()->GetContent() != mFrame->GetContent())
|
|
|
|
return PR_FALSE;
|
2007-07-08 00:08:04 -07:00
|
|
|
mList.AppendToBottom(&static_cast<nsDisplayOpacity*>(aItem)->mList);
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayOwnLayer::nsDisplayOwnLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayList* aList)
|
|
|
|
: nsDisplayWrapList(aBuilder, aFrame, aList) {
|
2010-07-15 14:08:03 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayOwnLayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplayOwnLayer::~nsDisplayOwnLayer() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayOwnLayer);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsDisplayOpacity uses layers for rendering
|
|
|
|
already_AddRefed<Layer>
|
|
|
|
nsDisplayOwnLayer::BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager) {
|
|
|
|
nsRefPtr<Layer> layer = aBuilder->LayerBuilder()->
|
|
|
|
BuildContainerLayerFor(aBuilder, aManager, mFrame, this, mList);
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayClip::nsDisplayClip(nsDisplayListBuilder* aBuilder,
|
2010-09-09 08:21:46 -07:00
|
|
|
nsIFrame* aFrame, nsDisplayItem* aItem,
|
|
|
|
const nsRect& aRect)
|
2010-08-13 03:01:13 -07:00
|
|
|
: nsDisplayWrapList(aBuilder, aFrame, aItem),
|
2010-09-09 08:21:46 -07:00
|
|
|
mClip(aRect) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayClip);
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayClip::nsDisplayClip(nsDisplayListBuilder* aBuilder,
|
2010-09-09 08:21:46 -07:00
|
|
|
nsIFrame* aFrame, nsDisplayList* aList,
|
|
|
|
const nsRect& aRect)
|
2010-08-13 03:01:13 -07:00
|
|
|
: nsDisplayWrapList(aBuilder, aFrame, aList),
|
2010-09-09 08:21:46 -07:00
|
|
|
mClip(aRect) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayClip);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect nsDisplayClip::GetBounds(nsDisplayListBuilder* aBuilder) {
|
|
|
|
nsRect r = nsDisplayWrapList::GetBounds(aBuilder);
|
|
|
|
r.IntersectRect(mClip, r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplayClip::~nsDisplayClip() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayClip);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void nsDisplayClip::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx) {
|
2010-02-28 23:56:19 -08:00
|
|
|
NS_ERROR("nsDisplayClip should have been flattened away for painting");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
PRBool nsDisplayClip::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
2009-10-06 21:28:41 -07:00
|
|
|
nsRegion clipped;
|
|
|
|
clipped.And(*aVisibleRegion, mClip);
|
|
|
|
|
|
|
|
nsRegion finalClipped(clipped);
|
|
|
|
PRBool anyVisible =
|
2010-08-13 02:55:54 -07:00
|
|
|
nsDisplayWrapList::ComputeVisibility(aBuilder, &finalClipped);
|
2009-10-06 21:28:41 -07:00
|
|
|
|
|
|
|
nsRegion removed;
|
|
|
|
removed.Sub(clipped, finalClipped);
|
|
|
|
aBuilder->SubtractFromVisibleRegion(aVisibleRegion, removed);
|
2009-08-13 19:09:51 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return anyVisible;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplayClip::TryMerge(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsDisplayItem* aItem) {
|
|
|
|
if (aItem->GetType() != TYPE_CLIP)
|
|
|
|
return PR_FALSE;
|
2007-07-08 00:08:04 -07:00
|
|
|
nsDisplayClip* other = static_cast<nsDisplayClip*>(aItem);
|
2010-09-09 08:21:46 -07:00
|
|
|
if (other->mClip != mClip)
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_FALSE;
|
|
|
|
mList.AppendToBottom(&other->mList);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayWrapList* nsDisplayClip::WrapWithClone(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsDisplayItem* aItem) {
|
2008-04-18 02:21:21 -07:00
|
|
|
return new (aBuilder)
|
2010-09-09 08:21:46 -07:00
|
|
|
nsDisplayClip(aBuilder, aItem->GetUnderlyingFrame(), aItem, mClip);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-09-10 17:24:16 -07:00
|
|
|
|
2010-09-09 08:21:46 -07:00
|
|
|
nsDisplayClipRoundedRect::nsDisplayClipRoundedRect(
|
|
|
|
nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
|
|
|
nsDisplayItem* aItem,
|
|
|
|
const nsRect& aRect, nscoord aRadii[8])
|
|
|
|
: nsDisplayClip(aBuilder, aFrame, aItem, aRect)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayClipRoundedRect);
|
|
|
|
memcpy(mRadii, aRadii, sizeof(mRadii));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayClipRoundedRect::nsDisplayClipRoundedRect(
|
|
|
|
nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
|
|
|
nsDisplayList* aList,
|
|
|
|
const nsRect& aRect, nscoord aRadii[8])
|
|
|
|
: nsDisplayClip(aBuilder, aFrame, aList, aRect)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayClipRoundedRect);
|
|
|
|
memcpy(mRadii, aRadii, sizeof(mRadii));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplayClipRoundedRect::~nsDisplayClipRoundedRect()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayClipRoundedRect);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PRBool nsDisplayClipRoundedRect::IsOpaque(nsDisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayClipRoundedRect::HitTest(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aRect, HitTestState* aState,
|
|
|
|
nsTArray<nsIFrame*> *aOutFrames)
|
|
|
|
{
|
|
|
|
// FIXME: Consider border-radius.
|
|
|
|
mList.HitTest(aBuilder, aRect, aState, aOutFrames);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayWrapList*
|
|
|
|
nsDisplayClipRoundedRect::WrapWithClone(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsDisplayItem* aItem) {
|
|
|
|
return new (aBuilder)
|
|
|
|
nsDisplayClipRoundedRect(aBuilder, aItem->GetUnderlyingFrame(), aItem,
|
|
|
|
mClip, mRadii);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplayClipRoundedRect::ComputeVisibility(
|
|
|
|
nsDisplayListBuilder* aBuilder,
|
|
|
|
nsRegion* aVisibleRegion)
|
|
|
|
{
|
|
|
|
nsRegion clipped;
|
|
|
|
clipped.And(*aVisibleRegion, mClip);
|
|
|
|
|
|
|
|
return nsDisplayWrapList::ComputeVisibility(aBuilder, &clipped);
|
|
|
|
// FIXME: Remove a *conservative* opaque region from aVisibleRegion
|
|
|
|
// (like in nsDisplayClip::ComputeVisibility).
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplayClipRoundedRect::TryMerge(nsDisplayListBuilder* aBuilder, nsDisplayItem* aItem)
|
|
|
|
{
|
|
|
|
if (aItem->GetType() != TYPE_CLIP_ROUNDED_RECT)
|
|
|
|
return PR_FALSE;
|
|
|
|
nsDisplayClipRoundedRect* other =
|
|
|
|
static_cast<nsDisplayClipRoundedRect*>(aItem);
|
|
|
|
if (mClip != other->mClip || mRadii != other->mRadii)
|
|
|
|
return PR_FALSE;
|
|
|
|
mList.AppendToBottom(&other->mList);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayZoom::nsDisplayZoom(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayList* aList,
|
2010-07-18 19:23:48 -07:00
|
|
|
PRInt32 aAPD, PRInt32 aParentAPD)
|
2010-08-13 03:01:13 -07:00
|
|
|
: nsDisplayOwnLayer(aBuilder, aFrame, aList), mAPD(aAPD),
|
|
|
|
mParentAPD(aParentAPD) {
|
2010-07-18 19:23:48 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayZoom);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplayZoom::~nsDisplayZoom() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayZoom);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsRect nsDisplayZoom::GetBounds(nsDisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
nsRect bounds = nsDisplayWrapList::GetBounds(aBuilder);
|
|
|
|
return bounds.ConvertAppUnitsRoundOut(mAPD, mParentAPD);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayZoom::HitTest(nsDisplayListBuilder *aBuilder,
|
|
|
|
const nsRect& aRect,
|
|
|
|
HitTestState *aState,
|
|
|
|
nsTArray<nsIFrame*> *aOutFrames)
|
|
|
|
{
|
|
|
|
nsRect rect;
|
|
|
|
// A 1x1 rect indicates we are just hit testing a point, so pass down a 1x1
|
|
|
|
// rect as well instead of possibly rounding the width or height to zero.
|
|
|
|
if (aRect.width == 1 && aRect.height == 1) {
|
|
|
|
rect.MoveTo(aRect.TopLeft().ConvertAppUnits(mParentAPD, mAPD));
|
|
|
|
rect.width = rect.height = 1;
|
|
|
|
} else {
|
|
|
|
rect = aRect.ConvertAppUnitsRoundOut(mParentAPD, mAPD);
|
|
|
|
}
|
|
|
|
mList.HitTest(aBuilder, rect, aState, aOutFrames);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplayZoom::Paint(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx)
|
|
|
|
{
|
|
|
|
mList.PaintForFrame(aBuilder, aCtx, mFrame, nsDisplayList::PAINT_DEFAULT);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplayZoom::ComputeVisibility(nsDisplayListBuilder *aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion *aVisibleRegion)
|
2010-07-18 19:23:48 -07:00
|
|
|
{
|
|
|
|
// Convert the passed in visible region to our appunits.
|
|
|
|
nsRegion visibleRegion =
|
|
|
|
aVisibleRegion->ConvertAppUnitsRoundOut(mParentAPD, mAPD);
|
|
|
|
nsRegion originalVisibleRegion = visibleRegion;
|
|
|
|
|
2010-08-27 16:15:08 -07:00
|
|
|
nsRect transformedVisibleRect =
|
|
|
|
mVisibleRect.ConvertAppUnitsRoundOut(mParentAPD, mAPD);
|
2010-07-18 19:23:48 -07:00
|
|
|
PRBool retval =
|
2010-08-27 16:15:08 -07:00
|
|
|
mList.ComputeVisibilityForSublist(aBuilder, &visibleRegion,
|
|
|
|
transformedVisibleRect);
|
2010-07-18 19:23:48 -07:00
|
|
|
|
|
|
|
nsRegion removed;
|
|
|
|
// removed = originalVisibleRegion - visibleRegion
|
|
|
|
removed.Sub(originalVisibleRegion, visibleRegion);
|
|
|
|
// Convert removed region to parent appunits.
|
|
|
|
removed = removed.ConvertAppUnitsRoundIn(mAPD, mParentAPD);
|
|
|
|
// aVisibleRegion = aVisibleRegion - removed (modulo any simplifications
|
|
|
|
// SubtractFromVisibleRegion does)
|
|
|
|
aBuilder->SubtractFromVisibleRegion(aVisibleRegion, removed);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2008-09-13 02:42:11 -07:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// nsDisplayTransform Implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
// Write #define UNIFIED_CONTINUATIONS here to have the transform property try
|
|
|
|
// to transform content with continuations as one unified block instead of
|
|
|
|
// several smaller ones. This is currently disabled because it doesn't work
|
2009-07-27 01:47:02 -07:00
|
|
|
// correctly, since when the frames are initially being reflowed, their
|
2008-09-13 02:42:11 -07:00
|
|
|
// continuations all compute their bounding rects independently of each other
|
|
|
|
// and consequently get the wrong value. Write #define DEBUG_HIT here to have
|
|
|
|
// the nsDisplayTransform class dump out a bunch of information about hit
|
|
|
|
// detection.
|
|
|
|
#undef UNIFIED_CONTINUATIONS
|
|
|
|
#undef DEBUG_HIT
|
|
|
|
|
|
|
|
/* Returns the bounds of a frame as defined for transforms. If
|
|
|
|
* UNIFIED_CONTINUATIONS is not defined, this is simply the frame's bounding
|
|
|
|
* rectangle, translated to the origin. Otherwise, returns the smallest
|
|
|
|
* rectangle containing a frame and all of its continuations. For example, if
|
|
|
|
* there is a <span> element with several continuations split over several
|
|
|
|
* lines, this function will return the rectangle containing all of those
|
|
|
|
* continuations. This rectangle is relative to the origin of the frame's local
|
|
|
|
* coordinate space.
|
|
|
|
*/
|
|
|
|
#ifndef UNIFIED_CONTINUATIONS
|
|
|
|
|
|
|
|
nsRect
|
|
|
|
nsDisplayTransform::GetFrameBoundsForTransform(const nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Can't get the bounds of a nonexistent frame!");
|
|
|
|
return nsRect(nsPoint(0, 0), aFrame->GetSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
nsRect
|
|
|
|
nsDisplayTransform::GetFrameBoundsForTransform(const nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Can't get the bounds of a nonexistent frame!");
|
|
|
|
|
|
|
|
nsRect result;
|
|
|
|
|
|
|
|
/* Iterate through the continuation list, unioning together all the
|
|
|
|
* bounding rects.
|
|
|
|
*/
|
|
|
|
for (const nsIFrame *currFrame = aFrame->GetFirstContinuation();
|
|
|
|
currFrame != nsnull;
|
|
|
|
currFrame = currFrame->GetNextContinuation())
|
|
|
|
{
|
|
|
|
/* Get the frame rect in local coordinates, then translate back to the
|
|
|
|
* original coordinates.
|
|
|
|
*/
|
|
|
|
result.UnionRect(result, nsRect(currFrame->GetOffsetTo(aFrame),
|
|
|
|
currFrame->GetSize()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-06-05 13:29:49 -07:00
|
|
|
/* Returns the delta specified by the -moz-transform-origin property.
|
2008-09-13 02:42:11 -07:00
|
|
|
* This is a positive delta, meaning that it indicates the direction to move
|
|
|
|
* to get from (0, 0) of the frame to the transform origin.
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
gfxPoint GetDeltaToMozTransformOrigin(const nsIFrame* aFrame,
|
|
|
|
float aFactor,
|
|
|
|
const nsRect* aBoundsOverride)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Can't get delta for a null frame!");
|
|
|
|
NS_PRECONDITION(aFrame->GetStyleDisplay()->HasTransform(),
|
|
|
|
"Can't get a delta for an untransformed frame!");
|
|
|
|
|
|
|
|
/* For both of the coordinates, if the value of -moz-transform is a
|
|
|
|
* percentage, it's relative to the size of the frame. Otherwise, if it's
|
|
|
|
* a distance, it's already computed for us!
|
|
|
|
*/
|
|
|
|
const nsStyleDisplay* display = aFrame->GetStyleDisplay();
|
|
|
|
nsRect boundingRect = (aBoundsOverride ? *aBoundsOverride :
|
|
|
|
nsDisplayTransform::GetFrameBoundsForTransform(aFrame));
|
|
|
|
|
|
|
|
/* Allows us to access named variables by index. */
|
|
|
|
gfxPoint result;
|
|
|
|
gfxFloat* coords[2] = {&result.x, &result.y};
|
|
|
|
const nscoord* dimensions[2] =
|
|
|
|
{&boundingRect.width, &boundingRect.height};
|
|
|
|
|
|
|
|
for (PRUint8 index = 0; index < 2; ++index) {
|
|
|
|
/* If the -moz-transform-origin specifies a percentage, take the percentage
|
|
|
|
* of the size of the box.
|
|
|
|
*/
|
|
|
|
if (display->mTransformOrigin[index].GetUnit() == eStyleUnit_Percent)
|
|
|
|
*coords[index] = NSAppUnitsToFloatPixels(*dimensions[index], aFactor) *
|
|
|
|
display->mTransformOrigin[index].GetPercentValue();
|
|
|
|
|
|
|
|
/* Otherwise, it's a length. */
|
|
|
|
else
|
|
|
|
*coords[index] =
|
|
|
|
NSAppUnitsToFloatPixels(display->
|
|
|
|
mTransformOrigin[index].GetCoordValue(),
|
|
|
|
aFactor);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Adjust based on the origin of the rectangle. */
|
|
|
|
result.x += NSAppUnitsToFloatPixels(boundingRect.x, aFactor);
|
|
|
|
result.y += NSAppUnitsToFloatPixels(boundingRect.y, aFactor);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wraps up the -moz-transform matrix in a change-of-basis matrix pair that
|
|
|
|
* translates from local coordinate space to transform coordinate space, then
|
|
|
|
* hands it back.
|
|
|
|
*/
|
|
|
|
gfxMatrix
|
|
|
|
nsDisplayTransform::GetResultingTransformMatrix(const nsIFrame* aFrame,
|
|
|
|
const nsPoint &aOrigin,
|
|
|
|
float aFactor,
|
|
|
|
const nsRect* aBoundsOverride)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Cannot get transform matrix for a null frame!");
|
|
|
|
NS_PRECONDITION(aFrame->GetStyleDisplay()->HasTransform(),
|
|
|
|
"Cannot get transform matrix if frame isn't transformed!");
|
|
|
|
|
|
|
|
/* Account for the -moz-transform-origin property by translating the
|
|
|
|
* coordinate space to the new origin.
|
|
|
|
*/
|
|
|
|
gfxPoint toMozOrigin = GetDeltaToMozTransformOrigin(aFrame, aFactor, aBoundsOverride);
|
|
|
|
gfxPoint newOrigin = gfxPoint(NSAppUnitsToFloatPixels(aOrigin.x, aFactor),
|
|
|
|
NSAppUnitsToFloatPixels(aOrigin.y, aFactor));
|
|
|
|
|
|
|
|
/* Get the underlying transform matrix. This requires us to get the
|
|
|
|
* bounds of the frame.
|
|
|
|
*/
|
|
|
|
const nsStyleDisplay* disp = aFrame->GetStyleDisplay();
|
|
|
|
nsRect bounds = (aBoundsOverride ? *aBoundsOverride :
|
|
|
|
nsDisplayTransform::GetFrameBoundsForTransform(aFrame));
|
|
|
|
|
|
|
|
/* Get the matrix, then change its basis to factor in the origin. */
|
|
|
|
return nsLayoutUtils::ChangeMatrixBasis
|
|
|
|
(newOrigin + toMozOrigin, disp->mTransform.GetThebesMatrix(bounds, aFactor));
|
|
|
|
}
|
|
|
|
|
2010-08-01 20:07:04 -07:00
|
|
|
already_AddRefed<Layer> nsDisplayTransform::BuildLayer(nsDisplayListBuilder *aBuilder,
|
|
|
|
LayerManager *aManager)
|
2008-09-13 02:42:11 -07:00
|
|
|
{
|
2008-09-22 13:27:37 -07:00
|
|
|
gfxMatrix newTransformMatrix =
|
2010-08-13 03:01:58 -07:00
|
|
|
GetResultingTransformMatrix(mFrame, ToReferenceFrame(),
|
2008-09-22 13:27:37 -07:00
|
|
|
mFrame->PresContext()->AppUnitsPerDevPixel(),
|
|
|
|
nsnull);
|
|
|
|
if (newTransformMatrix.IsSingular())
|
2010-08-01 20:07:04 -07:00
|
|
|
return nsnull;
|
2008-09-13 02:42:11 -07:00
|
|
|
|
2010-08-01 20:07:04 -07:00
|
|
|
nsRefPtr<Layer> layer = aBuilder->LayerBuilder()->
|
|
|
|
BuildContainerLayerFor(aBuilder, aManager, mFrame, this, *mStoredList.GetList());
|
|
|
|
if (!layer)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
layer->SetTransform(gfx3DMatrix::From2D(newTransformMatrix));
|
|
|
|
return layer.forget();
|
|
|
|
}
|
2008-09-13 02:42:11 -07:00
|
|
|
|
2010-08-01 20:07:04 -07:00
|
|
|
nsDisplayItem::LayerState
|
|
|
|
nsDisplayTransform::GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager) {
|
|
|
|
if (mFrame->AreLayersMarkedActive())
|
|
|
|
return LAYER_ACTIVE;
|
|
|
|
nsIFrame* activeScrolledRoot =
|
2010-08-08 11:49:06 -07:00
|
|
|
nsLayoutUtils::GetActiveScrolledRootFor(mFrame, nsnull);
|
2010-08-01 20:07:04 -07:00
|
|
|
return !mStoredList.ChildrenCanBeInactive(aBuilder,
|
|
|
|
aManager,
|
|
|
|
*mStoredList.GetList(),
|
|
|
|
activeScrolledRoot)
|
|
|
|
? LAYER_ACTIVE : LAYER_INACTIVE;
|
2008-09-13 02:42:11 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
PRBool nsDisplayTransform::ComputeVisibility(nsDisplayListBuilder *aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion *aVisibleRegion)
|
2008-09-13 02:42:11 -07:00
|
|
|
{
|
2009-09-06 17:35:14 -07:00
|
|
|
/* As we do this, we need to be sure to
|
|
|
|
* untransform the visible rect, since we want everything that's painting to
|
|
|
|
* think that it's painting in its original rectangular coordinate space. */
|
|
|
|
nsRegion untransformedVisible =
|
2010-08-13 03:01:58 -07:00
|
|
|
UntransformRect(mVisibleRect, mFrame, ToReferenceFrame());
|
2010-08-27 16:15:08 -07:00
|
|
|
// Call RecomputeVisiblity instead of ComputeVisibilty since
|
|
|
|
// nsDisplayItem::ComputeVisibility should only be called from
|
|
|
|
// nsDisplayList::ComputeVisibility (which sets mVisibleRect on the item)
|
|
|
|
mStoredList.RecomputeVisibility(aBuilder, &untransformedVisible);
|
2008-09-13 02:42:11 -07:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_HIT
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* HitTest does some fun stuff with matrix transforms to obtain the answer. */
|
2010-04-07 17:31:26 -07:00
|
|
|
void nsDisplayTransform::HitTest(nsDisplayListBuilder *aBuilder,
|
|
|
|
const nsRect& aRect,
|
|
|
|
HitTestState *aState,
|
|
|
|
nsTArray<nsIFrame*> *aOutFrames)
|
2008-09-13 02:42:11 -07:00
|
|
|
{
|
|
|
|
/* Here's how this works:
|
|
|
|
* 1. Get the matrix. If it's singular, abort (clearly we didn't hit
|
|
|
|
* anything).
|
|
|
|
* 2. Invert the matrix.
|
2010-04-07 17:31:26 -07:00
|
|
|
* 3. Use it to transform the rect into the correct space.
|
|
|
|
* 4. Pass that rect down through to the list's version of HitTest.
|
2008-09-13 02:42:11 -07:00
|
|
|
*/
|
|
|
|
float factor = nsPresContext::AppUnitsPerCSSPixel();
|
|
|
|
gfxMatrix matrix =
|
2010-08-13 03:01:58 -07:00
|
|
|
GetResultingTransformMatrix(mFrame, ToReferenceFrame(),
|
2008-09-13 02:42:11 -07:00
|
|
|
factor, nsnull);
|
|
|
|
if (matrix.IsSingular())
|
2010-04-07 17:31:26 -07:00
|
|
|
return;
|
2008-09-13 02:42:11 -07:00
|
|
|
|
|
|
|
/* We want to go from transformed-space to regular space.
|
|
|
|
* Thus we have to invert the matrix, which normally does
|
|
|
|
* the reverse operation (e.g. regular->transformed)
|
|
|
|
*/
|
|
|
|
matrix.Invert();
|
|
|
|
|
|
|
|
/* Now, apply the transform and pass it down the channel. */
|
2010-04-07 17:31:26 -07:00
|
|
|
nsRect resultingRect;
|
|
|
|
if (aRect.width == 1 && aRect.height == 1) {
|
|
|
|
gfxPoint point = matrix.Transform(gfxPoint(NSAppUnitsToFloatPixels(aRect.x, factor),
|
|
|
|
NSAppUnitsToFloatPixels(aRect.y, factor)));
|
|
|
|
|
|
|
|
resultingRect = nsRect(NSFloatPixelsToAppUnits(float(point.x), factor),
|
|
|
|
NSFloatPixelsToAppUnits(float(point.y), factor),
|
|
|
|
1, 1);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
gfxRect originalRect(NSAppUnitsToFloatPixels(aRect.x, factor),
|
|
|
|
NSAppUnitsToFloatPixels(aRect.y, factor),
|
|
|
|
NSAppUnitsToFloatPixels(aRect.width, factor),
|
|
|
|
NSAppUnitsToFloatPixels(aRect.height, factor));
|
|
|
|
|
|
|
|
gfxRect rect = matrix.TransformBounds(originalRect);
|
|
|
|
|
|
|
|
resultingRect = nsRect(NSFloatPixelsToAppUnits(float(rect.X()), factor),
|
|
|
|
NSFloatPixelsToAppUnits(float(rect.Y()), factor),
|
|
|
|
NSFloatPixelsToAppUnits(float(rect.Width()), factor),
|
|
|
|
NSFloatPixelsToAppUnits(float(rect.Height()), factor));
|
|
|
|
}
|
|
|
|
|
2008-09-13 02:42:11 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG_HIT
|
|
|
|
printf("Frame: %p\n", dynamic_cast<void *>(mFrame));
|
2010-04-07 17:31:26 -07:00
|
|
|
printf(" Untransformed point: (%f, %f)\n", resultingRect.X(), resultingRect.Y());
|
|
|
|
PRUint32 originalFrameCount = aOutFrames.Length();
|
2008-09-13 02:42:11 -07:00
|
|
|
#endif
|
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
mStoredList.HitTest(aBuilder, resultingRect, aState, aOutFrames);
|
|
|
|
|
2008-09-13 02:42:11 -07:00
|
|
|
#ifdef DEBUG_HIT
|
2010-04-07 17:31:26 -07:00
|
|
|
if (originalFrameCount != aOutFrames.Length())
|
|
|
|
printf(" Hit! Time: %f, first frame: %p\n", static_cast<double>(clock()),
|
|
|
|
dynamic_cast<void *>(aOutFrames.ElementAt(0)));
|
2008-09-13 02:42:11 -07:00
|
|
|
printf("=== end of hit test ===\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The bounding rectangle for the object is the overflow rectangle translated
|
|
|
|
* by the reference point.
|
|
|
|
*/
|
|
|
|
nsRect nsDisplayTransform::GetBounds(nsDisplayListBuilder *aBuilder)
|
|
|
|
{
|
2010-08-13 03:01:58 -07:00
|
|
|
return mFrame->GetOverflowRect() + ToReferenceFrame();
|
2008-09-13 02:42:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The transform is opaque iff the transform consists solely of scales and
|
|
|
|
* transforms and if the underlying content is opaque. Thus if the transform
|
|
|
|
* is of the form
|
|
|
|
*
|
|
|
|
* |a c e|
|
|
|
|
* |b d f|
|
|
|
|
* |0 0 1|
|
|
|
|
*
|
|
|
|
* We need b and c to be zero.
|
|
|
|
*/
|
|
|
|
PRBool nsDisplayTransform::IsOpaque(nsDisplayListBuilder *aBuilder)
|
|
|
|
{
|
|
|
|
const nsStyleDisplay* disp = mFrame->GetStyleDisplay();
|
|
|
|
return disp->mTransform.GetMainMatrixEntry(1) == 0.0f &&
|
|
|
|
disp->mTransform.GetMainMatrixEntry(2) == 0.0f &&
|
|
|
|
mStoredList.IsOpaque(aBuilder);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The transform is uniform if it fills the entire bounding rect and the
|
|
|
|
* wrapped list is uniform. See IsOpaque for discussion of why this
|
|
|
|
* works.
|
|
|
|
*/
|
2010-05-12 17:56:11 -07:00
|
|
|
PRBool nsDisplayTransform::IsUniform(nsDisplayListBuilder *aBuilder, nscolor* aColor)
|
2008-09-13 02:42:11 -07:00
|
|
|
{
|
|
|
|
const nsStyleDisplay* disp = mFrame->GetStyleDisplay();
|
|
|
|
return disp->mTransform.GetMainMatrixEntry(1) == 0.0f &&
|
|
|
|
disp->mTransform.GetMainMatrixEntry(2) == 0.0f &&
|
2010-05-12 17:56:11 -07:00
|
|
|
mStoredList.IsUniform(aBuilder, aColor);
|
2008-09-13 02:42:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If UNIFIED_CONTINUATIONS is defined, we can merge two display lists that
|
|
|
|
* share the same underlying content. Otherwise, doing so results in graphical
|
|
|
|
* glitches.
|
|
|
|
*/
|
|
|
|
#ifndef UNIFIED_CONTINUATIONS
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDisplayTransform::TryMerge(nsDisplayListBuilder *aBuilder,
|
|
|
|
nsDisplayItem *aItem)
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsDisplayTransform::TryMerge(nsDisplayListBuilder *aBuilder,
|
|
|
|
nsDisplayItem *aItem)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aItem, "Why did you try merging with a null item?");
|
|
|
|
NS_PRECONDITION(aBuilder, "Why did you try merging with a null builder?");
|
|
|
|
|
|
|
|
/* Make sure that we're dealing with two transforms. */
|
|
|
|
if (aItem->GetType() != TYPE_TRANSFORM)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
/* Check to see that both frames are part of the same content. */
|
|
|
|
if (aItem->GetUnderlyingFrame()->GetContent() != mFrame->GetContent())
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
/* Now, move everything over to this frame and signal that
|
|
|
|
* we merged things!
|
|
|
|
*/
|
|
|
|
mStoredList.GetList()->
|
|
|
|
AppendToBottom(&static_cast<nsDisplayTransform *>(aItem)->mStoredList);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TransformRect takes in as parameters a rectangle (in app space) and returns
|
|
|
|
* the smallest rectangle (in app space) containing the transformed image of
|
|
|
|
* that rectangle. That is, it takes the four corners of the rectangle,
|
|
|
|
* transforms them according to the matrix associated with the specified frame,
|
|
|
|
* then returns the smallest rectangle containing the four transformed points.
|
|
|
|
*
|
|
|
|
* @param aUntransformedBounds The rectangle (in app units) to transform.
|
|
|
|
* @param aFrame The frame whose transformation should be applied.
|
|
|
|
* @param aOrigin The delta from the frame origin to the coordinate space origin
|
|
|
|
* @param aBoundsOverride (optional) Force the frame bounds to be the
|
|
|
|
* specified bounds.
|
|
|
|
* @return The smallest rectangle containing the image of the transformed
|
|
|
|
* rectangle.
|
|
|
|
*/
|
|
|
|
nsRect nsDisplayTransform::TransformRect(const nsRect &aUntransformedBounds,
|
|
|
|
const nsIFrame* aFrame,
|
|
|
|
const nsPoint &aOrigin,
|
|
|
|
const nsRect* aBoundsOverride)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Can't take the transform based on a null frame!");
|
|
|
|
NS_PRECONDITION(aFrame->GetStyleDisplay()->HasTransform(),
|
|
|
|
"Cannot transform a rectangle if there's no transformation!");
|
|
|
|
|
|
|
|
float factor = nsPresContext::AppUnitsPerCSSPixel();
|
|
|
|
return nsLayoutUtils::MatrixTransformRect
|
|
|
|
(aUntransformedBounds,
|
|
|
|
GetResultingTransformMatrix(aFrame, aOrigin, factor, aBoundsOverride),
|
|
|
|
factor);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect nsDisplayTransform::UntransformRect(const nsRect &aUntransformedBounds,
|
|
|
|
const nsIFrame* aFrame,
|
|
|
|
const nsPoint &aOrigin)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "Can't take the transform based on a null frame!");
|
|
|
|
NS_PRECONDITION(aFrame->GetStyleDisplay()->HasTransform(),
|
|
|
|
"Cannot transform a rectangle if there's no transformation!");
|
|
|
|
|
|
|
|
|
|
|
|
/* Grab the matrix. If the transform is degenerate, just hand back the
|
|
|
|
* empty rect.
|
|
|
|
*/
|
|
|
|
float factor = nsPresContext::AppUnitsPerCSSPixel();
|
|
|
|
gfxMatrix matrix = GetResultingTransformMatrix(aFrame, aOrigin, factor, nsnull);
|
|
|
|
if (matrix.IsSingular())
|
|
|
|
return nsRect();
|
|
|
|
|
|
|
|
/* We want to untransform the matrix, so invert the transformation first! */
|
|
|
|
matrix.Invert();
|
|
|
|
|
|
|
|
return nsLayoutUtils::MatrixTransformRect(aUntransformedBounds, matrix,
|
|
|
|
factor);
|
|
|
|
}
|
|
|
|
|
2008-09-10 17:24:16 -07:00
|
|
|
#ifdef MOZ_SVG
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplaySVGEffects::nsDisplaySVGEffects(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, nsDisplayList* aList)
|
|
|
|
: nsDisplayWrapList(aBuilder, aFrame, aList), mEffectsFrame(aFrame),
|
2008-09-15 18:51:52 -07:00
|
|
|
mBounds(aFrame->GetOverflowRectRelativeToSelf())
|
2008-09-10 17:24:16 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplaySVGEffects);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsDisplaySVGEffects::~nsDisplaySVGEffects()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsDisplaySVGEffects);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PRBool nsDisplaySVGEffects::IsOpaque(nsDisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
void
|
|
|
|
nsDisplaySVGEffects::HitTest(nsDisplayListBuilder* aBuilder, const nsRect& aRect,
|
|
|
|
HitTestState* aState, nsTArray<nsIFrame*> *aOutFrames)
|
2008-09-10 17:24:16 -07:00
|
|
|
{
|
2010-04-07 17:31:26 -07:00
|
|
|
nsPoint rectCenter(aRect.x + aRect.width / 2, aRect.y + aRect.height / 2);
|
|
|
|
if (nsSVGIntegrationUtils::HitTestFrameForEffects(mEffectsFrame,
|
|
|
|
rectCenter - aBuilder->ToReferenceFrame(mEffectsFrame))) {
|
|
|
|
mList.HitTest(aBuilder, aRect, aState, aOutFrames);
|
|
|
|
}
|
2008-09-10 17:24:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsDisplaySVGEffects::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx)
|
2008-09-10 17:24:16 -07:00
|
|
|
{
|
|
|
|
nsSVGIntegrationUtils::PaintFramesWithEffects(aCtx,
|
2009-09-06 17:35:14 -07:00
|
|
|
mEffectsFrame, mVisibleRect, aBuilder, &mList);
|
2008-09-10 17:24:16 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
PRBool nsDisplaySVGEffects::ComputeVisibility(nsDisplayListBuilder* aBuilder,
|
2010-08-13 02:55:54 -07:00
|
|
|
nsRegion* aVisibleRegion) {
|
2009-10-06 21:28:41 -07:00
|
|
|
nsPoint offset = aBuilder->ToReferenceFrame(mEffectsFrame);
|
|
|
|
nsRect dirtyRect =
|
|
|
|
nsSVGIntegrationUtils::GetRequiredSourceForInvalidArea(mEffectsFrame,
|
|
|
|
mVisibleRect - offset) +
|
|
|
|
offset;
|
|
|
|
|
|
|
|
// Our children may be made translucent or arbitrarily deformed so we should
|
|
|
|
// not allow them to subtract area from aVisibleRegion.
|
|
|
|
nsRegion childrenVisible(dirtyRect);
|
2010-08-27 16:15:08 -07:00
|
|
|
nsRect r;
|
|
|
|
r.IntersectRect(dirtyRect, mList.GetBounds(aBuilder));
|
|
|
|
mList.ComputeVisibilityForSublist(aBuilder, &childrenVisible, r);
|
2009-09-06 17:35:14 -07:00
|
|
|
return PR_TRUE;
|
2008-09-10 17:24:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool nsDisplaySVGEffects::TryMerge(nsDisplayListBuilder* aBuilder, nsDisplayItem* aItem)
|
|
|
|
{
|
|
|
|
if (aItem->GetType() != TYPE_SVG_EFFECTS)
|
|
|
|
return PR_FALSE;
|
|
|
|
// items for the same content element should be merged into a single
|
|
|
|
// compositing group
|
|
|
|
// aItem->GetUnderlyingFrame() returns non-null because it's nsDisplaySVGEffects
|
|
|
|
if (aItem->GetUnderlyingFrame()->GetContent() != mFrame->GetContent())
|
|
|
|
return PR_FALSE;
|
|
|
|
nsDisplaySVGEffects* other = static_cast<nsDisplaySVGEffects*>(aItem);
|
|
|
|
mList.AppendToBottom(&other->mList);
|
|
|
|
mBounds.UnionRect(mBounds,
|
|
|
|
other->mBounds + other->mEffectsFrame->GetOffsetTo(mEffectsFrame));
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|