mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
37ae3ee79e
--HG-- extra : rebase_source : f4b44bad8537029b0e03d912b927686aa352d681
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
/*-*- 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"
|
|
#include "nsIFrame.h"
|
|
|
|
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)
|
|
{
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
|
mBorderRect.MoveBy(aOffset);
|
|
}
|
|
|
|
nsDisplayItemBoundsGeometry::nsDisplayItemBoundsGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
{
|
|
nscoord radii[8];
|
|
mHasRoundedCorners = aItem->Frame()->GetBorderRadii(radii);
|
|
}
|
|
|
|
nsDisplayBorderGeometry::nsDisplayBorderGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
, mContentRect(aItem->GetContentRect())
|
|
{}
|
|
|
|
void
|
|
nsDisplayBorderGeometry::MoveBy(const nsPoint& aOffset)
|
|
{
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
|
mContentRect.MoveBy(aOffset);
|
|
}
|
|
|
|
nsDisplayBackgroundGeometry::nsDisplayBackgroundGeometry(nsDisplayBackgroundImage* aItem,
|
|
nsDisplayListBuilder* aBuilder)
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
, mPositioningArea(aItem->GetPositioningArea())
|
|
{}
|
|
|
|
void
|
|
nsDisplayBackgroundGeometry::MoveBy(const nsPoint& aOffset)
|
|
{
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
|
mPositioningArea.MoveBy(aOffset);
|
|
}
|
|
|
|
nsDisplayThemedBackgroundGeometry::nsDisplayThemedBackgroundGeometry(nsDisplayThemedBackground* aItem,
|
|
nsDisplayListBuilder* aBuilder)
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
, mPositioningArea(aItem->GetPositioningArea())
|
|
, mWindowIsActive(aItem->IsWindowActive())
|
|
{}
|
|
|
|
void
|
|
nsDisplayThemedBackgroundGeometry::MoveBy(const nsPoint& aOffset)
|
|
{
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
|
mPositioningArea.MoveBy(aOffset);
|
|
}
|
|
|
|
nsDisplayBoxShadowInnerGeometry::nsDisplayBoxShadowInnerGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder)
|
|
: nsDisplayItemGeometry(aItem, aBuilder)
|
|
, mPaddingRect(aItem->GetPaddingRect())
|
|
{}
|
|
|
|
void
|
|
nsDisplayBoxShadowInnerGeometry::MoveBy(const nsPoint& aOffset)
|
|
{
|
|
nsDisplayItemGeometry::MoveBy(aOffset);
|
|
mPaddingRect.MoveBy(aOffset);
|
|
}
|
|
|
|
nsDisplayBoxShadowOuterGeometry::nsDisplayBoxShadowOuterGeometry(nsDisplayItem* aItem,
|
|
nsDisplayListBuilder* aBuilder, float aOpacity)
|
|
: nsDisplayItemGenericGeometry(aItem, aBuilder)
|
|
, mOpacity(aOpacity)
|
|
{}
|