2012-08-29 09:39:01 +04:00
|
|
|
/*-*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#include "nsDisplayListInvalidation.h"
|
|
|
|
#include "nsDisplayList.h"
|
2014-04-17 17:55:12 +04:00
|
|
|
#include "nsIFrame.h"
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
nsDisplayItemGeometry::nsDisplayItemGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayItemGeometry);
|
|
|
|
bool snap;
|
|
|
|
mBounds = aItem->GetBounds(aBuilder, &snap);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayItemGeometry::~nsDisplayItemGeometry()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayItemGeometry);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDisplayItemGenericGeometry::nsDisplayItemGenericGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
|
|
, mBorderRect(aItem->GetBorderRect())
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayItemGenericGeometry::MoveBy(const nsPoint& aOffset)
|
|
|
|
{
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
2012-08-29 09:39:01 +04:00
|
|
|
mBorderRect.MoveBy(aOffset);
|
|
|
|
}
|
|
|
|
|
2013-03-08 06:15:10 +04:00
|
|
|
nsDisplayItemBoundsGeometry::nsDisplayItemBoundsGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
|
|
{
|
|
|
|
nscoord radii[8];
|
2013-04-19 16:02:13 +04:00
|
|
|
mHasRoundedCorners = aItem->Frame()->GetBorderRadii(radii);
|
2013-03-08 06:15:10 +04:00
|
|
|
}
|
|
|
|
|
2012-08-29 09:39:01 +04:00
|
|
|
nsDisplayBorderGeometry::nsDisplayBorderGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
|
|
, mContentRect(aItem->GetContentRect())
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayBorderGeometry::MoveBy(const nsPoint& aOffset)
|
|
|
|
{
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
2012-08-29 09:39:01 +04:00
|
|
|
mContentRect.MoveBy(aOffset);
|
|
|
|
}
|
|
|
|
|
2012-11-10 03:14:59 +04:00
|
|
|
nsDisplayBackgroundGeometry::nsDisplayBackgroundGeometry(nsDisplayBackgroundImage* aItem,
|
2012-11-08 19:05:32 +04:00
|
|
|
nsDisplayListBuilder* aBuilder)
|
2012-08-29 09:39:01 +04:00
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
2012-11-08 19:05:32 +04:00
|
|
|
, mPositioningArea(aItem->GetPositioningArea())
|
2012-08-29 09:39:01 +04:00
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayBackgroundGeometry::MoveBy(const nsPoint& aOffset)
|
|
|
|
{
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
2012-11-08 19:05:32 +04:00
|
|
|
mPositioningArea.MoveBy(aOffset);
|
2012-08-29 09:39:01 +04:00
|
|
|
}
|
|
|
|
|
2013-07-18 10:34:58 +04:00
|
|
|
nsDisplayThemedBackgroundGeometry::nsDisplayThemedBackgroundGeometry(nsDisplayThemedBackground* aItem,
|
|
|
|
nsDisplayListBuilder* aBuilder)
|
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
|
|
, mPositioningArea(aItem->GetPositioningArea())
|
2013-09-27 19:24:32 +04:00
|
|
|
, mWindowIsActive(aItem->IsWindowActive())
|
2013-07-18 10:34:58 +04:00
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayThemedBackgroundGeometry::MoveBy(const nsPoint& aOffset)
|
|
|
|
{
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
2013-07-18 10:34:58 +04:00
|
|
|
mPositioningArea.MoveBy(aOffset);
|
|
|
|
}
|
|
|
|
|
2012-08-29 09:39:01 +04:00
|
|
|
nsDisplayBoxShadowInnerGeometry::nsDisplayBoxShadowInnerGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
|
|
, mPaddingRect(aItem->GetPaddingRect())
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayBoxShadowInnerGeometry::MoveBy(const nsPoint& aOffset)
|
|
|
|
{
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
2012-08-29 09:39:01 +04:00
|
|
|
mPaddingRect.MoveBy(aOffset);
|
|
|
|
}
|
|
|
|
|
2014-07-21 17:59:10 +04:00
|
|
|
nsDisplayBoxShadowOuterGeometry::nsDisplayBoxShadowOuterGeometry(nsDisplayItem* aItem,
|
|
|
|
nsDisplayListBuilder* aBuilder, float aOpacity)
|
|
|
|
: nsDisplayItemGenericGeometry(aItem, aBuilder)
|
|
|
|
, mOpacity(aOpacity)
|
|
|
|
{}
|