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"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsCSSRendering.h"
|
2011-04-07 18:04:40 -07:00
|
|
|
#include "nsRenderingContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef ACCESSIBILITY
|
2011-01-27 20:38:14 -08:00
|
|
|
#include "nsAccessibilityService.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsITheme.h"
|
|
|
|
#include "nsDisplayList.h"
|
2009-01-19 10:31:32 -08:00
|
|
|
#include "nsCSSAnonBoxes.h"
|
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-05-28 18:18:45 -07:00
|
|
|
already_AddRefed<Accessible>
|
2010-06-28 05:02:03 -07:00
|
|
|
nsGfxRadioControlFrame::CreateAccessible()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-01-27 20:38:14 -08:00
|
|
|
nsAccessibilityService* accService = nsIPresShell::AccService();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (accService) {
|
2010-06-28 05:02:03 -07:00
|
|
|
return accService->CreateHTMLRadioButtonAccessible(mContent,
|
|
|
|
PresContext()->PresShell());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
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));
|
|
|
|
|
|
|
|
aCtx->SetColor(aFrame->GetStyleColor()->mColor);
|
|
|
|
aCtx->FillEllipse(rect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxRadioControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
2009-04-03 01:45:17 -07:00
|
|
|
nsresult rv = nsFormControlFrame::BuildDisplayList(aBuilder, aDirtyRect,
|
|
|
|
aLists);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
if (IsThemed())
|
2009-04-03 01:45:17 -07:00
|
|
|
return NS_OK; // 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)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return 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
|
|
|
}
|