2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / AccessibleStates.cs
index 415265b27fe144672911e309454c502c97067d87..a0efcaa50d0b80ae1c44b75f3a13ff211c8372b1 100644 (file)
@@ -1,23 +1,59 @@
-//\r
-// System.Windows.Forms.AccessibleStates.cs\r
-//\r
-// Author:\r
-//   Dennis Hayes (dennish@raytek.com)\r
-// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
-//\r
-\r
-using System;\r
-\r
-namespace System.Windows.Forms {\r
-\r
-       /// <summary>\r
-       /// </summary>\r
-       public enum AccessibleStates{\r
-               AddSelection = ,\r
-               ExtendSelection = ,\r
-               None = ,\r
-               RemoveSelection = ,\r
-               TakeFocus = ,\r
-               TakeSelection = \r
-       }\r
-}\r
+//
+// System.Windows.Forms.AccessibleStates.cs
+//
+// Author:
+//   Dennis Hayes (dennish@raytek.com)
+// (C) 2002/3 Ximian, Inc.  http://www.ximian.com
+//
+
+using System;
+
+namespace System.Windows.Forms {
+
+       /// <summary>
+       /// </summary>
+       public enum AccessibleStates{
+               AlertLow = 67108864,
+               AlertMedium = 134217728,
+               AlertHigh = 268435456,
+               Animated = 16384,
+               Busy = 2048,
+               Checked = 16,
+               Collapsed = 1024,
+               Default = 256,
+               Expanded = 512,
+               ExtSelectable = 33554432,
+               Floating = 4096,
+               Focusable = 1048576,
+               Focused = 4,
+               HotTracked = 128,
+               Mixed = 32,
+               Indeterminate =32,
+               Invisible = 32768,
+               Linked = 4194304,
+               Marqueed = 8192,
+               Moveable = 262144,
+               MultiSelectable = 16777216,
+               None = 0,
+               Pressed = 8,
+               Protected = 536870912,
+               ReadOnly = 64,
+               Offscreen = 65536,
+               Selectable = 2097152,
+               Selected = 2,
+               SelfVoicing = 524288,
+               Sizeable = 131072,
+               Traversed =8388608,
+               Unavailable = 1,
+               Valid = 1073741823,             
+
+
+               //Where did these come from, are they missing from elsewhere?
+               //AddSelection = ,
+               //ExtendSelection = ,
+               //None = ,
+               //RemoveSelection = ,
+               //TakeFocus = ,
+               //TakeSelection = 
+       }
+}