2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / AccessibleEvents.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) 2005 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Peter Bartok    pbartok@novell.com
24 //
25 //
26
27 // COMPLETE
28
29 namespace System.Windows.Forms {
30         public enum AccessibleEvents {
31                 SystemSound                     = 1,
32                 SystemAlert                     = 2,
33                 SystemForeground                = 3,
34                 SystemMenuStart                 = 4,
35                 SystemMenuEnd                   = 5,
36                 SystemMenuPopupStart            = 6,
37                 SystemMenuPopupEnd              = 7,
38                 SystemCaptureStart              = 8,
39                 SystemCaptureEnd                = 9,
40                 SystemMoveSizeStart             = 10,
41                 SystemMoveSizeEnd               = 11,
42                 SystemContextHelpStart          = 12,
43                 SystemContextHelpEnd            = 13,
44                 SystemDragDropStart             = 14,
45                 SystemDragDropEnd               = 15,
46                 SystemDialogStart               = 16,
47                 SystemDialogEnd                 = 17,
48                 SystemScrollingStart            = 18,
49                 SystemScrollingEnd              = 19,
50                 SystemSwitchStart               = 20,
51                 SystemSwitchEnd                 = 21,
52                 SystemMinimizeStart             = 22,
53                 SystemMinimizeEnd               = 23,
54                 Create                          = 32768,
55                 Destroy                         = 32769,
56                 Show                            = 32770,
57                 Hide                            = 32771,
58                 Reorder                         = 32772,
59                 Focus                           = 32773,
60                 Selection                       = 32774,
61                 SelectionAdd                    = 32775,
62                 SelectionRemove                 = 32776,
63                 SelectionWithin                 = 32777,
64                 StateChange                     = 32778,
65                 LocationChange                  = 32779,
66                 NameChange                      = 32780,
67                 DescriptionChange               = 32781,
68                 ValueChange                     = 32782,
69                 ParentChange                    = 32783,
70                 HelpChange                      = 32784,
71                 DefaultActionChange             = 32785,
72                 AcceleratorChange               = 32786
73         }
74 }