summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/AccessRole.cs
diff options
context:
space:
mode:
authorpius.lee <pius.lee@samsung.com>2017-03-24 20:13:51 +0900
committerpius.lee <pius.lee@samsung.com>2017-05-10 15:08:47 +0900
commit2d53b498a74b0ad1cb243fea7157c9450dde5e4d (patch)
treeb877e3c090bfb7fd24b326a4795be17443487e41 /ElmSharp/ElmSharp/AccessRole.cs
parentb449cfb1b97fc9d0d3835be6e05445aca7b4c14d (diff)
downloadelm-sharp-2d53b498a74b0ad1cb243fea7157c9450dde5e4d.tar.gz
elm-sharp-2d53b498a74b0ad1cb243fea7157c9450dde5e4d.tar.bz2
elm-sharp-2d53b498a74b0ad1cb243fea7157c9450dde5e4d.zip
Now Widget inherit the AccessibleObject. AccessibleObject is implement of the IAccessibleObject. AccessibleUtil inherit the EvasObject. AccessibleUtil for Say static method. AccessibleRelation can be use for relationship between AccessibleObjects And another enums used in Accessible API. Change-Id: Ied3dbeb326ac80a9dfe94d3ffa2926c88c460141 Signed-off-by: pius.lee <pius.lee@samsung.com>
Diffstat (limited to 'ElmSharp/ElmSharp/AccessRole.cs')
-rw-r--r--ElmSharp/ElmSharp/AccessRole.cs126
1 files changed, 126 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/AccessRole.cs b/ElmSharp/ElmSharp/AccessRole.cs
new file mode 100644
index 0000000..3ff8e35
--- /dev/null
+++ b/ElmSharp/ElmSharp/AccessRole.cs
@@ -0,0 +1,126 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+namespace ElmSharp.Accessible
+{
+ public enum AccessRole
+ {
+ Invalid,
+ AcceleratorLabel,
+ Alert,
+ Animation,
+ Arrow,
+ Calendar,
+ Canvas,
+ CheckBox,
+ CheckMenuItem,
+ ColorChooser,
+ ColumnHeader,
+ ComboBox,
+ DateEditor,
+ DesktopIcon,
+ DesktopFrame,
+ Dial,
+ Dialog,
+ DirectoryPane,
+ DrawingArea,
+ FileChooser,
+ Filler,
+ FocusTraversable,
+ FontChooser,
+ Frame,
+ GlassPane,
+ HtmlContainer,
+ Icon,
+ Image,
+ InternalFrame,
+ Label,
+ LayeredPane,
+ List,
+ ListItem,
+ Menu,
+ MenuBar,
+ MenuItem,
+ OptionPane,
+ PageTab,
+ PageTabList,
+ Panel,
+ PasswordText,
+ PopupMenu,
+ ProgressBar,
+ PushButton,
+ RadioButton,
+ RadioMenuItem,
+ RootPane,
+ RowHeader,
+ ScrollBar,
+ ScrollPane,
+ Separator,
+ Slider,
+ SpinButton,
+ SplitPane,
+ StatusBar,
+ Table,
+ TableCell,
+ TableColumnHeader,
+ TableRowHeader,
+ TearoffMenuItem,
+ Terminal,
+ Text,
+ ToggleButton,
+ ToolBar,
+ ToolTip,
+ Tree,
+ TreeTable,
+ Unknown,
+ Viewport,
+ Window,
+ Extended,
+ Header,
+ Footer,
+ Paragraph,
+ Ruler,
+ Application,
+ Autocomplete,
+ Editbar,
+ Embedded,
+ Entry,
+ Chart,
+ Caption,
+ DocumentFrame,
+ Heading,
+ Page,
+ Section,
+ RedundantObject,
+ Form,
+ Link,
+ InputMethodWindow,
+ TableRow,
+ TreeItem,
+ DocumentSpreadsheet,
+ DocumentPresentation,
+ DocumentText,
+ DocumentWeb,
+ DocumentEmail,
+ Comment,
+ ListBox,
+ Grouping,
+ ImageMap,
+ Notification,
+ InfoBar
+ }
+}