Cosmetic issues with member signitures
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / AccessibleStates.cs
1 //
2 // System.Windows.Forms.AccessibleStates.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002/3 Ximian, Inc.  http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// </summary>
15         public enum AccessibleStates{
16                 AlertLow = 67108864,
17                 AlertMedium = 134217728,
18                 AlertHigh = 268435456,
19                 Animated = 16384,
20                 Busy = 2048,
21                 Checked = 16,
22                 Collapsed = 1024,
23                 Default = 256,
24                 Expanded = 512,
25                 ExtSelectable = 33554432,
26                 Floating = 4096,
27                 Focusable = 1048576,
28                 Focused = 4,
29                 HotTracked = 128,
30                 Mixed = 32,
31                 Indeterminate =32,
32                 Invisible = 32768,
33                 Linked = 4194304,
34                 Marqueed = 8192,
35                 Moveable = 262144,
36                 MultiSelectable = 16777216,
37                 None = 0,
38                 Pressed = 8,
39                 Protected = 536870912,
40                 ReadOnly = 64,
41                 Offscreen = 65536,
42                 Selectable = 2097152,
43                 Selected = 2,
44                 SelfVoicing = 524288,
45                 Sizeable = 131072,
46                 Traversed =8388608,
47                 Unavailable = 1,
48                 Valid = 1073741823,             
49
50
51                 //Where did these come from, are they missing from elsewhere?
52                 //AddSelection = ,
53                 //ExtendSelection = ,
54                 //None = ,
55                 //RemoveSelection = ,
56                 //TakeFocus = ,
57                 //TakeSelection = 
58         }
59 }