Merge mozilla-central and tracemonkey. (a=blockers)
[mozilla-central.git] / layout / forms / nsGfxRadioControlFrame.cpp
blobfe1d3cac1ade8d6ae1e352a55ecf31b144179a07
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "nsGfxRadioControlFrame.h"
39 #include "nsIContent.h"
40 #include "nsCOMPtr.h"
41 #include "nsCSSRendering.h"
42 #ifdef ACCESSIBILITY
43 #include "nsAccessibilityService.h"
44 #endif
45 #include "nsIServiceManager.h"
46 #include "nsITheme.h"
47 #include "nsDisplayList.h"
48 #include "nsCSSAnonBoxes.h"
50 nsIFrame*
51 NS_NewGfxRadioControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
53 return new (aPresShell) nsGfxRadioControlFrame(aContext);
56 NS_IMPL_FRAMEARENA_HELPERS(nsGfxRadioControlFrame)
58 nsGfxRadioControlFrame::nsGfxRadioControlFrame(nsStyleContext* aContext):
59 nsFormControlFrame(aContext)
63 nsGfxRadioControlFrame::~nsGfxRadioControlFrame()
67 #ifdef ACCESSIBILITY
68 already_AddRefed<nsAccessible>
69 nsGfxRadioControlFrame::CreateAccessible()
71 nsAccessibilityService* accService = nsIPresShell::AccService();
72 if (accService) {
73 return accService->CreateHTMLRadioButtonAccessible(mContent,
74 PresContext()->PresShell());
77 return nsnull;
79 #endif
81 //--------------------------------------------------------------
82 // Draw the dot for a non-native radio button in the checked state.
83 static void
84 PaintCheckedRadioButton(nsIFrame* aFrame,
85 nsIRenderingContext* aCtx,
86 const nsRect& aDirtyRect,
87 nsPoint aPt)
89 // The dot is an ellipse 2px on all sides smaller than the content-box,
90 // drawn in the foreground color.
91 nsRect rect(aPt, aFrame->GetSize());
92 rect.Deflate(aFrame->GetUsedBorderAndPadding());
93 rect.Deflate(nsPresContext::CSSPixelsToAppUnits(2),
94 nsPresContext::CSSPixelsToAppUnits(2));
96 aCtx->SetColor(aFrame->GetStyleColor()->mColor);
97 aCtx->FillEllipse(rect);
100 NS_IMETHODIMP
101 nsGfxRadioControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
102 const nsRect& aDirtyRect,
103 const nsDisplayListSet& aLists)
105 nsresult rv = nsFormControlFrame::BuildDisplayList(aBuilder, aDirtyRect,
106 aLists);
107 NS_ENSURE_SUCCESS(rv, rv);
109 if (!IsVisibleForPainting(aBuilder))
110 return NS_OK;
112 if (IsThemed())
113 return NS_OK; // The theme will paint the check, if any.
115 PRBool checked = PR_TRUE;
116 GetCurrentCheckState(&checked); // Get check state from the content model
117 if (!checked)
118 return NS_OK;
120 return aLists.Content()->AppendNewToTop(new (aBuilder)
121 nsDisplayGeneric(aBuilder, this, PaintCheckedRadioButton,
122 "CheckedRadioButton",
123 nsDisplayItem::TYPE_CHECKED_RADIOBUTTON));