2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsGfxRadioControlFrame.h"
|
2011-04-07 18:04:40 -07:00
|
|
|
#include "nsRenderingContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDisplayList.h"
|
|
|
|
|
2012-09-28 14:53:44 -07:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame*
|
|
|
|
NS_NewGfxRadioControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsGfxRadioControlFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsGfxRadioControlFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsGfxRadioControlFrame::nsGfxRadioControlFrame(nsStyleContext* aContext):
|
|
|
|
nsFormControlFrame(aContext)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGfxRadioControlFrame::~nsGfxRadioControlFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-02 03:03:52 -07:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 14:53:44 -07:00
|
|
|
a11y::AccType
|
|
|
|
nsGfxRadioControlFrame::AccessibleType()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-12-17 17:25:52 -08:00
|
|
|
return a11y::eHTMLRadioButtonType;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//--------------------------------------------------------------
|
2009-04-03 01:45:17 -07:00
|
|
|
// Draw the dot for a non-native radio button in the checked state.
|
|
|
|
static void
|
|
|
|
PaintCheckedRadioButton(nsIFrame* aFrame,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext* aCtx,
|
2009-04-03 01:45:17 -07:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsPoint aPt)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-04-03 01:45:17 -07:00
|
|
|
// The dot is an ellipse 2px on all sides smaller than the content-box,
|
|
|
|
// drawn in the foreground color.
|
|
|
|
nsRect rect(aPt, aFrame->GetSize());
|
|
|
|
rect.Deflate(aFrame->GetUsedBorderAndPadding());
|
|
|
|
rect.Deflate(nsPresContext::CSSPixelsToAppUnits(2),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(2));
|
|
|
|
|
2013-02-16 13:51:02 -08:00
|
|
|
aCtx->SetColor(aFrame->StyleColor()->mColor);
|
2009-04-03 01:45:17 -07:00
|
|
|
aCtx->FillEllipse(rect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsGfxRadioControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
2013-02-14 03:08:08 -08:00
|
|
|
nsFormControlFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
2013-02-14 03:12:27 -08:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (IsThemed())
|
2013-02-14 03:12:27 -08:00
|
|
|
return; // The theme will paint the check, if any.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool checked = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
GetCurrentCheckState(&checked); // Get check state from the content model
|
|
|
|
if (!checked)
|
2013-02-14 03:12:27 -08:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-14 03:08:08 -08:00
|
|
|
aLists.Content()->AppendNewToTop(new (aBuilder)
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayGeneric(aBuilder, this, PaintCheckedRadioButton,
|
|
|
|
"CheckedRadioButton",
|
2010-07-15 14:07:49 -07:00
|
|
|
nsDisplayItem::TYPE_CHECKED_RADIOBUTTON));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|