Rename Managed.Windows.Forms to System.Windows.Forms for consistency.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms.WebBrowserDialogs / AlertCheck.cs
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms.WebBrowserDialogs/AlertCheck.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms.WebBrowserDialogs/AlertCheck.cs
deleted file mode 100644 (file)
index 46f2aa5..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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) 2007 Novell, Inc.\r
-//\r
-// Authors:\r
-//     Andreia Gaita   <avidigal@novell.com>\r
-\r
-\r
-using System;\r
-using System.Collections.Generic;\r
-using System.Text;\r
-\r
-namespace System.Windows.Forms.WebBrowserDialogs\r
-{\r
-       internal class AlertCheck : Generic\r
-       {\r
-               private bool check;\r
-               public bool Checked {\r
-                       get { return check; }\r
-               }\r
-\r
-               public AlertCheck (string title, string text, string checkMessage, bool checkState)\r
-                       : base (title)\r
-               {\r
-                       InitTable (3, 1);\r
-\r
-                       AddLabel (0, 0, 0, text, -1, -1);\r
-                       AddCheck (1, 0, 0, checkMessage, checkState, -1, -1, new EventHandler (CheckedChanged));\r
-                       AddButton (2, 0, 0, "OK", -1, -1, true, false, new EventHandler (OkClick));\r
-               }\r
-\r
-               private void OkClick (object sender, EventArgs e)\r
-               {\r
-                       this.DialogResult = DialogResult.OK;\r
-                       this.Close ();\r
-               }\r
-\r
-               private void CheckedChanged (object sender, EventArgs e)\r
-               {\r
-                       CheckBox c = sender as CheckBox;\r
-                       check = c.Checked;\r
-               }\r
-       }\r
-}\r