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/. */
|
|
|
|
|
|
|
|
#ifndef NSDISPLAYLISTINVALIDATION_H_
|
|
|
|
#define NSDISPLAYLISTINVALIDATION_H_
|
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-29 09:39:01 +04:00
|
|
|
#include "nsRect.h"
|
2013-12-01 02:20:41 +04:00
|
|
|
#include "nsColor.h"
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
class nsDisplayItem;
|
|
|
|
class nsDisplayListBuilder;
|
2012-11-10 03:14:59 +04:00
|
|
|
class nsDisplayBackgroundImage;
|
2013-07-18 10:34:58 +04:00
|
|
|
class nsDisplayThemedBackground;
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This stores the geometry of an nsDisplayItem, and the area
|
|
|
|
* that will be affected when painting the item.
|
|
|
|
*
|
|
|
|
* It is used to retain information about display items so they
|
|
|
|
* can be compared against new display items in the next paint.
|
|
|
|
*/
|
|
|
|
class nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayItemGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
virtual ~nsDisplayItemGeometry();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute the area required to be invalidated if this
|
|
|
|
* display item is removed.
|
|
|
|
*/
|
2012-08-29 09:48:44 +04:00
|
|
|
const nsRect& ComputeInvalidationRegion() { return mBounds; }
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shifts all retained areas of the nsDisplayItemGeometry by the given offset.
|
|
|
|
*
|
|
|
|
* This is used to compensate for scrolling, since the destination buffer
|
|
|
|
* can scroll without requiring a full repaint.
|
|
|
|
*
|
|
|
|
* @param aOffset Offset to shift by.
|
|
|
|
*/
|
|
|
|
virtual void MoveBy(const nsPoint& aOffset) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bounds of the display item
|
|
|
|
*/
|
|
|
|
nsRect mBounds;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A default geometry implementation, used by nsDisplayItem. Retains
|
|
|
|
* and compares the bounds, and border rect.
|
|
|
|
*
|
|
|
|
* This should be sufficient for the majority of display items.
|
|
|
|
*/
|
|
|
|
class nsDisplayItemGenericGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayItemGenericGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
nsRect mBorderRect;
|
|
|
|
};
|
|
|
|
|
2013-03-08 06:15:10 +04:00
|
|
|
class nsDisplayItemBoundsGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayItemBoundsGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
2013-03-08 06:15:10 +04:00
|
|
|
|
|
|
|
bool mHasRoundedCorners;
|
|
|
|
};
|
|
|
|
|
2012-08-29 09:39:01 +04:00
|
|
|
class nsDisplayBorderGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayBorderGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
nsRect mContentRect;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsDisplayBackgroundGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
2012-11-10 03:14:59 +04:00
|
|
|
nsDisplayBackgroundGeometry(nsDisplayBackgroundImage* aItem, nsDisplayListBuilder* aBuilder);
|
2012-08-29 09:39:01 +04:00
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
2012-08-29 09:39:01 +04:00
|
|
|
|
2012-11-08 19:05:32 +04:00
|
|
|
nsRect mPositioningArea;
|
2012-08-29 09:39:01 +04:00
|
|
|
};
|
|
|
|
|
2013-07-18 10:34:58 +04:00
|
|
|
class nsDisplayThemedBackgroundGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayThemedBackgroundGeometry(nsDisplayThemedBackground* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
|
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
nsRect mPositioningArea;
|
2013-09-27 19:24:32 +04:00
|
|
|
bool mWindowIsActive;
|
2013-07-18 10:34:58 +04:00
|
|
|
};
|
|
|
|
|
2012-08-29 09:39:01 +04:00
|
|
|
class nsDisplayBoxShadowInnerGeometry : public nsDisplayItemGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplayBoxShadowInnerGeometry(nsDisplayItem* aItem, nsDisplayListBuilder* aBuilder);
|
|
|
|
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual void MoveBy(const nsPoint& aOffset) MOZ_OVERRIDE;
|
2012-08-29 09:39:01 +04:00
|
|
|
|
|
|
|
nsRect mPaddingRect;
|
|
|
|
};
|
|
|
|
|
2013-11-25 05:59:00 +04:00
|
|
|
class nsDisplaySolidColorGeometry : public nsDisplayItemBoundsGeometry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDisplaySolidColorGeometry(nsDisplayItem* aItem,
|
|
|
|
nsDisplayListBuilder* aBuilder,
|
|
|
|
nscolor aColor)
|
|
|
|
: nsDisplayItemBoundsGeometry(aItem, aBuilder)
|
|
|
|
, mColor(aColor)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
nscolor mColor;
|
|
|
|
};
|
|
|
|
|
2012-08-29 09:39:01 +04:00
|
|
|
#endif /*NSDISPLAYLISTINVALIDATION_H_*/
|