Assign values to base class.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / RadioButtonRenderer.cs
index 039a0a663214178d0ef0ac9c51988e0ad68d0501..61fd4315b72bb48d11899f9743c04763b74fc287 100644 (file)
-//\r
-// RadioButtonRenderer.cs\r
-//\r
-// Permission is hereby granted, free of charge, to any person obtaining\r
-// a copy of this software and associated documentation files (the\r
-// "Software"), to deal in the Software without restriction, including\r
-// without limitation the rights to use, copy, modify, merge, publish,\r
-// distribute, sublicense, and/or sell copies of the Software, and to\r
-// permit persons to whom the Software is furnished to do so, subject to\r
-// the following conditions:\r
-// \r
-// The above copyright notice and this permission notice shall be\r
-// included in all copies or substantial portions of the Software.\r
-// \r
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-//\r
-// Copyright (c) 2006 Novell, Inc.\r
-//\r
-// Authors:\r
-//     Jonathan Pobst (monkey@jpobst.com)\r
-//\r
-\r
-#if NET_2_0\r
-using System.Drawing;\r
-using System.Windows.Forms.VisualStyles;\r
-\r
-namespace System.Windows.Forms\r
-{\r
-       public sealed class RadioButtonRenderer\r
-       {\r
-               private static bool always_use_visual_styles = false;\r
-\r
-               #region Private Constructor\r
-               private RadioButtonRenderer () { }\r
-               #endregion\r
-\r
-               #region Public Static Methods\r
-               public static void DrawRadioButton (Graphics g, Point glyphLocation, RadioButtonState state)\r
-               {\r
-                       DrawRadioButton (g, glyphLocation, Rectangle.Empty, String.Empty, null, TextFormatFlags.HorizontalCenter, null, Rectangle.Empty, false, state);\r
-               }\r
-\r
-               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, bool focused, RadioButtonState state)\r
-               {\r
-                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, TextFormatFlags.HorizontalCenter, null, Rectangle.Empty, focused, state);\r
-               }\r
-\r
-               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, TextFormatFlags flags, bool focused, RadioButtonState state)\r
-               {\r
-                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, flags, null, Rectangle.Empty, focused, state);\r
-               }\r
-\r
-               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, Image image, Rectangle imageBounds, bool focused, RadioButtonState state)\r
-               {\r
-                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, TextFormatFlags.HorizontalCenter, image, imageBounds, focused, state);\r
-               }\r
-\r
-               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, TextFormatFlags flags, Image image, Rectangle imageBounds, bool focused, RadioButtonState state)\r
-               {\r
-                       Rectangle bounds = new Rectangle (glyphLocation, GetGlyphSize (g, state));\r
-\r
-                       if (Application.RenderWithVisualStyles || always_use_visual_styles == true) {\r
-                               VisualStyleRenderer vsr = GetRadioButtonRenderer (state);\r
-\r
-                               vsr.DrawBackground (g, bounds);\r
-\r
-                               if (image != null)\r
-                                       vsr.DrawImage (g, imageBounds, image);\r
-\r
-                               if (focused)\r
-                                       ControlPaint.DrawFocusRectangle (g, textBounds);\r
-\r
-                               if (radioButtonText != String.Empty)\r
-                                       if (state == RadioButtonState.CheckedDisabled || state == RadioButtonState.UncheckedDisabled)\r
-                                               TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.GrayText, flags);\r
-                                       else\r
-                                               TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.ControlText, flags);\r
-                       }\r
-                       else {\r
-                               switch (state) {\r
-                                       case RadioButtonState.CheckedDisabled:\r
-                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Inactive | ButtonState.Checked);\r
-                                               break;\r
-                                       case RadioButtonState.CheckedHot:\r
-                                       case RadioButtonState.CheckedNormal:\r
-                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Checked);\r
-                                               break;\r
-                                       case RadioButtonState.CheckedPressed:\r
-                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Pushed | ButtonState.Checked);\r
-                                               break;\r
-                                       case RadioButtonState.UncheckedDisabled:\r
-                                       case RadioButtonState.UncheckedPressed:\r
-                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Inactive);\r
-                                               break;\r
-                                       case RadioButtonState.UncheckedHot:\r
-                                       case RadioButtonState.UncheckedNormal:\r
-                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Normal);\r
-                                               break;\r
-                               }\r
-\r
-                               if (image != null)\r
-                                       g.DrawImage (image, imageBounds);\r
-                       \r
-                               if (focused)\r
-                                       ControlPaint.DrawFocusRectangle (g, textBounds);\r
-\r
-                               if (radioButtonText != String.Empty)\r
-                                       TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.ControlText, flags);\r
-                       }\r
-\r
-               }\r
-\r
-               public static bool IsBackgroundPartiallyTransparent (RadioButtonState state)\r
-               {\r
-                       if (!VisualStyleRenderer.IsSupported)\r
-                               return false;\r
-\r
-                       VisualStyleRenderer vsr = GetRadioButtonRenderer (state);\r
-\r
-                       return vsr.IsBackgroundPartiallyTransparent ();\r
-               }\r
-\r
-               public static void DrawParentBackground (Graphics g, Rectangle bounds, Control childControl)\r
-               {\r
-                       if (!VisualStyleRenderer.IsSupported)\r
-                               return;\r
-\r
-                       VisualStyleRenderer vsr = new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedNormal);\r
-\r
-                       vsr.DrawParentBackground (g, bounds, childControl);\r
-               }\r
-\r
-               public static Size GetGlyphSize (Graphics g, RadioButtonState state)\r
-               {\r
-                       if (!VisualStyleRenderer.IsSupported)\r
-                               return new Size (13, 13);\r
-\r
-                       VisualStyleRenderer vsr = GetRadioButtonRenderer(state);\r
-\r
-                       return vsr.GetPartSize (g, ThemeSizeType.Draw);\r
-               }\r
-               #endregion\r
-\r
-               #region Private Static Methods\r
-               private static VisualStyleRenderer GetRadioButtonRenderer (RadioButtonState state)\r
-               {\r
-                       switch (state) {\r
-                               case RadioButtonState.CheckedDisabled:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedDisabled);\r
-                               case RadioButtonState.CheckedHot:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedHot);\r
-                               case RadioButtonState.CheckedNormal:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedNormal);\r
-                               case RadioButtonState.CheckedPressed:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedPressed);\r
-                               case RadioButtonState.UncheckedDisabled:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedDisabled);\r
-                               case RadioButtonState.UncheckedHot:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedHot);\r
-                               case RadioButtonState.UncheckedNormal:\r
-                               default:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedNormal);\r
-                               case RadioButtonState.UncheckedPressed:\r
-                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedPressed);\r
-                       }\r
-               }\r
-               #endregion\r
-\r
-               #region Public Static Properties\r
-               public static bool RenderMatchingApplicationState {\r
-                       get { return !always_use_visual_styles; }\r
-                       set { always_use_visual_styles = !value; }\r
-               }\r
-               #endregion\r
-       }\r
-}\r
-#endif
\ No newline at end of file
+//
+// RadioButtonRenderer.cs
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+// Copyright (c) 2006 Novell, Inc.
+//
+// Authors:
+//     Jonathan Pobst (monkey@jpobst.com)
+//
+
+using System.Drawing;
+using System.Windows.Forms.VisualStyles;
+
+namespace System.Windows.Forms
+{
+       public sealed class RadioButtonRenderer
+       {
+               private static bool always_use_visual_styles = false;
+
+               #region Private Constructor
+               private RadioButtonRenderer () { }
+               #endregion
+
+               #region Public Static Methods
+               public static void DrawRadioButton (Graphics g, Point glyphLocation, RadioButtonState state)
+               {
+                       DrawRadioButton (g, glyphLocation, Rectangle.Empty, String.Empty, null, TextFormatFlags.HorizontalCenter, null, Rectangle.Empty, false, state);
+               }
+
+               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, bool focused, RadioButtonState state)
+               {
+                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, TextFormatFlags.HorizontalCenter, null, Rectangle.Empty, focused, state);
+               }
+
+               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, TextFormatFlags flags, bool focused, RadioButtonState state)
+               {
+                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, flags, null, Rectangle.Empty, focused, state);
+               }
+
+               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, Image image, Rectangle imageBounds, bool focused, RadioButtonState state)
+               {
+                       DrawRadioButton (g, glyphLocation, textBounds, radioButtonText, font, TextFormatFlags.HorizontalCenter, image, imageBounds, focused, state);
+               }
+
+               public static void DrawRadioButton (Graphics g, Point glyphLocation, Rectangle textBounds, string radioButtonText, Font font, TextFormatFlags flags, Image image, Rectangle imageBounds, bool focused, RadioButtonState state)
+               {
+                       Rectangle bounds = new Rectangle (glyphLocation, GetGlyphSize (g, state));
+
+                       if (Application.RenderWithVisualStyles || always_use_visual_styles == true) {
+                               VisualStyleRenderer vsr = GetRadioButtonRenderer (state);
+
+                               vsr.DrawBackground (g, bounds);
+
+                               if (image != null)
+                                       vsr.DrawImage (g, imageBounds, image);
+
+                               if (focused)
+                                       ControlPaint.DrawFocusRectangle (g, textBounds);
+
+                               if (radioButtonText != String.Empty)
+                                       if (state == RadioButtonState.CheckedDisabled || state == RadioButtonState.UncheckedDisabled)
+                                               TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.GrayText, flags);
+                                       else
+                                               TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.ControlText, flags);
+                       }
+                       else {
+                               switch (state) {
+                                       case RadioButtonState.CheckedDisabled:
+                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Inactive | ButtonState.Checked);
+                                               break;
+                                       case RadioButtonState.CheckedHot:
+                                       case RadioButtonState.CheckedNormal:
+                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Checked);
+                                               break;
+                                       case RadioButtonState.CheckedPressed:
+                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Pushed | ButtonState.Checked);
+                                               break;
+                                       case RadioButtonState.UncheckedDisabled:
+                                       case RadioButtonState.UncheckedPressed:
+                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Inactive);
+                                               break;
+                                       case RadioButtonState.UncheckedHot:
+                                       case RadioButtonState.UncheckedNormal:
+                                               ControlPaint.DrawRadioButton (g, bounds, ButtonState.Normal);
+                                               break;
+                               }
+
+                               if (image != null)
+                                       g.DrawImage (image, imageBounds);
+                       
+                               if (focused)
+                                       ControlPaint.DrawFocusRectangle (g, textBounds);
+
+                               if (radioButtonText != String.Empty)
+                                       TextRenderer.DrawText (g, radioButtonText, font, textBounds, SystemColors.ControlText, flags);
+                       }
+
+               }
+
+               public static bool IsBackgroundPartiallyTransparent (RadioButtonState state)
+               {
+                       if (!VisualStyleRenderer.IsSupported)
+                               return false;
+
+                       VisualStyleRenderer vsr = GetRadioButtonRenderer (state);
+
+                       return vsr.IsBackgroundPartiallyTransparent ();
+               }
+
+               public static void DrawParentBackground (Graphics g, Rectangle bounds, Control childControl)
+               {
+                       if (!VisualStyleRenderer.IsSupported)
+                               return;
+
+                       VisualStyleRenderer vsr = new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedNormal);
+
+                       vsr.DrawParentBackground (g, bounds, childControl);
+               }
+
+               public static Size GetGlyphSize (Graphics g, RadioButtonState state)
+               {
+                       if (!VisualStyleRenderer.IsSupported)
+                               return new Size (13, 13);
+
+                       VisualStyleRenderer vsr = GetRadioButtonRenderer(state);
+
+                       return vsr.GetPartSize (g, ThemeSizeType.Draw);
+               }
+               #endregion
+
+               #region Private Static Methods
+               private static VisualStyleRenderer GetRadioButtonRenderer (RadioButtonState state)
+               {
+                       switch (state) {
+                               case RadioButtonState.CheckedDisabled:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedDisabled);
+                               case RadioButtonState.CheckedHot:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedHot);
+                               case RadioButtonState.CheckedNormal:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedNormal);
+                               case RadioButtonState.CheckedPressed:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.CheckedPressed);
+                               case RadioButtonState.UncheckedDisabled:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedDisabled);
+                               case RadioButtonState.UncheckedHot:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedHot);
+                               case RadioButtonState.UncheckedNormal:
+                               default:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedNormal);
+                               case RadioButtonState.UncheckedPressed:
+                                       return new VisualStyleRenderer (VisualStyleElement.Button.RadioButton.UncheckedPressed);
+                       }
+               }
+               #endregion
+
+               #region Public Static Properties
+               public static bool RenderMatchingApplicationState {
+                       get { return !always_use_visual_styles; }
+                       set { always_use_visual_styles = !value; }
+               }
+               #endregion
+       }
+}
\ No newline at end of file