Add BackButtonPressed/MoreButtonPressed event on EvasObject
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / AccessRole.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 namespace ElmSharp.Accessible
19 {
20     public enum AccessRole
21     {
22         Invalid,
23         AcceleratorLabel,
24         Alert,
25         Animation,
26         Arrow,
27         Calendar,
28         Canvas,
29         CheckBox,
30         CheckMenuItem,
31         ColorChooser,
32         ColumnHeader,
33         ComboBox,
34         DateEditor,
35         DesktopIcon,
36         DesktopFrame,
37         Dial,
38         Dialog,
39         DirectoryPane,
40         DrawingArea,
41         FileChooser,
42         Filler,
43         FocusTraversable,
44         FontChooser,
45         Frame,
46         GlassPane,
47         HtmlContainer,
48         Icon,
49         Image,
50         InternalFrame,
51         Label,
52         LayeredPane,
53         List,
54         ListItem,
55         Menu,
56         MenuBar,
57         MenuItem,
58         OptionPane,
59         PageTab,
60         PageTabList,
61         Panel,
62         PasswordText,
63         PopupMenu,
64         ProgressBar,
65         PushButton,
66         RadioButton,
67         RadioMenuItem,
68         RootPane,
69         RowHeader,
70         ScrollBar,
71         ScrollPane,
72         Separator,
73         Slider,
74         SpinButton,
75         SplitPane,
76         StatusBar,
77         Table,
78         TableCell,
79         TableColumnHeader,
80         TableRowHeader,
81         TearoffMenuItem,
82         Terminal,
83         Text,
84         ToggleButton,
85         ToolBar,
86         ToolTip,
87         Tree,
88         TreeTable,
89         Unknown,
90         Viewport,
91         Window,
92         Extended,
93         Header,
94         Footer,
95         Paragraph,
96         Ruler,
97         Application,
98         Autocomplete,
99         Editbar,
100         Embedded,
101         Entry,
102         Chart,
103         Caption,
104         DocumentFrame,
105         Heading,
106         Page,
107         Section,
108         RedundantObject,
109         Form,
110         Link,
111         InputMethodWindow,
112         TableRow,
113         TreeItem,
114         DocumentSpreadsheet,
115         DocumentPresentation,
116         DocumentText,
117         DocumentWeb,
118         DocumentEmail,
119         Comment,
120         ListBox,
121         Grouping,
122         ImageMap,
123         Notification,
124         InfoBar
125     }
126 }