2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2000-02-14 01:42:09 +00:00
|
|
|
|
|
|
|
// YY need to pass isMultiple before create called
|
|
|
|
|
2001-10-24 00:01:09 +00:00
|
|
|
#include "nsBoxFrame.h"
|
2014-10-20 09:55:48 +00:00
|
|
|
|
|
|
|
#include "mozilla/gfx/2D.h"
|
2000-02-14 01:42:09 +00:00
|
|
|
#include "nsCSSRendering.h"
|
2014-10-20 09:55:48 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
2011-04-08 01:04:40 +00:00
|
|
|
#include "nsRenderingContext.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
2006-01-26 02:29:17 +00:00
|
|
|
#include "nsDisplayList.h"
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2014-10-20 09:55:48 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2001-10-21 07:03:02 +00:00
|
|
|
class nsGroupBoxFrame : public nsBoxFrame {
|
2000-02-14 01:42:09 +00:00
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsGroupBoxFrame(nsIPresShell* aShell, nsStyleContext* aContext):
|
|
|
|
nsBoxFrame(aShell, aContext) {}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetBorderAndPadding(nsMargin& aBorderAndPadding);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const {
|
2001-11-14 01:33:42 +00:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("GroupBoxFrame"), aResult);
|
2000-02-14 01:42:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool HonorPrintBackgroundSettings() { return false; }
|
2009-05-28 05:01:42 +00:00
|
|
|
|
2011-04-08 01:04:40 +00:00
|
|
|
void PaintBorderBackground(nsRenderingContext& aRenderingContext,
|
2006-01-26 02:29:17 +00:00
|
|
|
nsPoint aPt, const nsRect& aDirtyRect);
|
|
|
|
|
107642 - XUL syntax/cleanup landing. Fixes 94470, 96008, 96019, 76800, 102637, 80399, 108303, and removes over a thousand unnecessary or nonsensical attributes. Also fixes 108302, 102366, 102367, 105815. r=sspitzer,cmanske on appropriate parts sr=ben
2001-11-03 04:17:02 +00:00
|
|
|
// make sure we our kids get our orient and align instead of us.
|
2000-04-26 04:00:29 +00:00
|
|
|
// our child box has no content node so it will search for a parent with one.
|
|
|
|
// that will be us.
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void GetInitialOrientation(bool& aHorizontal) { aHorizontal = false; }
|
|
|
|
virtual bool GetInitialHAlignment(Halignment& aHalign) { aHalign = hAlign_Left; return true; }
|
|
|
|
virtual bool GetInitialVAlignment(Valignment& aValign) { aValign = vAlign_Top; return true; }
|
|
|
|
virtual bool GetInitialAutoStretch(bool& aStretch) { aStretch = true; return true; }
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2012-08-06 03:00:57 +00:00
|
|
|
nsIFrame* GetCaptionBox(nsPresContext* aPresContext, nsRect& aCaptionRect);
|
2000-02-14 01:42:09 +00:00
|
|
|
};
|
|
|
|
|
2000-06-12 23:23:00 +00:00
|
|
|
/*
|
2001-10-21 07:03:02 +00:00
|
|
|
class nsGroupBoxInnerFrame : public nsBoxFrame {
|
2000-02-14 01:42:09 +00:00
|
|
|
public:
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsGroupBoxInnerFrame(nsIPresShell* aShell, nsStyleContext* aContext):
|
|
|
|
nsBoxFrame(aShell, aContext) {}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2000-02-14 01:42:09 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const {
|
2001-10-21 07:03:02 +00:00
|
|
|
return MakeFrameName("GroupBoxFrameInner", aResult);
|
2000-02-14 01:42:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// we are always flexible
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual bool GetDefaultFlex(int32_t& aFlex) { aFlex = 1; return true; }
|
2000-02-14 01:42:09 +00:00
|
|
|
|
|
|
|
};
|
2000-06-12 23:23:00 +00:00
|
|
|
*/
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2005-10-26 21:46:39 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewGroupBoxFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2000-02-14 01:42:09 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsGroupBoxFrame(aPresShell, aContext);
|
2000-02-14 01:42:09 +00:00
|
|
|
}
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsGroupBoxFrame)
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
class nsDisplayXULGroupBackground : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 10:01:13 +00:00
|
|
|
nsDisplayXULGroupBackground(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsGroupBoxFrame* aFrame) :
|
|
|
|
nsDisplayItem(aBuilder, aFrame) {
|
2006-01-29 18:48:58 +00:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayXULGroupBackground);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayXULGroupBackground() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayXULGroupBackground);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-08 00:31:26 +00:00
|
|
|
virtual void HitTest(nsDisplayListBuilder* aBuilder, const nsRect& aRect,
|
|
|
|
HitTestState* aState, nsTArray<nsIFrame*> *aOutFrames) {
|
|
|
|
aOutFrames->AppendElement(mFrame);
|
|
|
|
}
|
2009-09-07 00:35:14 +00:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext* aCtx);
|
2010-07-15 21:07:49 +00:00
|
|
|
NS_DISPLAY_DECL_NAME("XULGroupBackground", TYPE_XUL_GROUP_BACKGROUND)
|
2006-01-26 02:29:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayXULGroupBackground::Paint(nsDisplayListBuilder* aBuilder,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext* aCtx)
|
2006-01-26 02:29:17 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<nsGroupBoxFrame*>(mFrame)->
|
2010-08-13 10:01:58 +00:00
|
|
|
PaintBorderBackground(*aCtx, ToReferenceFrame(), mVisibleRect);
|
2006-01-26 02:29:17 +00:00
|
|
|
}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
void
|
2006-01-26 02:29:17 +00:00
|
|
|
nsGroupBoxFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
2000-02-14 01:42:09 +00:00
|
|
|
{
|
2006-01-26 02:29:17 +00:00
|
|
|
// Paint our background and border
|
|
|
|
if (IsVisibleForPainting(aBuilder)) {
|
2013-02-14 11:08:08 +00:00
|
|
|
aLists.BorderBackground()->AppendNewToTop(new (aBuilder)
|
|
|
|
nsDisplayXULGroupBackground(aBuilder, this));
|
2006-01-26 02:29:17 +00:00
|
|
|
|
2013-02-14 11:08:08 +00:00
|
|
|
DisplayOutline(aBuilder, aLists);
|
2006-01-26 02:29:17 +00:00
|
|
|
}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2013-02-14 11:08:08 +00:00
|
|
|
BuildDisplayListForChildren(aBuilder, aDirtyRect, aLists);
|
2006-01-26 02:29:17 +00:00
|
|
|
}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
void
|
2011-04-08 01:04:40 +00:00
|
|
|
nsGroupBoxFrame::PaintBorderBackground(nsRenderingContext& aRenderingContext,
|
2006-01-26 02:29:17 +00:00
|
|
|
nsPoint aPt, const nsRect& aDirtyRect) {
|
2014-10-20 09:55:48 +00:00
|
|
|
|
|
|
|
DrawTarget* drawTarget = aRenderingContext.GetDrawTarget();
|
|
|
|
gfxContext* gfx = aRenderingContext.ThebesContext();
|
|
|
|
|
2014-06-28 10:13:13 +00:00
|
|
|
Sides skipSides;
|
2013-02-16 21:51:02 +00:00
|
|
|
const nsStyleBorder* borderStyleData = StyleBorder();
|
2012-05-31 05:19:49 +00:00
|
|
|
const nsMargin& border = borderStyleData->GetComputedBorder();
|
2006-01-26 02:29:17 +00:00
|
|
|
nscoord yoff = 0;
|
2007-03-30 21:11:41 +00:00
|
|
|
nsPresContext* presContext = PresContext();
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
nsRect groupRect;
|
2012-08-06 03:00:57 +00:00
|
|
|
nsIFrame* groupBox = GetCaptionBox(presContext, groupRect);
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
if (groupBox) {
|
|
|
|
// if the border is smaller than the legend. Move the border down
|
|
|
|
// to be centered on the legend.
|
|
|
|
nsMargin groupMargin;
|
2013-02-16 21:51:02 +00:00
|
|
|
groupBox->StyleMargin()->GetMargin(groupMargin);
|
2006-01-26 02:29:17 +00:00
|
|
|
groupRect.Inflate(groupMargin);
|
|
|
|
|
|
|
|
if (border.top < groupRect.height)
|
|
|
|
yoff = (groupRect.height - border.top)/2 + groupRect.y;
|
|
|
|
}
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
nsRect rect(aPt.x, aPt.y + yoff, mRect.width, mRect.height - yoff);
|
2000-06-12 23:23:00 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
groupRect += aPt;
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
nsCSSRendering::PaintBackground(presContext, aRenderingContext, this,
|
2009-09-12 22:44:18 +00:00
|
|
|
aDirtyRect, rect,
|
|
|
|
nsCSSRendering::PAINTBG_SYNC_DECODE_IMAGES);
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
if (groupBox) {
|
2014-10-20 09:55:48 +00:00
|
|
|
int32_t appUnitsPerDevPixel = PresContext()->AppUnitsPerDevPixel();
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
// we should probably use PaintBorderEdges to do this but for now just use clipping
|
|
|
|
// to achieve the same effect.
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
// draw left side
|
|
|
|
nsRect clipRect(rect);
|
|
|
|
clipRect.width = groupRect.x - rect.x;
|
|
|
|
clipRect.height = border.top;
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Save();
|
2014-10-22 11:29:06 +00:00
|
|
|
gfx->Clip(NSRectToSnappedRect(clipRect, appUnitsPerDevPixel, *drawTarget));
|
2006-01-26 02:29:17 +00:00
|
|
|
nsCSSRendering::PaintBorder(presContext, aRenderingContext, this,
|
2010-04-03 01:58:26 +00:00
|
|
|
aDirtyRect, rect, mStyleContext, skipSides);
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Restore();
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
// draw right side
|
|
|
|
clipRect = rect;
|
|
|
|
clipRect.x = groupRect.XMost();
|
|
|
|
clipRect.width = rect.XMost() - groupRect.XMost();
|
|
|
|
clipRect.height = border.top;
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Save();
|
2014-10-22 11:29:06 +00:00
|
|
|
gfx->Clip(NSRectToSnappedRect(clipRect, appUnitsPerDevPixel, *drawTarget));
|
2006-01-26 02:29:17 +00:00
|
|
|
nsCSSRendering::PaintBorder(presContext, aRenderingContext, this,
|
2010-04-03 01:58:26 +00:00
|
|
|
aDirtyRect, rect, mStyleContext, skipSides);
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Restore();
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
// draw bottom
|
2000-02-14 01:42:09 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
clipRect = rect;
|
|
|
|
clipRect.y += border.top;
|
|
|
|
clipRect.height = mRect.height - (yoff + border.top);
|
|
|
|
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Save();
|
2014-10-22 11:29:06 +00:00
|
|
|
gfx->Clip(NSRectToSnappedRect(clipRect, appUnitsPerDevPixel, *drawTarget));
|
2006-01-26 02:29:17 +00:00
|
|
|
nsCSSRendering::PaintBorder(presContext, aRenderingContext, this,
|
2010-04-03 01:58:26 +00:00
|
|
|
aDirtyRect, rect, mStyleContext, skipSides);
|
2014-10-20 09:55:48 +00:00
|
|
|
gfx->Restore();
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
nsCSSRendering::PaintBorder(presContext, aRenderingContext, this,
|
|
|
|
aDirtyRect, nsRect(aPt, GetSize()),
|
2010-04-03 01:58:26 +00:00
|
|
|
mStyleContext, skipSides);
|
2000-02-14 01:42:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-06 03:00:57 +00:00
|
|
|
nsIFrame*
|
2004-07-31 23:15:21 +00:00
|
|
|
nsGroupBoxFrame::GetCaptionBox(nsPresContext* aPresContext, nsRect& aCaptionRect)
|
2000-02-14 01:42:09 +00:00
|
|
|
{
|
2001-10-21 09:30:22 +00:00
|
|
|
// first child is our grouped area
|
2014-05-24 22:20:41 +00:00
|
|
|
nsIFrame* box = nsBox::GetChildBox(this);
|
2000-06-12 23:23:00 +00:00
|
|
|
|
|
|
|
// no area fail.
|
|
|
|
if (!box)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2000-06-12 23:23:00 +00:00
|
|
|
|
2001-10-21 09:30:22 +00:00
|
|
|
// get the first child in the grouped area, that is the caption
|
2014-05-24 22:20:41 +00:00
|
|
|
box = nsBox::GetChildBox(box);
|
2000-06-12 23:23:00 +00:00
|
|
|
|
|
|
|
// nothing in the area? fail
|
2001-10-21 07:03:02 +00:00
|
|
|
if (!box)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2000-06-12 23:23:00 +00:00
|
|
|
|
2001-10-21 09:30:22 +00:00
|
|
|
// now get the caption itself. It is in the caption frame.
|
2014-05-24 22:20:41 +00:00
|
|
|
nsIFrame* child = nsBox::GetChildBox(box);
|
2001-10-21 07:03:02 +00:00
|
|
|
|
|
|
|
if (child) {
|
|
|
|
// convert to our coordinates.
|
2004-09-28 18:37:50 +00:00
|
|
|
nsRect parentRect(box->GetRect());
|
|
|
|
aCaptionRect = child->GetRect();
|
2001-10-21 09:30:22 +00:00
|
|
|
aCaptionRect.x += parentRect.x;
|
|
|
|
aCaptionRect.y += parentRect.y;
|
2001-10-21 07:03:02 +00:00
|
|
|
}
|
|
|
|
|
2000-02-14 01:42:09 +00:00
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
nsresult
|
2001-10-21 07:03:02 +00:00
|
|
|
nsGroupBoxFrame::GetBorderAndPadding(nsMargin& aBorderAndPadding)
|
2000-02-14 01:42:09 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
aBorderAndPadding.SizeTo(0,0,0,0);
|
|
|
|
return NS_OK;
|
2000-02-15 00:56:15 +00:00
|
|
|
}
|
|
|
|
|