/* * 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 { /// /// Enumeration for AccessRole. /// public enum AccessRole { /// /// Invalid /// Invalid, /// /// AcceleratorLabel role /// AcceleratorLabel, /// /// Alert role /// Alert, /// /// Animation role /// Animation, /// /// Arrow role /// Arrow, /// /// Calendar role /// Calendar, /// /// Canvas role /// Canvas, /// /// CheckBox role /// CheckBox, /// /// CheckMenuItem role /// CheckMenuItem, /// /// ColorChooser role /// ColorChooser, /// /// ColumnHeader role /// ColumnHeader, /// /// ComboBox role /// ComboBox, /// /// DateEditor role /// DateEditor, /// /// DesktopIcon role /// DesktopIcon, /// /// DesktopFrame role /// DesktopFrame, /// /// Dial role /// Dial, /// /// Dialog role /// Dialog, /// /// DirectoryPane role /// DirectoryPane, /// /// DrawingArea role /// DrawingArea, /// /// FileChooser role /// FileChooser, /// /// Filler role /// Filler, /// /// FocusTraversable role /// FocusTraversable, /// /// FontChooser role /// FontChooser, /// /// Frame role /// Frame, /// /// GlassPane role /// GlassPane, /// /// HtmlContainer role /// HtmlContainer, /// /// Icon role /// Icon, /// /// Image role /// Image, /// /// InternalFrame role /// InternalFrame, /// /// Label role /// Label, /// /// LayeredPane role /// LayeredPane, /// /// List role /// List, /// /// ListItem role /// ListItem, /// /// Menu role /// Menu, /// /// MenuBar role /// MenuBar, /// /// MenuItem role /// MenuItem, /// /// OptionPane role /// OptionPane, /// /// PageTab role /// PageTab, /// /// PageTabList role /// PageTabList, /// /// Panel role /// Panel, /// /// PasswordText role /// PasswordText, /// /// PopupMenu role /// PopupMenu, /// /// ProgressBar role /// ProgressBar, /// /// PushButton role /// PushButton, /// /// RadioButton role /// RadioButton, /// /// RadioMenuItem role /// RadioMenuItem, /// /// RootPane role /// RootPane, /// /// RowHeader role /// RowHeader, /// /// ScrollBar role /// ScrollBar, /// /// ScrollPane role /// ScrollPane, /// /// Separator role /// Separator, /// /// Slider role /// Slider, /// /// SpinButton role /// SpinButton, /// /// SplitPane role /// SplitPane, /// /// StatusBar role /// StatusBar, /// /// Table role /// Table, /// /// TableCell role /// TableCell, /// /// TableColumnHeader role /// TableColumnHeader, /// /// TableRowHeader role /// TableRowHeader, /// /// TearoffMenuItem role /// TearoffMenuItem, /// /// Terminal role /// Terminal, /// /// Text role /// Text, /// /// ToggleButton role /// ToggleButton, /// /// ToolBar role /// ToolBar, /// /// ToolTip role /// ToolTip, /// /// Tree role /// Tree, /// /// TreeTable role /// TreeTable, /// /// Unknown /// Unknown, /// /// Viewport role /// Viewport, /// /// Window role /// Window, /// /// Extended role /// Extended, /// /// Header role /// Header, /// /// Footer role /// Footer, /// /// Paragraph /// Paragraph, /// /// Ruler role /// Ruler, /// /// Application role /// Application, /// /// Autocomplete role /// Autocomplete, /// /// Editbar role /// Editbar, /// /// Embedded role /// Embedded, /// /// Entry role /// Entry, /// /// Chart role /// Chart, /// /// Caption role /// Caption, /// /// DocumentFrame role /// DocumentFrame, /// /// Heading role /// Heading, /// /// Page role /// Page, /// /// Section role /// Section, /// /// RedundantObject role /// RedundantObject, /// /// Form role /// Form, /// /// Link role /// Link, /// /// InputMethodWindow role /// InputMethodWindow, /// /// TableRow role /// TableRow, /// /// TreeItem role /// TreeItem, /// /// DocumentSpreadsheet role /// DocumentSpreadsheet, /// /// DocumentPresentation role /// DocumentPresentation, /// /// DocumentText role /// DocumentText, /// /// DocumentWeb role /// DocumentWeb, /// /// DocumentEmail role /// DocumentEmail, /// /// Comment role /// Comment, /// /// ListBox role /// ListBox, /// /// Grouping role /// Grouping, /// /// ImageMap role /// ImageMap, /// /// Notification role /// Notification, /// /// InfoBar role /// InfoBar } }