2010-10-07 04:25:45 +00:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2010-10-07 04:25:45 +00:00
|
|
|
|
|
|
|
/* struct containing the output from nsIFrame::Reflow */
|
|
|
|
|
|
|
|
#include "nsHTMLReflowMetrics.h"
|
2013-12-31 13:50:31 +00:00
|
|
|
#include "nsHTMLReflowState.h"
|
2010-10-07 04:25:45 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsOverflowAreas::UnionWith(const nsOverflowAreas& aOther)
|
|
|
|
{
|
|
|
|
// FIXME: We should probably change scrollable overflow to use
|
|
|
|
// UnionRectIncludeEmpty (but leave visual overflow using UnionRect).
|
|
|
|
NS_FOR_FRAME_OVERFLOW_TYPES(otype) {
|
|
|
|
mRects[otype].UnionRect(mRects[otype], aOther.mRects[otype]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsOverflowAreas::UnionAllWith(const nsRect& aRect)
|
|
|
|
{
|
|
|
|
// FIXME: We should probably change scrollable overflow to use
|
|
|
|
// UnionRectIncludeEmpty (but leave visual overflow using UnionRect).
|
|
|
|
NS_FOR_FRAME_OVERFLOW_TYPES(otype) {
|
|
|
|
mRects[otype].UnionRect(mRects[otype], aRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsOverflowAreas::SetAllTo(const nsRect& aRect)
|
|
|
|
{
|
|
|
|
NS_FOR_FRAME_OVERFLOW_TYPES(otype) {
|
|
|
|
mRects[otype] = aRect;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 13:50:31 +00:00
|
|
|
nsHTMLReflowMetrics::nsHTMLReflowMetrics(const nsHTMLReflowState& aState,
|
|
|
|
uint32_t aFlags)
|
|
|
|
: mISize(0)
|
|
|
|
, mBSize(0)
|
|
|
|
, mBlockStartAscent(ASK_FOR_BASELINE)
|
|
|
|
, mFlags(aFlags)
|
|
|
|
, mWritingMode(aState.GetWritingMode())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:25:45 +00:00
|
|
|
void
|
|
|
|
nsHTMLReflowMetrics::SetOverflowAreasToDesiredBounds()
|
|
|
|
{
|
|
|
|
NS_FOR_FRAME_OVERFLOW_TYPES(otype) {
|
2013-12-27 17:59:52 +00:00
|
|
|
mOverflowAreas.Overflow(otype).SetRect(0, 0, Width(), Height());
|
2010-10-07 04:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHTMLReflowMetrics::UnionOverflowAreasWithDesiredBounds()
|
|
|
|
{
|
|
|
|
// FIXME: We should probably change scrollable overflow to use
|
|
|
|
// UnionRectIncludeEmpty (but leave visual overflow using UnionRect).
|
2013-12-27 17:59:52 +00:00
|
|
|
nsRect rect(0, 0, Width(), Height());
|
2010-10-07 04:25:45 +00:00
|
|
|
NS_FOR_FRAME_OVERFLOW_TYPES(otype) {
|
|
|
|
nsRect& o = mOverflowAreas.Overflow(otype);
|
|
|
|
o.UnionRect(o, rect);
|
|
|
|
}
|
|
|
|
}
|