2005-05-19 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / AccessibleRole.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2004 Novell, Inc.
21 //
22 // Authors:
23 //      Peter Bartok    pbartok@novell.com
24 //
25
26
27 // COMPLETE
28
29 namespace System.Windows.Forms {
30         public enum AccessibleRole {
31                 None            = 0,
32                 TitleBar        = 1,
33                 MenuBar         = 2,
34                 ScrollBar       = 3,
35                 Grip            = 4,
36                 Sound           = 5,
37                 Cursor          = 6,
38                 Caret           = 7,
39                 Alert           = 8,
40                 Window          = 9,
41                 Client          = 10,
42                 MenuPopup       = 11,
43                 MenuItem        = 12,
44                 ToolTip         = 13,
45                 Application     = 14,
46                 Document        = 15,
47                 Pane            = 16,
48                 Chart           = 17,
49                 Dialog          = 18,
50                 Border          = 19,
51                 Grouping        = 20,
52                 Separator       = 21,
53                 ToolBar         = 22,
54                 StatusBar       = 23,
55                 Table           = 24,
56                 ColumnHeader    = 25,
57                 RowHeader       = 26,
58                 Column          = 27,
59                 Row             = 28,
60                 Cell            = 29,
61                 Link            = 30,
62                 HelpBalloon     = 31,
63                 Character       = 32,
64                 List            = 33,
65                 ListItem        = 34,
66                 Outline         = 35,
67                 OutlineItem     = 36,
68                 PageTab         = 37,
69                 PropertyPage    = 38,
70                 Indicator       = 39,
71                 Graphic         = 40,
72                 StaticText      = 41,
73                 Text            = 42,
74                 PushButton      = 43,
75                 CheckButton     = 44,
76                 RadioButton     = 45,
77                 ComboBox        = 46,
78                 DropList        = 47,
79                 ProgressBar     = 48,
80                 Dial            = 49,
81                 HotkeyField     = 50,
82                 Slider          = 51,
83                 SpinButton      = 52,
84                 Diagram         = 53,
85                 Animation       = 54,
86                 Equation        = 55,
87                 ButtonDropDown  = 56,
88                 ButtonMenu      = 57,
89                 ButtonDropDownGrid= 58,
90                 WhiteSpace      = 59,
91                 PageTabList     = 60,
92                 Clock           = 61,
93                 Default         = -1
94         }
95 }