| // Copyright 2018 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "ui/accessibility/ax_enum_util.h" |
| |
| #include "ui/accessibility/ax_enums.mojom-shared.h" |
| #include "ui/accessibility/ax_enums.mojom.h" |
| |
| namespace ui { |
| |
| const char* ToString(ax::mojom::Event event) { |
| switch (event) { |
| case ax::mojom::Event::kNone: |
| return "none"; |
| case ax::mojom::Event::kActiveDescendantChanged: |
| return "activedescendantchanged"; |
| case ax::mojom::Event::kAlert: |
| return "alert"; |
| case ax::mojom::Event::kAriaAttributeChanged: |
| return "ariaAttributeChanged"; |
| case ax::mojom::Event::kAutocorrectionOccured: |
| return "autocorrectionOccured"; |
| case ax::mojom::Event::kBlur: |
| return "blur"; |
| case ax::mojom::Event::kCheckedStateChanged: |
| return "checkedStateChanged"; |
| case ax::mojom::Event::kChildrenChanged: |
| return "childrenChanged"; |
| case ax::mojom::Event::kClicked: |
| return "clicked"; |
| case ax::mojom::Event::kControlsChanged: |
| return "controlsChanged"; |
| case ax::mojom::Event::kDocumentSelectionChanged: |
| return "documentSelectionChanged"; |
| case ax::mojom::Event::kDocumentTitleChanged: |
| return "documentTitleChanged"; |
| case ax::mojom::Event::kEndOfTest: |
| return "endOfTest"; |
| case ax::mojom::Event::kExpandedChanged: |
| return "expandedChanged"; |
| case ax::mojom::Event::kFocus: |
| return "focus"; |
| case ax::mojom::Event::kFocusAfterMenuClose: |
| return "focusAfterMenuClose"; |
| case ax::mojom::Event::kFocusContext: |
| return "focusContext"; |
| case ax::mojom::Event::kHide: |
| return "hide"; |
| case ax::mojom::Event::kHitTestResult: |
| return "hitTestResult"; |
| case ax::mojom::Event::kHover: |
| return "hover"; |
| case ax::mojom::Event::kImageFrameUpdated: |
| return "imageFrameUpdated"; |
| case ax::mojom::Event::kLayoutComplete: |
| return "layoutComplete"; |
| case ax::mojom::Event::kLiveRegionCreated: |
| return "liveRegionCreated"; |
| case ax::mojom::Event::kLiveRegionChanged: |
| return "liveRegionChanged"; |
| case ax::mojom::Event::kLoadComplete: |
| return "loadComplete"; |
| case ax::mojom::Event::kLoadStart: |
| return "loadStart"; |
| case ax::mojom::Event::kLocationChanged: |
| return "locationChanged"; |
| case ax::mojom::Event::kMediaStartedPlaying: |
| return "mediaStartedPlaying"; |
| case ax::mojom::Event::kMediaStoppedPlaying: |
| return "mediaStoppedPlaying"; |
| case ax::mojom::Event::kMenuEnd: |
| return "menuEnd"; |
| case ax::mojom::Event::kMenuListValueChanged: |
| return "menuListValueChanged"; |
| case ax::mojom::Event::kMenuPopupEnd: |
| return "menuPopupEnd"; |
| case ax::mojom::Event::kMenuPopupStart: |
| return "menuPopupStart"; |
| case ax::mojom::Event::kMenuStart: |
| return "menuStart"; |
| case ax::mojom::Event::kMouseCanceled: |
| return "mouseCanceled"; |
| case ax::mojom::Event::kMouseDragged: |
| return "mouseDragged"; |
| case ax::mojom::Event::kMouseMoved: |
| return "mouseMoved"; |
| case ax::mojom::Event::kMousePressed: |
| return "mousePressed"; |
| case ax::mojom::Event::kMouseReleased: |
| return "mouseReleased"; |
| case ax::mojom::Event::kRowCollapsed: |
| return "rowCollapsed"; |
| case ax::mojom::Event::kRowCountChanged: |
| return "rowCountChanged"; |
| case ax::mojom::Event::kRowExpanded: |
| return "rowExpanded"; |
| case ax::mojom::Event::kScrollPositionChanged: |
| return "scrollPositionChanged"; |
| case ax::mojom::Event::kScrolledToAnchor: |
| return "scrolledToAnchor"; |
| case ax::mojom::Event::kSelectedChildrenChanged: |
| return "selectedChildrenChanged"; |
| case ax::mojom::Event::kSelection: |
| return "selection"; |
| case ax::mojom::Event::kSelectionAdd: |
| return "selectionAdd"; |
| case ax::mojom::Event::kSelectionRemove: |
| return "selectionRemove"; |
| case ax::mojom::Event::kShow: |
| return "show"; |
| case ax::mojom::Event::kStateChanged: |
| return "stateChanged"; |
| case ax::mojom::Event::kTextChanged: |
| return "textChanged"; |
| case ax::mojom::Event::kTextSelectionChanged: |
| return "textSelectionChanged"; |
| case ax::mojom::Event::kTooltipClosed: |
| return "tooltipClosed"; |
| case ax::mojom::Event::kTooltipOpened: |
| return "tooltipOpened"; |
| case ax::mojom::Event::kTreeChanged: |
| return "treeChanged"; |
| case ax::mojom::Event::kValueChanged: |
| return "valueChanged"; |
| case ax::mojom::Event::kWindowActivated: |
| return "windowActivated"; |
| case ax::mojom::Event::kWindowDeactivated: |
| return "windowDeactivated"; |
| case ax::mojom::Event::kWindowVisibilityChanged: |
| return "windowVisibilityChanged"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Role role) { |
| switch (role) { |
| case ax::mojom::Role::kNone: |
| return "none"; |
| case ax::mojom::Role::kAbbr: |
| return "abbr"; |
| case ax::mojom::Role::kAlertDialog: |
| return "alertDialog"; |
| case ax::mojom::Role::kAlert: |
| return "alert"; |
| case ax::mojom::Role::kApplication: |
| return "application"; |
| case ax::mojom::Role::kArticle: |
| return "article"; |
| case ax::mojom::Role::kAudio: |
| return "audio"; |
| case ax::mojom::Role::kBanner: |
| return "banner"; |
| case ax::mojom::Role::kBlockquote: |
| return "blockquote"; |
| case ax::mojom::Role::kButton: |
| return "button"; |
| case ax::mojom::Role::kCanvas: |
| return "canvas"; |
| case ax::mojom::Role::kCaption: |
| return "caption"; |
| case ax::mojom::Role::kCaret: |
| return "caret"; |
| case ax::mojom::Role::kCell: |
| return "cell"; |
| case ax::mojom::Role::kCheckBox: |
| return "checkBox"; |
| case ax::mojom::Role::kClient: |
| return "client"; |
| case ax::mojom::Role::kCode: |
| return "code"; |
| case ax::mojom::Role::kColorWell: |
| return "colorWell"; |
| case ax::mojom::Role::kColumnHeader: |
| return "columnHeader"; |
| case ax::mojom::Role::kColumn: |
| return "column"; |
| case ax::mojom::Role::kComboBoxGrouping: |
| return "comboBoxGrouping"; |
| case ax::mojom::Role::kComboBoxMenuButton: |
| return "comboBoxMenuButton"; |
| case ax::mojom::Role::kComboBoxSelect: |
| return "comboBoxSelect"; |
| case ax::mojom::Role::kComment: |
| return "comment"; |
| case ax::mojom::Role::kComplementary: |
| return "complementary"; |
| case ax::mojom::Role::kContentDeletion: |
| return "contentDeletion"; |
| case ax::mojom::Role::kContentInsertion: |
| return "contentInsertion"; |
| case ax::mojom::Role::kContentInfo: |
| return "contentInfo"; |
| case ax::mojom::Role::kDate: |
| return "date"; |
| case ax::mojom::Role::kDateTime: |
| return "dateTime"; |
| case ax::mojom::Role::kDefinition: |
| return "definition"; |
| case ax::mojom::Role::kDescriptionListDetail: |
| return "descriptionListDetail"; |
| case ax::mojom::Role::kDescriptionList: |
| return "descriptionList"; |
| case ax::mojom::Role::kDescriptionListTerm: |
| return "descriptionListTerm"; |
| case ax::mojom::Role::kDesktop: |
| return "desktop"; |
| case ax::mojom::Role::kDetails: |
| return "details"; |
| case ax::mojom::Role::kDialog: |
| return "dialog"; |
| case ax::mojom::Role::kDirectory: |
| return "directory"; |
| case ax::mojom::Role::kDisclosureTriangle: |
| return "disclosureTriangle"; |
| case ax::mojom::Role::kDocAbstract: |
| return "docAbstract"; |
| case ax::mojom::Role::kDocAcknowledgments: |
| return "docAcknowledgments"; |
| case ax::mojom::Role::kDocAfterword: |
| return "docAfterword"; |
| case ax::mojom::Role::kDocAppendix: |
| return "docAppendix"; |
| case ax::mojom::Role::kDocBackLink: |
| return "docBackLink"; |
| case ax::mojom::Role::kDocBiblioEntry: |
| return "docBiblioEntry"; |
| case ax::mojom::Role::kDocBibliography: |
| return "docBibliography"; |
| case ax::mojom::Role::kDocBiblioRef: |
| return "docBiblioRef"; |
| case ax::mojom::Role::kDocChapter: |
| return "docChapter"; |
| case ax::mojom::Role::kDocColophon: |
| return "docColophon"; |
| case ax::mojom::Role::kDocConclusion: |
| return "docConclusion"; |
| case ax::mojom::Role::kDocCover: |
| return "docCover"; |
| case ax::mojom::Role::kDocCredit: |
| return "docCredit"; |
| case ax::mojom::Role::kDocCredits: |
| return "docCredits"; |
| case ax::mojom::Role::kDocDedication: |
| return "docDedication"; |
| case ax::mojom::Role::kDocEndnote: |
| return "docEndnote"; |
| case ax::mojom::Role::kDocEndnotes: |
| return "docEndnotes"; |
| case ax::mojom::Role::kDocEpigraph: |
| return "docEpigraph"; |
| case ax::mojom::Role::kDocEpilogue: |
| return "docEpilogue"; |
| case ax::mojom::Role::kDocErrata: |
| return "docErrata"; |
| case ax::mojom::Role::kDocExample: |
| return "docExample"; |
| case ax::mojom::Role::kDocFootnote: |
| return "docFootnote"; |
| case ax::mojom::Role::kDocForeword: |
| return "docForeword"; |
| case ax::mojom::Role::kDocGlossary: |
| return "docGlossary"; |
| case ax::mojom::Role::kDocGlossRef: |
| return "docGlossref"; |
| case ax::mojom::Role::kDocIndex: |
| return "docIndex"; |
| case ax::mojom::Role::kDocIntroduction: |
| return "docIntroduction"; |
| case ax::mojom::Role::kDocNoteRef: |
| return "docNoteRef"; |
| case ax::mojom::Role::kDocNotice: |
| return "docNotice"; |
| case ax::mojom::Role::kDocPageBreak: |
| return "docPageBreak"; |
| case ax::mojom::Role::kDocPageFooter: |
| return "docPageFooter"; |
| case ax::mojom::Role::kDocPageHeader: |
| return "docPageHeader"; |
| case ax::mojom::Role::kDocPageList: |
| return "docPageList"; |
| case ax::mojom::Role::kDocPart: |
| return "docPart"; |
| case ax::mojom::Role::kDocPreface: |
| return "docPreface"; |
| case ax::mojom::Role::kDocPrologue: |
| return "docPrologue"; |
| case ax::mojom::Role::kDocPullquote: |
| return "docPullquote"; |
| case ax::mojom::Role::kDocQna: |
| return "docQna"; |
| case ax::mojom::Role::kDocSubtitle: |
| return "docSubtitle"; |
| case ax::mojom::Role::kDocTip: |
| return "docTip"; |
| case ax::mojom::Role::kDocToc: |
| return "docToc"; |
| case ax::mojom::Role::kDocument: |
| return "document"; |
| case ax::mojom::Role::kEmbeddedObject: |
| return "embeddedObject"; |
| case ax::mojom::Role::kEmphasis: |
| return "emphasis"; |
| case ax::mojom::Role::kFeed: |
| return "feed"; |
| case ax::mojom::Role::kFigcaption: |
| return "figcaption"; |
| case ax::mojom::Role::kFigure: |
| return "figure"; |
| case ax::mojom::Role::kFooter: |
| return "footer"; |
| case ax::mojom::Role::kFooterAsNonLandmark: |
| return "footerAsNonLandmark"; |
| case ax::mojom::Role::kForm: |
| return "form"; |
| case ax::mojom::Role::kGenericContainer: |
| return "genericContainer"; |
| case ax::mojom::Role::kGraphicsDocument: |
| return "graphicsDocument"; |
| case ax::mojom::Role::kGraphicsObject: |
| return "graphicsObject"; |
| case ax::mojom::Role::kGraphicsSymbol: |
| return "graphicsSymbol"; |
| case ax::mojom::Role::kGrid: |
| return "grid"; |
| case ax::mojom::Role::kGroup: |
| return "group"; |
| case ax::mojom::Role::kHeader: |
| return "header"; |
| case ax::mojom::Role::kHeaderAsNonLandmark: |
| return "headerAsNonLandmark"; |
| case ax::mojom::Role::kHeading: |
| return "heading"; |
| case ax::mojom::Role::kIframe: |
| return "iframe"; |
| case ax::mojom::Role::kIframePresentational: |
| return "iframePresentational"; |
| case ax::mojom::Role::kImage: |
| return "image"; |
| case ax::mojom::Role::kImeCandidate: |
| return "imeCandidate"; |
| case ax::mojom::Role::kInlineTextBox: |
| return "inlineTextBox"; |
| case ax::mojom::Role::kInputTime: |
| return "inputTime"; |
| case ax::mojom::Role::kKeyboard: |
| return "keyboard"; |
| case ax::mojom::Role::kLabelText: |
| return "labelText"; |
| case ax::mojom::Role::kLayoutTable: |
| return "layoutTable"; |
| case ax::mojom::Role::kLayoutTableCell: |
| return "layoutTableCell"; |
| case ax::mojom::Role::kLayoutTableRow: |
| return "layoutTableRow"; |
| case ax::mojom::Role::kLegend: |
| return "legend"; |
| case ax::mojom::Role::kLineBreak: |
| return "lineBreak"; |
| case ax::mojom::Role::kLink: |
| return "link"; |
| case ax::mojom::Role::kList: |
| return "list"; |
| case ax::mojom::Role::kListBoxOption: |
| return "listBoxOption"; |
| case ax::mojom::Role::kListBox: |
| return "listBox"; |
| case ax::mojom::Role::kListGrid: |
| return "listGrid"; |
| case ax::mojom::Role::kListItem: |
| return "listItem"; |
| case ax::mojom::Role::kListMarker: |
| return "listMarker"; |
| case ax::mojom::Role::kLog: |
| return "log"; |
| case ax::mojom::Role::kMain: |
| return "main"; |
| case ax::mojom::Role::kMark: |
| return "mark"; |
| case ax::mojom::Role::kMarquee: |
| return "marquee"; |
| case ax::mojom::Role::kMath: |
| return "math"; |
| case ax::mojom::Role::kMathMLFraction: |
| return "mathMLFraction"; |
| case ax::mojom::Role::kMathMLIdentifier: |
| return "mathMLIdentifier"; |
| case ax::mojom::Role::kMathMLMath: |
| return "mathMLMath"; |
| case ax::mojom::Role::kMathMLMultiscripts: |
| return "mathMLMultiscripts"; |
| case ax::mojom::Role::kMathMLNoneScript: |
| return "mathMLNoneScript"; |
| case ax::mojom::Role::kMathMLNumber: |
| return "mathMLNumber"; |
| case ax::mojom::Role::kMathMLOperator: |
| return "mathMLOperator"; |
| case ax::mojom::Role::kMathMLOver: |
| return "mathMLOver"; |
| case ax::mojom::Role::kMathMLPrescriptDelimiter: |
| return "mathMLPrescriptDelimiter"; |
| case ax::mojom::Role::kMathMLRoot: |
| return "mathMLRoot"; |
| case ax::mojom::Role::kMathMLRow: |
| return "mathMLRow"; |
| case ax::mojom::Role::kMathMLSquareRoot: |
| return "mathMLSquareRoot"; |
| case ax::mojom::Role::kMathMLStringLiteral: |
| return "mathMLStringLiteral"; |
| case ax::mojom::Role::kMathMLSub: |
| return "mathMLSub"; |
| case ax::mojom::Role::kMathMLSubSup: |
| return "mathMLSubSup"; |
| case ax::mojom::Role::kMathMLSup: |
| return "mathMLSup"; |
| case ax::mojom::Role::kMathMLTable: |
| return "mathMLTable"; |
| case ax::mojom::Role::kMathMLTableCell: |
| return "mathMLTableCell"; |
| case ax::mojom::Role::kMathMLTableRow: |
| return "mathMLTableRow"; |
| case ax::mojom::Role::kMathMLText: |
| return "mathMLText"; |
| case ax::mojom::Role::kMathMLUnder: |
| return "mathMLUnder"; |
| case ax::mojom::Role::kMathMLUnderOver: |
| return "mathMLUnderOver"; |
| case ax::mojom::Role::kMenu: |
| return "menu"; |
| case ax::mojom::Role::kMenuBar: |
| return "menuBar"; |
| case ax::mojom::Role::kMenuItem: |
| return "menuItem"; |
| case ax::mojom::Role::kMenuItemCheckBox: |
| return "menuItemCheckBox"; |
| case ax::mojom::Role::kMenuItemRadio: |
| return "menuItemRadio"; |
| case ax::mojom::Role::kMenuListOption: |
| return "menuListOption"; |
| case ax::mojom::Role::kMenuListPopup: |
| return "menuListPopup"; |
| case ax::mojom::Role::kMeter: |
| return "meter"; |
| case ax::mojom::Role::kNavigation: |
| return "navigation"; |
| case ax::mojom::Role::kNote: |
| return "note"; |
| case ax::mojom::Role::kPane: |
| return "pane"; |
| case ax::mojom::Role::kParagraph: |
| return "paragraph"; |
| case ax::mojom::Role::kPdfActionableHighlight: |
| return "pdfActionableHighlight"; |
| case ax::mojom::Role::kPdfRoot: |
| return "pdfRoot"; |
| case ax::mojom::Role::kPluginObject: |
| return "pluginObject"; |
| case ax::mojom::Role::kPopUpButton: |
| return "popUpButton"; |
| case ax::mojom::Role::kPortal: |
| return "portal"; |
| case ax::mojom::Role::kPre: |
| return "pre"; |
| case ax::mojom::Role::kProgressIndicator: |
| return "progressIndicator"; |
| case ax::mojom::Role::kRadioButton: |
| return "radioButton"; |
| case ax::mojom::Role::kRadioGroup: |
| return "radioGroup"; |
| case ax::mojom::Role::kRegion: |
| return "region"; |
| case ax::mojom::Role::kRootWebArea: |
| return "rootWebArea"; |
| case ax::mojom::Role::kRow: |
| return "row"; |
| case ax::mojom::Role::kRowGroup: |
| return "rowGroup"; |
| case ax::mojom::Role::kRowHeader: |
| return "rowHeader"; |
| case ax::mojom::Role::kRuby: |
| return "ruby"; |
| case ax::mojom::Role::kRubyAnnotation: |
| return "rubyAnnotation"; |
| case ax::mojom::Role::kSection: |
| return "section"; |
| case ax::mojom::Role::kStrong: |
| return "strong"; |
| case ax::mojom::Role::kSubscript: |
| return "subscript"; |
| case ax::mojom::Role::kSuggestion: |
| return "suggestion"; |
| case ax::mojom::Role::kSuperscript: |
| return "superscript"; |
| case ax::mojom::Role::kSvgRoot: |
| return "svgRoot"; |
| case ax::mojom::Role::kScrollBar: |
| return "scrollBar"; |
| case ax::mojom::Role::kScrollView: |
| return "scrollView"; |
| case ax::mojom::Role::kSearch: |
| return "search"; |
| case ax::mojom::Role::kSearchBox: |
| return "searchBox"; |
| case ax::mojom::Role::kSlider: |
| return "slider"; |
| case ax::mojom::Role::kSpinButton: |
| return "spinButton"; |
| case ax::mojom::Role::kSplitter: |
| return "splitter"; |
| case ax::mojom::Role::kStaticText: |
| return "staticText"; |
| case ax::mojom::Role::kStatus: |
| return "status"; |
| case ax::mojom::Role::kSwitch: |
| return "switch"; |
| case ax::mojom::Role::kTabList: |
| return "tabList"; |
| case ax::mojom::Role::kTabPanel: |
| return "tabPanel"; |
| case ax::mojom::Role::kTab: |
| return "tab"; |
| case ax::mojom::Role::kTable: |
| return "table"; |
| case ax::mojom::Role::kTableHeaderContainer: |
| return "tableHeaderContainer"; |
| case ax::mojom::Role::kTerm: |
| return "term"; |
| case ax::mojom::Role::kTextField: |
| return "textField"; |
| case ax::mojom::Role::kTextFieldWithComboBox: |
| return "textFieldWithComboBox"; |
| case ax::mojom::Role::kTime: |
| return "time"; |
| case ax::mojom::Role::kTimer: |
| return "timer"; |
| case ax::mojom::Role::kTitleBar: |
| return "titleBar"; |
| case ax::mojom::Role::kToggleButton: |
| return "toggleButton"; |
| case ax::mojom::Role::kToolbar: |
| return "toolbar"; |
| case ax::mojom::Role::kTreeGrid: |
| return "treeGrid"; |
| case ax::mojom::Role::kTreeItem: |
| return "treeItem"; |
| case ax::mojom::Role::kTree: |
| return "tree"; |
| case ax::mojom::Role::kUnknown: |
| return "unknown"; |
| case ax::mojom::Role::kTooltip: |
| return "tooltip"; |
| case ax::mojom::Role::kVideo: |
| return "video"; |
| case ax::mojom::Role::kWebView: |
| return "webView"; |
| case ax::mojom::Role::kWindow: |
| return "window"; |
| } |
| |
| return ""; |
| } |
| |
| ax::mojom::Role StringToRole(const std::string& role) { |
| if (role == "kNone") { |
| return ax::mojom::Role::kNone; |
| } else if (role == "kAbbr") { |
| return ax::mojom::Role::kAbbr; |
| } else if (role == "kAlertDialog") { |
| return ax::mojom::Role::kAlertDialog; |
| } else if (role == "kAlert") { |
| return ax::mojom::Role::kAlert; |
| } else if (role == "kApplication") { |
| return ax::mojom::Role::kApplication; |
| } else if (role == "kArticle") { |
| return ax::mojom::Role::kArticle; |
| } else if (role == "kAudio") { |
| return ax::mojom::Role::kAudio; |
| } else if (role == "kBanner") { |
| return ax::mojom::Role::kBanner; |
| } else if (role == "kBlockquote") { |
| return ax::mojom::Role::kBlockquote; |
| } else if (role == "kButton") { |
| return ax::mojom::Role::kButton; |
| } else if (role == "kCanvas") { |
| return ax::mojom::Role::kCanvas; |
| } else if (role == "kCaption") { |
| return ax::mojom::Role::kCaption; |
| } else if (role == "kCaret") { |
| return ax::mojom::Role::kCaret; |
| } else if (role == "kCell") { |
| return ax::mojom::Role::kCell; |
| } else if (role == "kCheckBox") { |
| return ax::mojom::Role::kCheckBox; |
| } else if (role == "kClient") { |
| return ax::mojom::Role::kClient; |
| } else if (role == "kCode") { |
| return ax::mojom::Role::kCode; |
| } else if (role == "kColorWell") { |
| return ax::mojom::Role::kColorWell; |
| } else if (role == "kColumnHeader") { |
| return ax::mojom::Role::kColumnHeader; |
| } else if (role == "kColumn") { |
| return ax::mojom::Role::kColumn; |
| } else if (role == "kComboBoxGrouping") { |
| return ax::mojom::Role::kComboBoxGrouping; |
| } else if (role == "kComboBoxMenuButton") { |
| return ax::mojom::Role::kComboBoxMenuButton; |
| } else if (role == "kComboBoxSelect") { |
| return ax::mojom::Role::kComboBoxSelect; |
| } else if (role == "kComment") { |
| return ax::mojom::Role::kComment; |
| } else if (role == "kComplementary") { |
| return ax::mojom::Role::kComplementary; |
| } else if (role == "kContentDeletion") { |
| return ax::mojom::Role::kContentDeletion; |
| } else if (role == "kContentInsertion") { |
| return ax::mojom::Role::kContentInsertion; |
| } else if (role == "kContentInfo") { |
| return ax::mojom::Role::kContentInfo; |
| } else if (role == "kDate") { |
| return ax::mojom::Role::kDate; |
| } else if (role == "kDateTime") { |
| return ax::mojom::Role::kDateTime; |
| } else if (role == "kDefinition") { |
| return ax::mojom::Role::kDefinition; |
| } else if (role == "kDescriptionListDetail") { |
| return ax::mojom::Role::kDescriptionListDetail; |
| } else if (role == "kDescriptionList") { |
| return ax::mojom::Role::kDescriptionList; |
| } else if (role == "kDescriptionListTerm") { |
| return ax::mojom::Role::kDescriptionListTerm; |
| } else if (role == "kDesktop") { |
| return ax::mojom::Role::kDesktop; |
| } else if (role == "kDetails") { |
| return ax::mojom::Role::kDetails; |
| } else if (role == "kDialog") { |
| return ax::mojom::Role::kDialog; |
| } else if (role == "kDirectory") { |
| return ax::mojom::Role::kDirectory; |
| } else if (role == "kDisclosureTriangle") { |
| return ax::mojom::Role::kDisclosureTriangle; |
| } else if (role == "kDocAbstract") { |
| return ax::mojom::Role::kDocAbstract; |
| } else if (role == "kDocAcknowledgments") { |
| return ax::mojom::Role::kDocAcknowledgments; |
| } else if (role == "kDocAfterword") { |
| return ax::mojom::Role::kDocAfterword; |
| } else if (role == "kDocAppendix") { |
| return ax::mojom::Role::kDocAppendix; |
| } else if (role == "kDocBackLink") { |
| return ax::mojom::Role::kDocBackLink; |
| } else if (role == "kDocBiblioEntry") { |
| return ax::mojom::Role::kDocBiblioEntry; |
| } else if (role == "kDocBibliography") { |
| return ax::mojom::Role::kDocBibliography; |
| } else if (role == "kDocBiblioRef") { |
| return ax::mojom::Role::kDocBiblioRef; |
| } else if (role == "kDocChapter") { |
| return ax::mojom::Role::kDocChapter; |
| } else if (role == "kDocColophon") { |
| return ax::mojom::Role::kDocColophon; |
| } else if (role == "kDocConclusion") { |
| return ax::mojom::Role::kDocConclusion; |
| } else if (role == "kDocCover") { |
| return ax::mojom::Role::kDocCover; |
| } else if (role == "kDocCredit") { |
| return ax::mojom::Role::kDocCredit; |
| } else if (role == "kDocCredits") { |
| return ax::mojom::Role::kDocCredits; |
| } else if (role == "kDocDedication") { |
| return ax::mojom::Role::kDocDedication; |
| } else if (role == "kDocEndnote") { |
| return ax::mojom::Role::kDocEndnote; |
| } else if (role == "kDocEndnotes") { |
| return ax::mojom::Role::kDocEndnotes; |
| } else if (role == "kDocEpigraph") { |
| return ax::mojom::Role::kDocEpigraph; |
| } else if (role == "kDocEpilogue") { |
| return ax::mojom::Role::kDocEpilogue; |
| } else if (role == "kDocErrata") { |
| return ax::mojom::Role::kDocErrata; |
| } else if (role == "kDocExample") { |
| return ax::mojom::Role::kDocExample; |
| } else if (role == "kDocFootnote") { |
| return ax::mojom::Role::kDocFootnote; |
| } else if (role == "kDocForeword") { |
| return ax::mojom::Role::kDocForeword; |
| } else if (role == "kDocGlossary") { |
| return ax::mojom::Role::kDocGlossary; |
| } else if (role == "kDocGlossRef") { |
| return ax::mojom::Role::kDocGlossRef; |
| } else if (role == "kDocIndex") { |
| return ax::mojom::Role::kDocIndex; |
| } else if (role == "kDocIntroduction") { |
| return ax::mojom::Role::kDocIntroduction; |
| } else if (role == "kDocNoteRef") { |
| return ax::mojom::Role::kDocNoteRef; |
| } else if (role == "kDocNotice") { |
| return ax::mojom::Role::kDocNotice; |
| } else if (role == "kDocPageBreak") { |
| return ax::mojom::Role::kDocPageBreak; |
| } else if (role == "kDocPageFooter") { |
| return ax::mojom::Role::kDocPageFooter; |
| } else if (role == "kDocPageHeader") { |
| return ax::mojom::Role::kDocPageHeader; |
| } else if (role == "kDocPageList") { |
| return ax::mojom::Role::kDocPageList; |
| } else if (role == "kDocPart") { |
| return ax::mojom::Role::kDocPart; |
| } else if (role == "kDocPreface") { |
| return ax::mojom::Role::kDocPreface; |
| } else if (role == "kDocPrologue") { |
| return ax::mojom::Role::kDocPrologue; |
| } else if (role == "kDocPullquote") { |
| return ax::mojom::Role::kDocPullquote; |
| } else if (role == "kDocQna") { |
| return ax::mojom::Role::kDocQna; |
| } else if (role == "kDocSubtitle") { |
| return ax::mojom::Role::kDocSubtitle; |
| } else if (role == "kDocTip") { |
| return ax::mojom::Role::kDocTip; |
| } else if (role == "kDocToc") { |
| return ax::mojom::Role::kDocToc; |
| } else if (role == "kDocument") { |
| return ax::mojom::Role::kDocument; |
| } else if (role == "kEmbeddedObject") { |
| return ax::mojom::Role::kEmbeddedObject; |
| } else if (role == "kEmphasis") { |
| return ax::mojom::Role::kEmphasis; |
| } else if (role == "kFeed") { |
| return ax::mojom::Role::kFeed; |
| } else if (role == "kFigcaption") { |
| return ax::mojom::Role::kFigcaption; |
| } else if (role == "kFigure") { |
| return ax::mojom::Role::kFigure; |
| } else if (role == "kFooter") { |
| return ax::mojom::Role::kFooter; |
| } else if (role == "kFooterAsNonLandmark") { |
| return ax::mojom::Role::kFooterAsNonLandmark; |
| } else if (role == "kForm") { |
| return ax::mojom::Role::kForm; |
| } else if (role == "kGenericContainer") { |
| return ax::mojom::Role::kGenericContainer; |
| } else if (role == "kGraphicsDocument") { |
| return ax::mojom::Role::kGraphicsDocument; |
| } else if (role == "kGraphicsObject") { |
| return ax::mojom::Role::kGraphicsObject; |
| } else if (role == "kGraphicsSymbol") { |
| return ax::mojom::Role::kGraphicsSymbol; |
| } else if (role == "kGrid") { |
| return ax::mojom::Role::kGrid; |
| } else if (role == "kGroup") { |
| return ax::mojom::Role::kGroup; |
| } else if (role == "kHeader") { |
| return ax::mojom::Role::kHeader; |
| } else if (role == "kHeaderAsNonLandmark") { |
| return ax::mojom::Role::kHeaderAsNonLandmark; |
| } else if (role == "kHeading") { |
| return ax::mojom::Role::kHeading; |
| } else if (role == "kIframe") { |
| return ax::mojom::Role::kIframe; |
| } else if (role == "kIframePresentational") { |
| return ax::mojom::Role::kIframePresentational; |
| } else if (role == "kImage") { |
| return ax::mojom::Role::kImage; |
| } else if (role == "kImeCandidate") { |
| return ax::mojom::Role::kImeCandidate; |
| } else if (role == "kInlineTextBox") { |
| return ax::mojom::Role::kInlineTextBox; |
| } else if (role == "kInputTime") { |
| return ax::mojom::Role::kInputTime; |
| } else if (role == "kKeyboard") { |
| return ax::mojom::Role::kKeyboard; |
| } else if (role == "kLabelText") { |
| return ax::mojom::Role::kLabelText; |
| } else if (role == "kLayoutTable") { |
| return ax::mojom::Role::kLayoutTable; |
| } else if (role == "kLayoutTableCell") { |
| return ax::mojom::Role::kLayoutTableCell; |
| } else if (role == "kLayoutTableRow") { |
| return ax::mojom::Role::kLayoutTableRow; |
| } else if (role == "kLegend") { |
| return ax::mojom::Role::kLegend; |
| } else if (role == "kLineBreak") { |
| return ax::mojom::Role::kLineBreak; |
| } else if (role == "kLink") { |
| return ax::mojom::Role::kLink; |
| } else if (role == "kList") { |
| return ax::mojom::Role::kList; |
| } else if (role == "kListBoxOption") { |
| return ax::mojom::Role::kListBoxOption; |
| } else if (role == "kListBox") { |
| return ax::mojom::Role::kListBox; |
| } else if (role == "kListGrid") { |
| return ax::mojom::Role::kListGrid; |
| } else if (role == "kListItem") { |
| return ax::mojom::Role::kListItem; |
| } else if (role == "kListMarker") { |
| return ax::mojom::Role::kListMarker; |
| } else if (role == "kLog") { |
| return ax::mojom::Role::kLog; |
| } else if (role == "kMain") { |
| return ax::mojom::Role::kMain; |
| } else if (role == "kMark") { |
| return ax::mojom::Role::kMark; |
| } else if (role == "kMarquee") { |
| return ax::mojom::Role::kMarquee; |
| } else if (role == "kMath") { |
| return ax::mojom::Role::kMath; |
| } else if (role == "kMathMLFraction") { |
| return ax::mojom::Role::kMathMLFraction; |
| } else if (role == "kMathMLIdentifier") { |
| return ax::mojom::Role::kMathMLIdentifier; |
| } else if (role == "kMathMLMath") { |
| return ax::mojom::Role::kMathMLMath; |
| } else if (role == "kMathMLMultiscripts") { |
| return ax::mojom::Role::kMathMLMultiscripts; |
| } else if (role == "kMathMLNoneScript") { |
| return ax::mojom::Role::kMathMLNoneScript; |
| } else if (role == "kMathMLNumber") { |
| return ax::mojom::Role::kMathMLNumber; |
| } else if (role == "kMathMLOperator") { |
| return ax::mojom::Role::kMathMLOperator; |
| } else if (role == "kMathMLOver") { |
| return ax::mojom::Role::kMathMLOver; |
| } else if (role == "kMathMLPrescriptDelimiter") { |
| return ax::mojom::Role::kMathMLPrescriptDelimiter; |
| } else if (role == "kMathMLRoot") { |
| return ax::mojom::Role::kMathMLRoot; |
| } else if (role == "kMathMLRow") { |
| return ax::mojom::Role::kMathMLRow; |
| } else if (role == "kMathMLSquareRoot") { |
| return ax::mojom::Role::kMathMLSquareRoot; |
| } else if (role == "kMathMLStringLiteral") { |
| return ax::mojom::Role::kMathMLStringLiteral; |
| } else if (role == "kMathMLSub") { |
| return ax::mojom::Role::kMathMLSub; |
| } else if (role == "kMathMLSubSup") { |
| return ax::mojom::Role::kMathMLSubSup; |
| } else if (role == "kMathMLSup") { |
| return ax::mojom::Role::kMathMLSup; |
| } else if (role == "kMathMLTable") { |
| return ax::mojom::Role::kMathMLTable; |
| } else if (role == "kMathMLTableCell") { |
| return ax::mojom::Role::kMathMLTableCell; |
| } else if (role == "kMathMLTableRow") { |
| return ax::mojom::Role::kMathMLTableRow; |
| } else if (role == "kMathMLText") { |
| return ax::mojom::Role::kMathMLText; |
| } else if (role == "kMathMLUnder") { |
| return ax::mojom::Role::kMathMLUnder; |
| } else if (role == "kMathMLUnderOver") { |
| return ax::mojom::Role::kMathMLUnderOver; |
| } else if (role == "kMenu") { |
| return ax::mojom::Role::kMenu; |
| } else if (role == "kMenuBar") { |
| return ax::mojom::Role::kMenuBar; |
| } else if (role == "kMenuItem") { |
| return ax::mojom::Role::kMenuItem; |
| } else if (role == "kMenuItemCheckBox") { |
| return ax::mojom::Role::kMenuItemCheckBox; |
| } else if (role == "kMenuItemRadio") { |
| return ax::mojom::Role::kMenuItemRadio; |
| } else if (role == "kMenuListOption") { |
| return ax::mojom::Role::kMenuListOption; |
| } else if (role == "kMenuListPopup") { |
| return ax::mojom::Role::kMenuListPopup; |
| } else if (role == "kMeter") { |
| return ax::mojom::Role::kMeter; |
| } else if (role == "kNavigation") { |
| return ax::mojom::Role::kNavigation; |
| } else if (role == "kNote") { |
| return ax::mojom::Role::kNote; |
| } else if (role == "kPane") { |
| return ax::mojom::Role::kPane; |
| } else if (role == "kParagraph") { |
| return ax::mojom::Role::kParagraph; |
| } else if (role == "kPdfActionableHighlight") { |
| return ax::mojom::Role::kPdfActionableHighlight; |
| } else if (role == "kPdfRoot") { |
| return ax::mojom::Role::kPdfRoot; |
| } else if (role == "kPluginObject") { |
| return ax::mojom::Role::kPluginObject; |
| } else if (role == "kPopUpButton") { |
| return ax::mojom::Role::kPopUpButton; |
| } else if (role == "kPortal") { |
| return ax::mojom::Role::kPortal; |
| } else if (role == "kPre") { |
| return ax::mojom::Role::kPre; |
| } else if (role == "kProgressIndicator") { |
| return ax::mojom::Role::kProgressIndicator; |
| } else if (role == "kRadioButton") { |
| return ax::mojom::Role::kRadioButton; |
| } else if (role == "kRadioGroup") { |
| return ax::mojom::Role::kRadioGroup; |
| } else if (role == "kRegion") { |
| return ax::mojom::Role::kRegion; |
| } else if (role == "kRootWebArea") { |
| return ax::mojom::Role::kRootWebArea; |
| } else if (role == "kRow") { |
| return ax::mojom::Role::kRow; |
| } else if (role == "kRowGroup") { |
| return ax::mojom::Role::kRowGroup; |
| } else if (role == "kRowHeader") { |
| return ax::mojom::Role::kRowHeader; |
| } else if (role == "kRuby") { |
| return ax::mojom::Role::kRuby; |
| } else if (role == "kRubyAnnotation") { |
| return ax::mojom::Role::kRubyAnnotation; |
| } else if (role == "kSection") { |
| return ax::mojom::Role::kSection; |
| } else if (role == "kStrong") { |
| return ax::mojom::Role::kStrong; |
| } else if (role == "kSubscript") { |
| return ax::mojom::Role::kSubscript; |
| } else if (role == "kSuggestion") { |
| return ax::mojom::Role::kSuggestion; |
| } else if (role == "kSuperscript") { |
| return ax::mojom::Role::kSuperscript; |
| } else if (role == "kSvgRoot") { |
| return ax::mojom::Role::kSvgRoot; |
| } else if (role == "kScrollBar") { |
| return ax::mojom::Role::kScrollBar; |
| } else if (role == "kScrollView") { |
| return ax::mojom::Role::kScrollView; |
| } else if (role == "kSearch") { |
| return ax::mojom::Role::kSearch; |
| } else if (role == "kSearchBox") { |
| return ax::mojom::Role::kSearchBox; |
| } else if (role == "kSlider") { |
| return ax::mojom::Role::kSlider; |
| } else if (role == "kSpinButton") { |
| return ax::mojom::Role::kSpinButton; |
| } else if (role == "kSplitter") { |
| return ax::mojom::Role::kSplitter; |
| } else if (role == "kStaticText") { |
| return ax::mojom::Role::kStaticText; |
| } else if (role == "kStatus") { |
| return ax::mojom::Role::kStatus; |
| } else if (role == "kSwitch") { |
| return ax::mojom::Role::kSwitch; |
| } else if (role == "kTabList") { |
| return ax::mojom::Role::kTabList; |
| } else if (role == "kTabPanel") { |
| return ax::mojom::Role::kTabPanel; |
| } else if (role == "kTab") { |
| return ax::mojom::Role::kTab; |
| } else if (role == "kTable") { |
| return ax::mojom::Role::kTable; |
| } else if (role == "kTableHeaderContainer") { |
| return ax::mojom::Role::kTableHeaderContainer; |
| } else if (role == "kTerm") { |
| return ax::mojom::Role::kTerm; |
| } else if (role == "kTextField") { |
| return ax::mojom::Role::kTextField; |
| } else if (role == "kTextFieldWithComboBox") { |
| return ax::mojom::Role::kTextFieldWithComboBox; |
| } else if (role == "kTime") { |
| return ax::mojom::Role::kTime; |
| } else if (role == "kTimer") { |
| return ax::mojom::Role::kTimer; |
| } else if (role == "kTitleBar") { |
| return ax::mojom::Role::kTitleBar; |
| } else if (role == "kToggleButton") { |
| return ax::mojom::Role::kToggleButton; |
| } else if (role == "kToolbar") { |
| return ax::mojom::Role::kToolbar; |
| } else if (role == "kTreeGrid") { |
| return ax::mojom::Role::kTreeGrid; |
| } else if (role == "kTreeItem") { |
| return ax::mojom::Role::kTreeItem; |
| } else if (role == "kTree") { |
| return ax::mojom::Role::kTree; |
| } else if (role == "kUnknown") { |
| return ax::mojom::Role::kUnknown; |
| } else if (role == "kTooltip") { |
| return ax::mojom::Role::kTooltip; |
| } else if (role == "kVideo") { |
| return ax::mojom::Role::kVideo; |
| } else if (role == "kWebView") { |
| return ax::mojom::Role::kWebView; |
| } else if (role == "kWindow") { |
| return ax::mojom::Role::kWindow; |
| } |
| |
| // We should never pass in an invalid role. |
| NOTREACHED() << "Invalid role was provided: " << role; |
| return ax::mojom::Role::kUnknown; |
| } |
| |
| const char* ToString(ax::mojom::State state) { |
| switch (state) { |
| case ax::mojom::State::kNone: |
| return "none"; |
| case ax::mojom::State::kAutofillAvailable: |
| return "autofillAvailable"; |
| case ax::mojom::State::kCollapsed: |
| return "collapsed"; |
| case ax::mojom::State::kDefault: |
| return "default"; |
| case ax::mojom::State::kEditable: |
| return "editable"; |
| case ax::mojom::State::kExpanded: |
| return "expanded"; |
| case ax::mojom::State::kFocusable: |
| return "focusable"; |
| case ax::mojom::State::kHorizontal: |
| return "horizontal"; |
| case ax::mojom::State::kHovered: |
| return "hovered"; |
| case ax::mojom::State::kIgnored: |
| return "ignored"; |
| case ax::mojom::State::kInvisible: |
| return "invisible"; |
| case ax::mojom::State::kLinked: |
| return "linked"; |
| case ax::mojom::State::kMultiline: |
| return "multiline"; |
| case ax::mojom::State::kMultiselectable: |
| return "multiselectable"; |
| case ax::mojom::State::kProtected: |
| return "protected"; |
| case ax::mojom::State::kRequired: |
| return "required"; |
| case ax::mojom::State::kRichlyEditable: |
| return "richlyEditable"; |
| case ax::mojom::State::kVertical: |
| return "vertical"; |
| case ax::mojom::State::kVisited: |
| return "visited"; |
| } |
| |
| return ""; |
| } |
| |
| ax::mojom::State StringToState(const std::string& str) { |
| if (str == "kNone") { |
| return ax::mojom::State::kNone; |
| } else if (str == "kAutofillAvailable") { |
| return ax::mojom::State::kAutofillAvailable; |
| } else if (str == "kCollapsed") { |
| return ax::mojom::State::kCollapsed; |
| } else if (str == "kDefault") { |
| return ax::mojom::State::kDefault; |
| } else if (str == "kEditable") { |
| return ax::mojom::State::kEditable; |
| } else if (str == "kExpanded") { |
| return ax::mojom::State::kExpanded; |
| } else if (str == "kFocusable") { |
| return ax::mojom::State::kFocusable; |
| } else if (str == "kHorizontal") { |
| return ax::mojom::State::kHorizontal; |
| } else if (str == "kHovered") { |
| return ax::mojom::State::kHovered; |
| } else if (str == "kIgnored") { |
| return ax::mojom::State::kIgnored; |
| } else if (str == "kInvisible") { |
| return ax::mojom::State::kInvisible; |
| } else if (str == "kLinked") { |
| return ax::mojom::State::kLinked; |
| } else if (str == "kMultiline") { |
| return ax::mojom::State::kMultiline; |
| } else if (str == "kMultiselectable") { |
| return ax::mojom::State::kMultiselectable; |
| } else if (str == "kProtected") { |
| return ax::mojom::State::kProtected; |
| } else if (str == "kRequired") { |
| return ax::mojom::State::kRequired; |
| } else if (str == "kRichlyEditable") { |
| return ax::mojom::State::kRichlyEditable; |
| } else if (str == "kVertical") { |
| return ax::mojom::State::kVertical; |
| } else if (str == "kVisited") { |
| return ax::mojom::State::kVisited; |
| } |
| |
| // We should never pass in an invalid state. |
| NOTREACHED() << "An invalid state was provided: " << str; |
| return ax::mojom::State::kNone; |
| } |
| |
| const char* ToString(ax::mojom::Action action) { |
| switch (action) { |
| case ax::mojom::Action::kNone: |
| return "none"; |
| case ax::mojom::Action::kBlur: |
| return "blur"; |
| case ax::mojom::Action::kClearAccessibilityFocus: |
| return "clearAccessibilityFocus"; |
| case ax::mojom::Action::kCollapse: |
| return "collapse"; |
| case ax::mojom::Action::kCustomAction: |
| return "customAction"; |
| case ax::mojom::Action::kDecrement: |
| return "decrement"; |
| case ax::mojom::Action::kDoDefault: |
| return "doDefault"; |
| case ax::mojom::Action::kExpand: |
| return "expand"; |
| case ax::mojom::Action::kFocus: |
| return "focus"; |
| case ax::mojom::Action::kGetImageData: |
| return "getImageData"; |
| case ax::mojom::Action::kHitTest: |
| return "hitTest"; |
| case ax::mojom::Action::kIncrement: |
| return "increment"; |
| case ax::mojom::Action::kLoadInlineTextBoxes: |
| return "loadInlineTextBoxes"; |
| case ax::mojom::Action::kReplaceSelectedText: |
| return "replaceSelectedText"; |
| case ax::mojom::Action::kResumeMedia: |
| return "resumeMedia"; |
| case ax::mojom::Action::kScrollBackward: |
| return "scrollBackward"; |
| case ax::mojom::Action::kScrollForward: |
| return "scrollForward"; |
| case ax::mojom::Action::kScrollUp: |
| return "scrollUp"; |
| case ax::mojom::Action::kScrollDown: |
| return "scrollDown"; |
| case ax::mojom::Action::kScrollLeft: |
| return "scrollLeft"; |
| case ax::mojom::Action::kScrollRight: |
| return "scrollRight"; |
| case ax::mojom::Action::kScrollToMakeVisible: |
| return "scrollToMakeVisible"; |
| case ax::mojom::Action::kScrollToPoint: |
| return "scrollToPoint"; |
| case ax::mojom::Action::kScrollToPositionAtRowColumn: |
| return "scrollToPositionAtRowColumn"; |
| case ax::mojom::Action::kSetAccessibilityFocus: |
| return "setAccessibilityFocus"; |
| case ax::mojom::Action::kSetScrollOffset: |
| return "setScrollOffset"; |
| case ax::mojom::Action::kSetSelection: |
| return "setSelection"; |
| case ax::mojom::Action::kSetSequentialFocusNavigationStartingPoint: |
| return "setSequentialFocusNavigationStartingPoint"; |
| case ax::mojom::Action::kSetValue: |
| return "setValue"; |
| case ax::mojom::Action::kShowContextMenu: |
| return "showContextMenu"; |
| case ax::mojom::Action::kGetTextLocation: |
| return "getTextLocation"; |
| case ax::mojom::Action::kAnnotatePageImages: |
| return "annotatePageImages"; |
| case ax::mojom::Action::kSignalEndOfTest: |
| return "signalEndOfTest"; |
| case ax::mojom::Action::kShowTooltip: |
| return "showTooltip"; |
| case ax::mojom::Action::kHideTooltip: |
| return "hideTooltip"; |
| case ax::mojom::Action::kInternalInvalidateTree: |
| return "internalInvalidateTree"; |
| case ax::mojom::Action::kStartDuckingMedia: |
| return "startDuckingMedia"; |
| case ax::mojom::Action::kStopDuckingMedia: |
| return "stopDuckingMedia"; |
| case ax::mojom::Action::kSuspendMedia: |
| return "suspendMedia"; |
| case ax::mojom::Action::kLongClick: |
| return "longClick"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::ActionFlags action_flags) { |
| switch (action_flags) { |
| case ax::mojom::ActionFlags::kNone: |
| return "none"; |
| case ax::mojom::ActionFlags::kRequestImages: |
| return "requestImages"; |
| case ax::mojom::ActionFlags::kRequestInlineTextBoxes: |
| return "requestInlineTextBoxes"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::ScrollAlignment scroll_alignment) { |
| switch (scroll_alignment) { |
| case ax::mojom::ScrollAlignment::kNone: |
| return "none"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentCenter: |
| return "scrollAlignmentCenter"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentTop: |
| return "scrollAlignmentTop"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentBottom: |
| return "scrollAlignmentBottom"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentLeft: |
| return "scrollAlignmentLeft"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentRight: |
| return "scrollAlignmentRight"; |
| case ax::mojom::ScrollAlignment::kScrollAlignmentClosestEdge: |
| return "scrollAlignmentClosestEdge"; |
| } |
| } |
| |
| const char* ToString(ax::mojom::DefaultActionVerb default_action_verb) { |
| switch (default_action_verb) { |
| case ax::mojom::DefaultActionVerb::kNone: |
| return "none"; |
| case ax::mojom::DefaultActionVerb::kActivate: |
| return "activate"; |
| case ax::mojom::DefaultActionVerb::kCheck: |
| return "check"; |
| case ax::mojom::DefaultActionVerb::kClick: |
| return "click"; |
| case ax::mojom::DefaultActionVerb::kClickAncestor: |
| // Some screen readers, such as Jaws, expect the following spelling of |
| // this verb. |
| return "clickAncestor"; |
| case ax::mojom::DefaultActionVerb::kJump: |
| return "jump"; |
| case ax::mojom::DefaultActionVerb::kOpen: |
| return "open"; |
| case ax::mojom::DefaultActionVerb::kPress: |
| return "press"; |
| case ax::mojom::DefaultActionVerb::kSelect: |
| return "select"; |
| case ax::mojom::DefaultActionVerb::kUncheck: |
| return "uncheck"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Mutation mutation) { |
| switch (mutation) { |
| case ax::mojom::Mutation::kNone: |
| return "none"; |
| case ax::mojom::Mutation::kNodeCreated: |
| return "nodeCreated"; |
| case ax::mojom::Mutation::kSubtreeCreated: |
| return "subtreeCreated"; |
| case ax::mojom::Mutation::kNodeChanged: |
| return "nodeChanged"; |
| case ax::mojom::Mutation::kNodeRemoved: |
| return "nodeRemoved"; |
| case ax::mojom::Mutation::kTextChanged: |
| return "textChanged"; |
| case ax::mojom::Mutation::kSubtreeUpdateEnd: |
| return "subtreeUpdateEnd"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::StringAttribute string_attribute) { |
| switch (string_attribute) { |
| case ax::mojom::StringAttribute::kNone: |
| return "none"; |
| case ax::mojom::StringAttribute::kAccessKey: |
| return "accessKey"; |
| case ax::mojom::StringAttribute::kAriaInvalidValue: |
| return "ariaInvalidValue"; |
| case ax::mojom::StringAttribute::kAutoComplete: |
| return "autoComplete"; |
| case ax::mojom::StringAttribute::kAriaBrailleLabel: |
| return "ariaBrailleLabel"; |
| case ax::mojom::StringAttribute::kAriaBrailleRoleDescription: |
| return "ariaBrailleRoleDescription"; |
| case ax::mojom::StringAttribute::kCheckedStateDescription: |
| return "checkedStateDescription"; |
| case ax::mojom::StringAttribute::kChildTreeId: |
| return "childTreeId"; |
| case ax::mojom::StringAttribute::kChildTreeNodeAppId: |
| return "childTreeNodeAppId"; |
| case ax::mojom::StringAttribute::kClassName: |
| return "className"; |
| case ax::mojom::StringAttribute::kContainerLiveRelevant: |
| return "containerLiveRelevant"; |
| case ax::mojom::StringAttribute::kContainerLiveStatus: |
| return "containerLiveStatus"; |
| case ax::mojom::StringAttribute::kDescription: |
| return "description"; |
| case ax::mojom::StringAttribute::kDisplay: |
| return "display"; |
| case ax::mojom::StringAttribute::kDoDefaultLabel: |
| return "doDefaultLabel"; |
| case ax::mojom::StringAttribute::kFontFamily: |
| return "fontFamily"; |
| case ax::mojom::StringAttribute::kHtmlTag: |
| return "htmlTag"; |
| case ax::mojom::StringAttribute::kImageAnnotation: |
| return "imageAnnotation"; |
| case ax::mojom::StringAttribute::kImageDataUrl: |
| return "imageDataUrl"; |
| case ax::mojom::StringAttribute::kInnerHtml: |
| return "innerHtml"; |
| case ax::mojom::StringAttribute::kInputType: |
| return "inputType"; |
| case ax::mojom::StringAttribute::kKeyShortcuts: |
| return "keyShortcuts"; |
| case ax::mojom::StringAttribute::kLanguage: |
| return "language"; |
| case ax::mojom::StringAttribute::kName: |
| return "name"; |
| case ax::mojom::StringAttribute::kLiveRelevant: |
| return "liveRelevant"; |
| case ax::mojom::StringAttribute::kLiveStatus: |
| return "liveStatus"; |
| case ax::mojom::StringAttribute::kAppId: |
| return "appId"; |
| case ax::mojom::StringAttribute::kPlaceholder: |
| return "placeholder"; |
| case ax::mojom::StringAttribute::kRole: |
| return "role"; |
| case ax::mojom::StringAttribute::kRoleDescription: |
| return "roleDescription"; |
| case ax::mojom::StringAttribute::kLongClickLabel: |
| return "longClickLabel"; |
| case ax::mojom::StringAttribute::kTooltip: |
| return "tooltip"; |
| case ax::mojom::StringAttribute::kUrl: |
| return "url"; |
| case ax::mojom::StringAttribute::kValue: |
| return "value"; |
| case ax::mojom::StringAttribute::kVirtualContent: |
| return "virtualContent"; |
| } |
| |
| return ""; |
| } |
| |
| ax::mojom::StringAttribute StringToStringAttribute( |
| const std::string& string_attribute) { |
| if (string_attribute == "kNone") { |
| return ax::mojom::StringAttribute::kNone; |
| } else if (string_attribute == "kAccessKey") { |
| return ax::mojom::StringAttribute::kAccessKey; |
| } else if (string_attribute == "kAriaInvalidValue") { |
| return ax::mojom::StringAttribute::kAriaInvalidValue; |
| } else if (string_attribute == "kAutoComplete") { |
| return ax::mojom::StringAttribute::kAutoComplete; |
| } else if (string_attribute == "kAriaBrailleLabel") { |
| return ax::mojom::StringAttribute::kAriaBrailleLabel; |
| } else if (string_attribute == "kAriaBrailleRoleDescription") { |
| return ax::mojom::StringAttribute::kAriaBrailleRoleDescription; |
| } else if (string_attribute == "kCheckedStateDescription") { |
| return ax::mojom::StringAttribute::kCheckedStateDescription; |
| } else if (string_attribute == "kChildTreeId") { |
| return ax::mojom::StringAttribute::kChildTreeId; |
| } else if (string_attribute == "kChildTreeNodeAppId") { |
| return ax::mojom::StringAttribute::kChildTreeNodeAppId; |
| } else if (string_attribute == "kClassName") { |
| return ax::mojom::StringAttribute::kClassName; |
| } else if (string_attribute == "kContainerLiveRelevant") { |
| return ax::mojom::StringAttribute::kContainerLiveRelevant; |
| } else if (string_attribute == "kContainerLiveStatus") { |
| return ax::mojom::StringAttribute::kContainerLiveStatus; |
| } else if (string_attribute == "kDescription") { |
| return ax::mojom::StringAttribute::kDescription; |
| } else if (string_attribute == "kDisplay") { |
| return ax::mojom::StringAttribute::kDisplay; |
| } else if (string_attribute == "kDoDefaultLabel") { |
| return ax::mojom::StringAttribute::kDoDefaultLabel; |
| } else if (string_attribute == "kFontFamily") { |
| return ax::mojom::StringAttribute::kFontFamily; |
| } else if (string_attribute == "kHtmlTag") { |
| return ax::mojom::StringAttribute::kHtmlTag; |
| } else if (string_attribute == "kImageAnnotation") { |
| return ax::mojom::StringAttribute::kImageAnnotation; |
| } else if (string_attribute == "kImageDataUrl") { |
| return ax::mojom::StringAttribute::kImageDataUrl; |
| } else if (string_attribute == "kInnerHtml") { |
| return ax::mojom::StringAttribute::kInnerHtml; |
| } else if (string_attribute == "kInputType") { |
| return ax::mojom::StringAttribute::kInputType; |
| } else if (string_attribute == "kKeyShortcuts") { |
| return ax::mojom::StringAttribute::kKeyShortcuts; |
| } else if (string_attribute == "kLanguage") { |
| return ax::mojom::StringAttribute::kLanguage; |
| } else if (string_attribute == "kName") { |
| return ax::mojom::StringAttribute::kName; |
| } else if (string_attribute == "kLiveRelevant") { |
| return ax::mojom::StringAttribute::kLiveRelevant; |
| } else if (string_attribute == "kLiveStatus") { |
| return ax::mojom::StringAttribute::kLiveStatus; |
| } else if (string_attribute == "kApp") { |
| return ax::mojom::StringAttribute::kAppId; |
| } else if (string_attribute == "kPlaceholder") { |
| return ax::mojom::StringAttribute::kPlaceholder; |
| } else if (string_attribute == "kRole") { |
| return ax::mojom::StringAttribute::kRole; |
| } else if (string_attribute == "kRoleDescription") { |
| return ax::mojom::StringAttribute::kRoleDescription; |
| } else if (string_attribute == "kLongClickLabel") { |
| return ax::mojom::StringAttribute::kLongClickLabel; |
| } else if (string_attribute == "kToolTip") { |
| return ax::mojom::StringAttribute::kTooltip; |
| } else if (string_attribute == "kUrl") { |
| return ax::mojom::StringAttribute::kUrl; |
| } else if (string_attribute == "kValue") { |
| return ax::mojom::StringAttribute::kUrl; |
| } else if (string_attribute == "kVirtualContent") { |
| return ax::mojom::StringAttribute::kVirtualContent; |
| } else { |
| NOTREACHED() << "An invalid StringAttribute was provided: " |
| << string_attribute; |
| return ax::mojom::StringAttribute::kNone; |
| } |
| } |
| |
| const char* ToString(ax::mojom::IntAttribute int_attribute) { |
| switch (int_attribute) { |
| case ax::mojom::IntAttribute::kNone: |
| return "none"; |
| case ax::mojom::IntAttribute::kDefaultActionVerb: |
| return "defaultActionVerb"; |
| case ax::mojom::IntAttribute::kDropeffect: |
| return "dropeffect"; |
| case ax::mojom::IntAttribute::kScrollX: |
| return "scrollX"; |
| case ax::mojom::IntAttribute::kScrollXMin: |
| return "scrollXMin"; |
| case ax::mojom::IntAttribute::kScrollXMax: |
| return "scrollXMax"; |
| case ax::mojom::IntAttribute::kScrollY: |
| return "scrollY"; |
| case ax::mojom::IntAttribute::kScrollYMin: |
| return "scrollYMin"; |
| case ax::mojom::IntAttribute::kScrollYMax: |
| return "scrollYMax"; |
| case ax::mojom::IntAttribute::kTextSelStart: |
| return "textSelStart"; |
| case ax::mojom::IntAttribute::kTextSelEnd: |
| return "textSelEnd"; |
| case ax::mojom::IntAttribute::kAriaColumnCount: |
| return "ariaColumnCount"; |
| case ax::mojom::IntAttribute::kAriaCellColumnIndex: |
| return "ariaCellColumnIndex"; |
| case ax::mojom::IntAttribute::kAriaCellColumnSpan: |
| return "ariaCellColumnSpan"; |
| case ax::mojom::IntAttribute::kAriaRowCount: |
| return "ariaRowCount"; |
| case ax::mojom::IntAttribute::kAriaCellRowIndex: |
| return "ariaCellRowIndex"; |
| case ax::mojom::IntAttribute::kAriaCellRowSpan: |
| return "ariaCellRowSpan"; |
| case ax::mojom::IntAttribute::kTableRowCount: |
| return "tableRowCount"; |
| case ax::mojom::IntAttribute::kTableColumnCount: |
| return "tableColumnCount"; |
| case ax::mojom::IntAttribute::kTableHeaderId: |
| return "tableHeaderId"; |
| case ax::mojom::IntAttribute::kTableRowIndex: |
| return "tableRowIndex"; |
| case ax::mojom::IntAttribute::kTableRowHeaderId: |
| return "tableRowHeaderId"; |
| case ax::mojom::IntAttribute::kTableColumnIndex: |
| return "tableColumnIndex"; |
| case ax::mojom::IntAttribute::kTableColumnHeaderId: |
| return "tableColumnHeaderId"; |
| case ax::mojom::IntAttribute::kTableCellColumnIndex: |
| return "tableCellColumnIndex"; |
| case ax::mojom::IntAttribute::kTableCellColumnSpan: |
| return "tableCellColumnSpan"; |
| case ax::mojom::IntAttribute::kTableCellRowIndex: |
| return "tableCellRowIndex"; |
| case ax::mojom::IntAttribute::kTableCellRowSpan: |
| return "tableCellRowSpan"; |
| case ax::mojom::IntAttribute::kSortDirection: |
| return "sortDirection"; |
| case ax::mojom::IntAttribute::kHierarchicalLevel: |
| return "hierarchicalLevel"; |
| case ax::mojom::IntAttribute::kNameFrom: |
| return "nameFrom"; |
| case ax::mojom::IntAttribute::kDescriptionFrom: |
| return "descriptionFrom"; |
| case ax::mojom::IntAttribute::kActivedescendantId: |
| return "activedescendantId"; |
| case ax::mojom::IntAttribute::kErrormessageId: |
| return "errormessageId"; |
| case ax::mojom::IntAttribute::kInPageLinkTargetId: |
| return "inPageLinkTargetId"; |
| case ax::mojom::IntAttribute::kMemberOfId: |
| return "memberOfId"; |
| case ax::mojom::IntAttribute::kNextOnLineId: |
| return "nextOnLineId"; |
| case ax::mojom::IntAttribute::kPopupForId: |
| return "popupForId"; |
| case ax::mojom::IntAttribute::kPreviousOnLineId: |
| return "previousOnLineId"; |
| case ax::mojom::IntAttribute::kRestriction: |
| return "restriction"; |
| case ax::mojom::IntAttribute::kSetSize: |
| return "setSize"; |
| case ax::mojom::IntAttribute::kPosInSet: |
| return "posInSet"; |
| case ax::mojom::IntAttribute::kColorValue: |
| return "colorValue"; |
| case ax::mojom::IntAttribute::kAriaCurrentState: |
| return "ariaCurrentState"; |
| case ax::mojom::IntAttribute::kBackgroundColor: |
| return "backgroundColor"; |
| case ax::mojom::IntAttribute::kColor: |
| return "color"; |
| case ax::mojom::IntAttribute::kHasPopup: |
| return "haspopup"; |
| case ax::mojom::IntAttribute::kIsPopup: |
| return "ispopup"; |
| case ax::mojom::IntAttribute::kInvalidState: |
| return "invalidState"; |
| case ax::mojom::IntAttribute::kCheckedState: |
| return "checkedState"; |
| case ax::mojom::IntAttribute::kListStyle: |
| return "listStyle"; |
| case ax::mojom::IntAttribute::kTextAlign: |
| return "text-align"; |
| case ax::mojom::IntAttribute::kTextDirection: |
| return "textDirection"; |
| case ax::mojom::IntAttribute::kTextPosition: |
| return "textPosition"; |
| case ax::mojom::IntAttribute::kTextStyle: |
| return "textStyle"; |
| case ax::mojom::IntAttribute::kTextOverlineStyle: |
| return "textOverlineStyle"; |
| case ax::mojom::IntAttribute::kTextStrikethroughStyle: |
| return "textStrikethroughStyle"; |
| case ax::mojom::IntAttribute::kTextUnderlineStyle: |
| return "textUnderlineStyle"; |
| case ax::mojom::IntAttribute::kPreviousFocusId: |
| return "previousFocusId"; |
| case ax::mojom::IntAttribute::kNextFocusId: |
| return "nextFocusId"; |
| case ax::mojom::IntAttribute::kImageAnnotationStatus: |
| return "imageAnnotationStatus"; |
| case ax::mojom::IntAttribute::kDOMNodeId: |
| return "domNodeId"; |
| case ax::mojom::IntAttribute::kNextWindowFocusId: |
| return "nextWindowFocusId"; |
| case ax::mojom::IntAttribute::kPreviousWindowFocusId: |
| return "previousWindowFocusId"; |
| } |
| |
| return ""; |
| } |
| |
| ax::mojom::IntAttribute StringToIntAttribute(const std::string& int_attribute) { |
| if (int_attribute == "kNone") { |
| return ax::mojom::IntAttribute::kNone; |
| } else if (int_attribute == "kDefaultActionVerb") { |
| return ax::mojom::IntAttribute::kDefaultActionVerb; |
| } else if (int_attribute == "kDropeffect") { |
| return ax::mojom::IntAttribute::kDropeffect; |
| } else if (int_attribute == "kScrollX") { |
| return ax::mojom::IntAttribute::kScrollX; |
| } else if (int_attribute == "kScrollXMin") { |
| return ax::mojom::IntAttribute::kScrollXMin; |
| } else if (int_attribute == "kScrollXMax") { |
| return ax::mojom::IntAttribute::kScrollXMax; |
| } else if (int_attribute == "kScrollY") { |
| return ax::mojom::IntAttribute::kScrollY; |
| } else if (int_attribute == "kScrollYMin") { |
| return ax::mojom::IntAttribute::kScrollYMin; |
| } else if (int_attribute == "kScrollYMax") { |
| return ax::mojom::IntAttribute::kScrollYMax; |
| } else if (int_attribute == "kTextSelStart") { |
| return ax::mojom::IntAttribute::kTextSelStart; |
| } else if (int_attribute == "kTextSelEnd") { |
| return ax::mojom::IntAttribute::kTextSelEnd; |
| } else if (int_attribute == "kAriaColumnCount") { |
| return ax::mojom::IntAttribute::kAriaColumnCount; |
| } else if (int_attribute == "kAriaCellColumnIndex") { |
| return ax::mojom::IntAttribute::kAriaCellColumnIndex; |
| } else if (int_attribute == "kAriaCellColumnSpan") { |
| return ax::mojom::IntAttribute::kAriaCellColumnSpan; |
| } else if (int_attribute == "kAriaRowCount") { |
| return ax::mojom::IntAttribute::kAriaRowCount; |
| } else if (int_attribute == "kAriaCellRowIndex") { |
| return ax::mojom::IntAttribute::kAriaCellRowIndex; |
| } else if (int_attribute == "kAriaCellRowSpan") { |
| return ax::mojom::IntAttribute::kAriaCellRowSpan; |
| } else if (int_attribute == "kTableRowCount") { |
| return ax::mojom::IntAttribute::kTableRowCount; |
| } else if (int_attribute == "kTableColumnCount") { |
| return ax::mojom::IntAttribute::kTableColumnCount; |
| } else if (int_attribute == "kTableHeaderId") { |
| return ax::mojom::IntAttribute::kTableHeaderId; |
| } else if (int_attribute == "kTableRowIndex") { |
| return ax::mojom::IntAttribute::kTableRowIndex; |
| } else if (int_attribute == "kTableRowHeaderId") { |
| return ax::mojom::IntAttribute::kTableRowHeaderId; |
| } else if (int_attribute == "kTableColumnIndex") { |
| return ax::mojom::IntAttribute::kTableColumnIndex; |
| } else if (int_attribute == "kTableColumnHeaderId") { |
| return ax::mojom::IntAttribute::kTableColumnHeaderId; |
| } else if (int_attribute == "kTableCellColumnIndex") { |
| return ax::mojom::IntAttribute::kTableCellColumnIndex; |
| } else if (int_attribute == "kTableCellColumnSpan") { |
| return ax::mojom::IntAttribute::kTableCellColumnSpan; |
| } else if (int_attribute == "kTableCellRowIndex") { |
| return ax::mojom::IntAttribute::kTableCellRowIndex; |
| } else if (int_attribute == "kTableCellRowSpan") { |
| return ax::mojom::IntAttribute::kTableCellRowSpan; |
| } else if (int_attribute == "kSortDirection") { |
| return ax::mojom::IntAttribute::kSortDirection; |
| } else if (int_attribute == "kHierarchicalLevel") { |
| return ax::mojom::IntAttribute::kHierarchicalLevel; |
| } else if (int_attribute == "kNameFrom") { |
| return ax::mojom::IntAttribute::kNameFrom; |
| } else if (int_attribute == "kDescriptionFrom") { |
| return ax::mojom::IntAttribute::kDescriptionFrom; |
| } else if (int_attribute == "kActivedescendantId") { |
| return ax::mojom::IntAttribute::kActivedescendantId; |
| } else if (int_attribute == "kErrormessageId") { |
| return ax::mojom::IntAttribute::kErrormessageId; |
| } else if (int_attribute == "kInPageLinkTargetId") { |
| return ax::mojom::IntAttribute::kInPageLinkTargetId; |
| } else if (int_attribute == "kMemberOfId") { |
| return ax::mojom::IntAttribute::kMemberOfId; |
| } else if (int_attribute == "kNextOnLineId") { |
| return ax::mojom::IntAttribute::kNextOnLineId; |
| } else if (int_attribute == "kPopupForId") { |
| return ax::mojom::IntAttribute::kPopupForId; |
| } else if (int_attribute == "kPreviousOnLineId") { |
| return ax::mojom::IntAttribute::kPreviousOnLineId; |
| } else if (int_attribute == "kRestriction") { |
| return ax::mojom::IntAttribute::kRestriction; |
| } else if (int_attribute == "kSetSize") { |
| return ax::mojom::IntAttribute::kSetSize; |
| } else if (int_attribute == "kPosInSet") { |
| return ax::mojom::IntAttribute::kPosInSet; |
| } else if (int_attribute == "kColorValue") { |
| return ax::mojom::IntAttribute::kColorValue; |
| } else if (int_attribute == "kAriaCurrentState") { |
| return ax::mojom::IntAttribute::kAriaCurrentState; |
| } else if (int_attribute == "kBackgroundColor") { |
| return ax::mojom::IntAttribute::kBackgroundColor; |
| } else if (int_attribute == "kColor") { |
| return ax::mojom::IntAttribute::kColor; |
| } else if (int_attribute == "kHasPopup") { |
| return ax::mojom::IntAttribute::kHasPopup; |
| } else if (int_attribute == "kIsPopup") { |
| return ax::mojom::IntAttribute::kIsPopup; |
| } else if (int_attribute == "kInvalidState") { |
| return ax::mojom::IntAttribute::kInvalidState; |
| } else if (int_attribute == "kCheckedState") { |
| return ax::mojom::IntAttribute::kCheckedState; |
| } else if (int_attribute == "kListStyle") { |
| return ax::mojom::IntAttribute::kListStyle; |
| } else if (int_attribute == "kTextAlign") { |
| return ax::mojom::IntAttribute::kTextAlign; |
| } else if (int_attribute == "kTextDirection") { |
| return ax::mojom::IntAttribute::kTextDirection; |
| } else if (int_attribute == "kTextPosition") { |
| return ax::mojom::IntAttribute::kTextPosition; |
| } else if (int_attribute == "kTextStyle") { |
| return ax::mojom::IntAttribute::kTextStyle; |
| } else if (int_attribute == "kTextOverlineStyle") { |
| return ax::mojom::IntAttribute::kTextOverlineStyle; |
| } else if (int_attribute == "kTextStrikethroughStyle") { |
| return ax::mojom::IntAttribute::kTextStrikethroughStyle; |
| } else if (int_attribute == "kTextUnderlineStyle") { |
| return ax::mojom::IntAttribute::kTextUnderlineStyle; |
| } else if (int_attribute == "kPreviousFocusId") { |
| return ax::mojom::IntAttribute::kPreviousFocusId; |
| } else if (int_attribute == "kNextFocusId") { |
| return ax::mojom::IntAttribute::kNextFocusId; |
| } else if (int_attribute == "kImageAnnotationStatus") { |
| return ax::mojom::IntAttribute::kImageAnnotationStatus; |
| } else if (int_attribute == "kDomNodeId") { |
| return ax::mojom::IntAttribute::kDOMNodeId; |
| } else if (int_attribute == "kNextWindowFocusId") { |
| return ax::mojom::IntAttribute::kNextWindowFocusId; |
| } else if (int_attribute == "kPreviousWindowFocusId") { |
| return ax::mojom::IntAttribute::kPreviousWindowFocusId; |
| } |
| |
| NOTREACHED() << "An invalid IntAttribute was provided: " << int_attribute; |
| return ax::mojom::IntAttribute::kNone; |
| } |
| |
| const char* ToString(ax::mojom::FloatAttribute float_attribute) { |
| switch (float_attribute) { |
| case ax::mojom::FloatAttribute::kNone: |
| return "none"; |
| case ax::mojom::FloatAttribute::kValueForRange: |
| return "valueForRange"; |
| case ax::mojom::FloatAttribute::kMinValueForRange: |
| return "minValueForRange"; |
| case ax::mojom::FloatAttribute::kMaxValueForRange: |
| return "maxValueForRange"; |
| case ax::mojom::FloatAttribute::kStepValueForRange: |
| return "stepValueForRange"; |
| case ax::mojom::FloatAttribute::kFontSize: |
| return "fontSize"; |
| case ax::mojom::FloatAttribute::kFontWeight: |
| return "fontWeight"; |
| case ax::mojom::FloatAttribute::kTextIndent: |
| return "textIndent"; |
| case ax::mojom::FloatAttribute::kChildTreeScale: |
| return "childTreeScale"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::BoolAttribute bool_attribute) { |
| switch (bool_attribute) { |
| case ax::mojom::BoolAttribute::kNone: |
| return "none"; |
| case ax::mojom::BoolAttribute::kBusy: |
| return "busy"; |
| case ax::mojom::BoolAttribute::kNonAtomicTextFieldRoot: |
| return "nonAtomicTextFieldRoot"; |
| case ax::mojom::BoolAttribute::kContainerLiveAtomic: |
| return "containerLiveAtomic"; |
| case ax::mojom::BoolAttribute::kContainerLiveBusy: |
| return "containerLiveBusy"; |
| case ax::mojom::BoolAttribute::kGrabbed: |
| return "grabbed"; |
| case ax::mojom::BoolAttribute::kLiveAtomic: |
| return "liveAtomic"; |
| case ax::mojom::BoolAttribute::kModal: |
| return "modal"; |
| case ax::mojom::BoolAttribute::kUpdateLocationOnly: |
| return "updateLocationOnly"; |
| case ax::mojom::BoolAttribute::kCanvasHasFallback: |
| return "canvasHasFallback"; |
| case ax::mojom::BoolAttribute::kScrollable: |
| return "scrollable"; |
| case ax::mojom::BoolAttribute::kClickable: |
| return "clickable"; |
| case ax::mojom::BoolAttribute::kClipsChildren: |
| return "clipsChildren"; |
| case ax::mojom::BoolAttribute::kNotUserSelectableStyle: |
| return "notUserSelectableStyle"; |
| case ax::mojom::BoolAttribute::kSelected: |
| return "selected"; |
| case ax::mojom::BoolAttribute::kSelectedFromFocus: |
| return "selectedFromFocus"; |
| case ax::mojom::BoolAttribute::kSupportsTextLocation: |
| return "supportsTextLocation"; |
| case ax::mojom::BoolAttribute::kIsLineBreakingObject: |
| return "isLineBreakingObject"; |
| case ax::mojom::BoolAttribute::kIsPageBreakingObject: |
| return "isPageBreakingObject"; |
| case ax::mojom::BoolAttribute::kHasAriaAttribute: |
| return "hasAriaAttribute"; |
| case ax::mojom::BoolAttribute::kTouchPassthrough: |
| return "touchPassthrough"; |
| case ax::mojom::BoolAttribute::kLongClickable: |
| return "longClickable"; |
| case ax::mojom::BoolAttribute::kHasHiddenOffscreenNodes: |
| return "hasHiddenOffscreenNodes"; |
| } |
| |
| return ""; |
| } |
| |
| ax::mojom::BoolAttribute StringToBoolAttribute( |
| const std::string& bool_attribute) { |
| if (bool_attribute == "kNone") { |
| return ax::mojom::BoolAttribute::kNone; |
| } else if (bool_attribute == "kBusy") { |
| return ax::mojom::BoolAttribute::kBusy; |
| } else if (bool_attribute == "kNonAtomicTextFieldRoot") { |
| return ax::mojom::BoolAttribute::kNonAtomicTextFieldRoot; |
| } else if (bool_attribute == "kContainerLiveAtomic") { |
| return ax::mojom::BoolAttribute::kContainerLiveAtomic; |
| } else if (bool_attribute == "kContainerLiveBusy") { |
| return ax::mojom::BoolAttribute::kContainerLiveBusy; |
| } else if (bool_attribute == "kGrabbed") { |
| return ax::mojom::BoolAttribute::kGrabbed; |
| } else if (bool_attribute == "kLiveAtomic") { |
| return ax::mojom::BoolAttribute::kLiveAtomic; |
| } else if (bool_attribute == "kModal") { |
| return ax::mojom::BoolAttribute::kModal; |
| } else if (bool_attribute == "kUpdateLocationOnly") { |
| return ax::mojom::BoolAttribute::kUpdateLocationOnly; |
| } else if (bool_attribute == "kCanvasHasFallback") { |
| return ax::mojom::BoolAttribute::kCanvasHasFallback; |
| } else if (bool_attribute == "kScrollable") { |
| return ax::mojom::BoolAttribute::kScrollable; |
| } else if (bool_attribute == "kClickable") { |
| return ax::mojom::BoolAttribute::kClickable; |
| } else if (bool_attribute == "kClipsChildren") { |
| return ax::mojom::BoolAttribute::kClipsChildren; |
| } else if (bool_attribute == "kNotUserSelectableStyle") { |
| return ax::mojom::BoolAttribute::kNotUserSelectableStyle; |
| } else if (bool_attribute == "kSelected") { |
| return ax::mojom::BoolAttribute::kSelected; |
| } else if (bool_attribute == "kSelectedFromFocus") { |
| return ax::mojom::BoolAttribute::kSelectedFromFocus; |
| } else if (bool_attribute == "kSupportsTextLocation") { |
| return ax::mojom::BoolAttribute::kSupportsTextLocation; |
| } else if (bool_attribute == "kIsLineBreakingObject") { |
| return ax::mojom::BoolAttribute::kIsLineBreakingObject; |
| } else if (bool_attribute == "kIsPageBreakingObject") { |
| return ax::mojom::BoolAttribute::kIsPageBreakingObject; |
| } else if (bool_attribute == "kHasAriaAttribute") { |
| return ax::mojom::BoolAttribute::kHasAriaAttribute; |
| } else if (bool_attribute == "kTouchPassthrough") { |
| return ax::mojom::BoolAttribute::kTouchPassthrough; |
| } else if (bool_attribute == "kLongClickable") { |
| return ax::mojom::BoolAttribute::kLongClickable; |
| } else { |
| NOTREACHED() << "An invalid BoolAttribute was provided: " << bool_attribute; |
| return ax::mojom::BoolAttribute::kNone; |
| } |
| } |
| |
| const char* ToString(ax::mojom::IntListAttribute int_list_attribute) { |
| switch (int_list_attribute) { |
| case ax::mojom::IntListAttribute::kNone: |
| return "none"; |
| case ax::mojom::IntListAttribute::kIndirectChildIds: |
| return "indirectChildIds"; |
| case ax::mojom::IntListAttribute::kControlsIds: |
| return "controlsIds"; |
| case ax::mojom::IntListAttribute::kDetailsIds: |
| return "detailsIds"; |
| case ax::mojom::IntListAttribute::kDescribedbyIds: |
| return "describedbyIds"; |
| case ax::mojom::IntListAttribute::kFlowtoIds: |
| return "flowtoIds"; |
| case ax::mojom::IntListAttribute::kLabelledbyIds: |
| return "labelledbyIds"; |
| case ax::mojom::IntListAttribute::kRadioGroupIds: |
| return "radioGroupIds"; |
| case ax::mojom::IntListAttribute::kMarkerTypes: |
| return "markerTypes"; |
| case ax::mojom::IntListAttribute::kMarkerStarts: |
| return "markerStarts"; |
| case ax::mojom::IntListAttribute::kMarkerEnds: |
| return "markerEnds"; |
| case ax::mojom::IntListAttribute::kHighlightTypes: |
| return "highlightTypes"; |
| case ax::mojom::IntListAttribute::kCaretBounds: |
| return "caretBounds"; |
| case ax::mojom::IntListAttribute::kCharacterOffsets: |
| return "characterOffsets"; |
| case ax::mojom::IntListAttribute::kLineStarts: |
| return "lineStarts"; |
| case ax::mojom::IntListAttribute::kLineEnds: |
| return "lineEnds"; |
| case ax::mojom::IntListAttribute::kSentenceStarts: |
| return "sentenceStarts"; |
| case ax::mojom::IntListAttribute::kSentenceEnds: |
| return "sentenceEnds"; |
| case ax::mojom::IntListAttribute::kWordStarts: |
| return "wordStarts"; |
| case ax::mojom::IntListAttribute::kWordEnds: |
| return "wordEnds"; |
| case ax::mojom::IntListAttribute::kCustomActionIds: |
| return "customActionIds"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::StringListAttribute string_list_attribute) { |
| switch (string_list_attribute) { |
| case ax::mojom::StringListAttribute::kNone: |
| return "none"; |
| case ax::mojom::StringListAttribute::kCustomActionDescriptions: |
| return "customActionDescriptions"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::ListStyle list_style) { |
| switch (list_style) { |
| case ax::mojom::ListStyle::kNone: |
| return "none"; |
| case ax::mojom::ListStyle::kCircle: |
| return "circle"; |
| case ax::mojom::ListStyle::kDisc: |
| return "disc"; |
| case ax::mojom::ListStyle::kImage: |
| return "image"; |
| case ax::mojom::ListStyle::kNumeric: |
| return "numeric"; |
| case ax::mojom::ListStyle::kOther: |
| return "other"; |
| case ax::mojom::ListStyle::kSquare: |
| return "square"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::MarkerType marker_type) { |
| switch (marker_type) { |
| case ax::mojom::MarkerType::kNone: |
| return "none"; |
| case ax::mojom::MarkerType::kSpelling: |
| return "spelling"; |
| case ax::mojom::MarkerType::kGrammar: |
| return "grammar"; |
| case ax::mojom::MarkerType::kTextMatch: |
| return "textMatch"; |
| case ax::mojom::MarkerType::kActiveSuggestion: |
| return "activeSuggestion"; |
| case ax::mojom::MarkerType::kSuggestion: |
| return "suggestion"; |
| case ax::mojom::MarkerType::kHighlight: |
| return "highlight"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::HighlightType highlight_type) { |
| switch (highlight_type) { |
| case ax::mojom::HighlightType::kNone: |
| return "none"; |
| case ax::mojom::HighlightType::kHighlight: |
| return "highlight"; |
| case ax::mojom::HighlightType::kSpellingError: |
| return "spelling-error"; |
| case ax::mojom::HighlightType::kGrammarError: |
| return "grammar-error"; |
| } |
| } |
| |
| const char* ToString(ax::mojom::MoveDirection move_direction) { |
| switch (move_direction) { |
| case ax::mojom::MoveDirection::kNone: |
| return "none"; |
| case ax::mojom::MoveDirection::kBackward: |
| return "backward"; |
| case ax::mojom::MoveDirection::kForward: |
| return "forward"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Command command) { |
| switch (command) { |
| case ax::mojom::Command::kNone: |
| return "none"; |
| case ax::mojom::Command::kClearSelection: |
| return "clearSelection"; |
| case ax::mojom::Command::kDelete: |
| return "delete"; |
| case ax::mojom::Command::kDictate: |
| return "dictate"; |
| case ax::mojom::Command::kExtendSelection: |
| return "extendSelection"; |
| case ax::mojom::Command::kFormat: |
| return "format"; |
| case ax::mojom::Command::kHistory: |
| return "history"; |
| case ax::mojom::Command::kInsert: |
| return "insert"; |
| case ax::mojom::Command::kMarker: |
| return "marker"; |
| case ax::mojom::Command::kMoveSelection: |
| return "moveSelection"; |
| case ax::mojom::Command::kSetSelection: |
| return "setSelection"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::InputEventType input_event_type) { |
| switch (input_event_type) { |
| case ax::mojom::InputEventType::kNone: |
| return "none"; |
| case ax::mojom::InputEventType::kInsertText: |
| return "insertText"; |
| case ax::mojom::InputEventType::kInsertLineBreak: |
| return "insertLineBreak"; |
| case ax::mojom::InputEventType::kInsertParagraph: |
| return "insertParagraph"; |
| case ax::mojom::InputEventType::kInsertOrderedList: |
| return "insertOrderedList"; |
| case ax::mojom::InputEventType::kInsertUnorderedList: |
| return "insertUnorderedList"; |
| case ax::mojom::InputEventType::kInsertHorizontalRule: |
| return "insertHorizontalRule"; |
| case ax::mojom::InputEventType::kInsertFromPaste: |
| return "insertFromPaste"; |
| case ax::mojom::InputEventType::kInsertFromDrop: |
| return "insertFromDrop"; |
| case ax::mojom::InputEventType::kInsertFromYank: |
| return "insertFromYank"; |
| case ax::mojom::InputEventType::kInsertTranspose: |
| return "insertTranspose"; |
| case ax::mojom::InputEventType::kInsertReplacementText: |
| return "insertReplacementText"; |
| case ax::mojom::InputEventType::kInsertCompositionText: |
| return "insertCompositionText"; |
| case ax::mojom::InputEventType::kDeleteWordBackward: |
| return "deleteWordBackward"; |
| case ax::mojom::InputEventType::kDeleteWordForward: |
| return "deleteWordForward"; |
| case ax::mojom::InputEventType::kDeleteSoftLineBackward: |
| return "deleteSoftLineBackward"; |
| case ax::mojom::InputEventType::kDeleteSoftLineForward: |
| return "deleteSoftLineForward"; |
| case ax::mojom::InputEventType::kDeleteHardLineBackward: |
| return "deleteHardLineBackward"; |
| case ax::mojom::InputEventType::kDeleteHardLineForward: |
| return "deleteHardLineForward"; |
| case ax::mojom::InputEventType::kDeleteContentBackward: |
| return "deleteContentBackward"; |
| case ax::mojom::InputEventType::kDeleteContentForward: |
| return "deleteContentForward"; |
| case ax::mojom::InputEventType::kDeleteByCut: |
| return "deleteByCut"; |
| case ax::mojom::InputEventType::kDeleteByDrag: |
| return "deleteByDrag"; |
| case ax::mojom::InputEventType::kHistoryUndo: |
| return "historyUndo"; |
| case ax::mojom::InputEventType::kHistoryRedo: |
| return "historyRedo"; |
| case ax::mojom::InputEventType::kFormatBold: |
| return "formatBold"; |
| case ax::mojom::InputEventType::kFormatItalic: |
| return "formatItalic"; |
| case ax::mojom::InputEventType::kFormatUnderline: |
| return "formatUnderline"; |
| case ax::mojom::InputEventType::kFormatStrikeThrough: |
| return "formatStrikeThrough"; |
| case ax::mojom::InputEventType::kFormatSuperscript: |
| return "formatSuperscript"; |
| case ax::mojom::InputEventType::kFormatSubscript: |
| return "formatSubscript"; |
| case ax::mojom::InputEventType::kFormatJustifyCenter: |
| return "formatJustifyCenter"; |
| case ax::mojom::InputEventType::kFormatJustifyFull: |
| return "formatJustifyFull"; |
| case ax::mojom::InputEventType::kFormatJustifyRight: |
| return "formatJustifyRight"; |
| case ax::mojom::InputEventType::kFormatJustifyLeft: |
| return "formatJustifyLeft"; |
| case ax::mojom::InputEventType::kFormatIndent: |
| return "formatIndent"; |
| case ax::mojom::InputEventType::kFormatOutdent: |
| return "formatOutdent"; |
| case ax::mojom::InputEventType::kFormatRemove: |
| return "formatRemove"; |
| case ax::mojom::InputEventType::kFormatSetBlockTextDirection: |
| return "formatSetBlockTextDirection"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextBoundary text_boundary) { |
| switch (text_boundary) { |
| case ax::mojom::TextBoundary::kNone: |
| return "none"; |
| case ax::mojom::TextBoundary::kCharacter: |
| return "character"; |
| case ax::mojom::TextBoundary::kFormatEnd: |
| return "formatEnd"; |
| case ax::mojom::TextBoundary::kFormatStart: |
| return "formatStart"; |
| case ax::mojom::TextBoundary::kFormatStartOrEnd: |
| return "formatStartOrEnd"; |
| case ax::mojom::TextBoundary::kLineEnd: |
| return "lineEnd"; |
| case ax::mojom::TextBoundary::kLineStart: |
| return "lineStart"; |
| case ax::mojom::TextBoundary::kLineStartOrEnd: |
| return "lineStartOrEnd"; |
| case ax::mojom::TextBoundary::kObject: |
| return "object"; |
| case ax::mojom::TextBoundary::kPageEnd: |
| return "pageEnd"; |
| case ax::mojom::TextBoundary::kPageStart: |
| return "pageStart"; |
| case ax::mojom::TextBoundary::kPageStartOrEnd: |
| return "pageStartOrEnd"; |
| case ax::mojom::TextBoundary::kParagraphEnd: |
| return "paragraphEnd"; |
| case ax::mojom::TextBoundary::kParagraphStart: |
| return "paragraphStart"; |
| case ax::mojom::TextBoundary::kParagraphStartSkippingEmptyParagraphs: |
| return "paragraphStartSkippingEmptyParagraphs"; |
| case ax::mojom::TextBoundary::kParagraphStartOrEnd: |
| return "paragraphStartOrEnd"; |
| case ax::mojom::TextBoundary::kSentenceEnd: |
| return "sentenceEnd"; |
| case ax::mojom::TextBoundary::kSentenceStart: |
| return "sentenceStart"; |
| case ax::mojom::TextBoundary::kSentenceStartOrEnd: |
| return "sentenceStartOrEnd"; |
| case ax::mojom::TextBoundary::kWebPage: |
| return "webPage"; |
| case ax::mojom::TextBoundary::kWordEnd: |
| return "wordEnd"; |
| case ax::mojom::TextBoundary::kWordStart: |
| return "wordStart"; |
| case ax::mojom::TextBoundary::kWordStartOrEnd: |
| return "wordStartOrEnd"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextAlign text_align) { |
| switch (text_align) { |
| case ax::mojom::TextAlign::kNone: |
| return "none"; |
| case ax::mojom::TextAlign::kLeft: |
| return "left"; |
| case ax::mojom::TextAlign::kRight: |
| return "right"; |
| case ax::mojom::TextAlign::kCenter: |
| return "center"; |
| case ax::mojom::TextAlign::kJustify: |
| return "justify"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::WritingDirection writing_direction) { |
| switch (writing_direction) { |
| case ax::mojom::WritingDirection::kNone: |
| return "none"; |
| case ax::mojom::WritingDirection::kLtr: |
| return "ltr"; |
| case ax::mojom::WritingDirection::kRtl: |
| return "rtl"; |
| case ax::mojom::WritingDirection::kTtb: |
| return "ttb"; |
| case ax::mojom::WritingDirection::kBtt: |
| return "btt"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextPosition text_position) { |
| switch (text_position) { |
| case ax::mojom::TextPosition::kNone: |
| return "none"; |
| case ax::mojom::TextPosition::kSubscript: |
| return "subscript"; |
| case ax::mojom::TextPosition::kSuperscript: |
| return "superscript"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextStyle text_style) { |
| switch (text_style) { |
| case ax::mojom::TextStyle::kNone: |
| return "none"; |
| case ax::mojom::TextStyle::kBold: |
| return "bold"; |
| case ax::mojom::TextStyle::kItalic: |
| return "italic"; |
| case ax::mojom::TextStyle::kUnderline: |
| return "underline"; |
| case ax::mojom::TextStyle::kLineThrough: |
| return "lineThrough"; |
| case ax::mojom::TextStyle::kOverline: |
| return "overline"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextDecorationStyle text_decoration_style) { |
| switch (text_decoration_style) { |
| case ax::mojom::TextDecorationStyle::kNone: |
| return "none"; |
| case ax::mojom::TextDecorationStyle::kSolid: |
| return "solid"; |
| case ax::mojom::TextDecorationStyle::kDashed: |
| return "dashed"; |
| case ax::mojom::TextDecorationStyle::kDotted: |
| return "dotted"; |
| case ax::mojom::TextDecorationStyle::kDouble: |
| return "double"; |
| case ax::mojom::TextDecorationStyle::kWavy: |
| return "wavy"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::AriaCurrentState aria_current_state) { |
| switch (aria_current_state) { |
| case ax::mojom::AriaCurrentState::kNone: |
| return "none"; |
| case ax::mojom::AriaCurrentState::kFalse: |
| return "false"; |
| case ax::mojom::AriaCurrentState::kTrue: |
| return "true"; |
| case ax::mojom::AriaCurrentState::kPage: |
| return "page"; |
| case ax::mojom::AriaCurrentState::kStep: |
| return "step"; |
| case ax::mojom::AriaCurrentState::kLocation: |
| return "location"; |
| case ax::mojom::AriaCurrentState::kDate: |
| return "date"; |
| case ax::mojom::AriaCurrentState::kTime: |
| return "time"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::HasPopup has_popup) { |
| switch (has_popup) { |
| case ax::mojom::HasPopup::kFalse: |
| return ""; |
| case ax::mojom::HasPopup::kTrue: |
| return "true"; |
| case ax::mojom::HasPopup::kMenu: |
| return "menu"; |
| case ax::mojom::HasPopup::kListbox: |
| return "listbox"; |
| case ax::mojom::HasPopup::kTree: |
| return "tree"; |
| case ax::mojom::HasPopup::kGrid: |
| return "grid"; |
| case ax::mojom::HasPopup::kDialog: |
| return "dialog"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::IsPopup is_popup) { |
| switch (is_popup) { |
| case ax::mojom::IsPopup::kNone: |
| return ""; |
| case ax::mojom::IsPopup::kAuto: |
| return "auto"; |
| case ax::mojom::IsPopup::kHint: |
| return "hint"; |
| case ax::mojom::IsPopup::kManual: |
| return "manual"; |
| } |
| } |
| |
| const char* ToString(ax::mojom::InvalidState invalid_state) { |
| switch (invalid_state) { |
| case ax::mojom::InvalidState::kNone: |
| return "none"; |
| case ax::mojom::InvalidState::kFalse: |
| return "false"; |
| case ax::mojom::InvalidState::kTrue: |
| return "true"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Restriction restriction) { |
| switch (restriction) { |
| case ax::mojom::Restriction::kNone: |
| return "none"; |
| case ax::mojom::Restriction::kReadOnly: |
| return "readOnly"; |
| case ax::mojom::Restriction::kDisabled: |
| return "disabled"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::CheckedState checked_state) { |
| switch (checked_state) { |
| case ax::mojom::CheckedState::kNone: |
| return "none"; |
| case ax::mojom::CheckedState::kFalse: |
| return "false"; |
| case ax::mojom::CheckedState::kTrue: |
| return "true"; |
| case ax::mojom::CheckedState::kMixed: |
| return "mixed"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::SortDirection sort_direction) { |
| switch (sort_direction) { |
| case ax::mojom::SortDirection::kNone: |
| return "none"; |
| case ax::mojom::SortDirection::kUnsorted: |
| return "unsorted"; |
| case ax::mojom::SortDirection::kAscending: |
| return "ascending"; |
| case ax::mojom::SortDirection::kDescending: |
| return "descending"; |
| case ax::mojom::SortDirection::kOther: |
| return "other"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::NameFrom name_from) { |
| switch (name_from) { |
| case ax::mojom::NameFrom::kNone: |
| return "none"; |
| case ax::mojom::NameFrom::kAttribute: |
| return "attribute"; |
| case ax::mojom::NameFrom::kAttributeExplicitlyEmpty: |
| return "attributeExplicitlyEmpty"; |
| case ax::mojom::NameFrom::kCaption: |
| return "caption"; |
| case ax::mojom::NameFrom::kContents: |
| return "contents"; |
| case ax::mojom::NameFrom::kPlaceholder: |
| return "placeholder"; |
| case ax::mojom::NameFrom::kRelatedElement: |
| return "relatedElement"; |
| case ax::mojom::NameFrom::kTitle: |
| return "title"; |
| case ax::mojom::NameFrom::kPopoverAttribute: |
| return "popoverAttribute"; |
| case ax::mojom::NameFrom::kValue: |
| return "value"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::DescriptionFrom description_from) { |
| switch (description_from) { |
| case ax::mojom::DescriptionFrom::kNone: |
| return "none"; |
| case ax::mojom::DescriptionFrom::kAriaDescription: |
| return "ariaDescription"; |
| case ax::mojom::DescriptionFrom::kAttributeExplicitlyEmpty: |
| return "attributeExplicitlyEmpty"; |
| case ax::mojom::DescriptionFrom::kButtonLabel: |
| return "buttonLabel"; |
| case ax::mojom::DescriptionFrom::kPopoverAttribute: |
| return "popoverAttribute"; |
| case ax::mojom::DescriptionFrom::kRelatedElement: |
| return "relatedElement"; |
| case ax::mojom::DescriptionFrom::kRubyAnnotation: |
| return "rubyAnnotation"; |
| case ax::mojom::DescriptionFrom::kSvgDescElement: |
| return "svgDescElement"; |
| case ax::mojom::DescriptionFrom::kSummary: |
| return "summary"; |
| case ax::mojom::DescriptionFrom::kTableCaption: |
| return "tableCaption"; |
| case ax::mojom::DescriptionFrom::kTitle: |
| return "title"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::EventFrom event_from) { |
| switch (event_from) { |
| case ax::mojom::EventFrom::kNone: |
| return "none"; |
| case ax::mojom::EventFrom::kUser: |
| return "user"; |
| case ax::mojom::EventFrom::kPage: |
| return "page"; |
| case ax::mojom::EventFrom::kAction: |
| return "action"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Gesture gesture) { |
| switch (gesture) { |
| case ax::mojom::Gesture::kNone: |
| return "none"; |
| case ax::mojom::Gesture::kClick: |
| return "click"; |
| case ax::mojom::Gesture::kSwipeLeft1: |
| return "swipeLeft1"; |
| case ax::mojom::Gesture::kSwipeUp1: |
| return "swipeUp1"; |
| case ax::mojom::Gesture::kSwipeRight1: |
| return "swipeRight1"; |
| case ax::mojom::Gesture::kSwipeDown1: |
| return "swipeDown1"; |
| case ax::mojom::Gesture::kSwipeLeft2: |
| return "swipeLeft2"; |
| case ax::mojom::Gesture::kSwipeUp2: |
| return "swipeUp2"; |
| case ax::mojom::Gesture::kSwipeRight2: |
| return "swipeRight2"; |
| case ax::mojom::Gesture::kSwipeDown2: |
| return "swipeDown2"; |
| case ax::mojom::Gesture::kSwipeLeft3: |
| return "swipeLeft3"; |
| case ax::mojom::Gesture::kSwipeUp3: |
| return "swipeUp3"; |
| case ax::mojom::Gesture::kSwipeRight3: |
| return "swipeRight3"; |
| case ax::mojom::Gesture::kSwipeDown3: |
| return "swipeDown3"; |
| case ax::mojom::Gesture::kSwipeLeft4: |
| return "swipeLeft4"; |
| case ax::mojom::Gesture::kSwipeUp4: |
| return "swipeUp4"; |
| case ax::mojom::Gesture::kSwipeRight4: |
| return "swipeRight4"; |
| case ax::mojom::Gesture::kSwipeDown4: |
| return "swipeDown4"; |
| case ax::mojom::Gesture::kTap2: |
| return "tap2"; |
| case ax::mojom::Gesture::kTap3: |
| return "tap3"; |
| case ax::mojom::Gesture::kTap4: |
| return "tap4"; |
| case ax::mojom::Gesture::kTouchExplore: |
| return "touchExplore"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TextAffinity text_affinity) { |
| switch (text_affinity) { |
| case ax::mojom::TextAffinity::kNone: |
| return "none"; |
| case ax::mojom::TextAffinity::kDownstream: |
| return "downstream"; |
| case ax::mojom::TextAffinity::kUpstream: |
| return "upstream"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::TreeOrder tree_order) { |
| switch (tree_order) { |
| case ax::mojom::TreeOrder::kNone: |
| return "none"; |
| case ax::mojom::TreeOrder::kUndefined: |
| return "undefined"; |
| case ax::mojom::TreeOrder::kBefore: |
| return "before"; |
| case ax::mojom::TreeOrder::kEqual: |
| return "equal"; |
| case ax::mojom::TreeOrder::kAfter: |
| return "after"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::ImageAnnotationStatus status) { |
| switch (status) { |
| case ax::mojom::ImageAnnotationStatus::kNone: |
| return "none"; |
| case ax::mojom::ImageAnnotationStatus::kWillNotAnnotateDueToScheme: |
| return "kWillNotAnnotateDueToScheme"; |
| case ax::mojom::ImageAnnotationStatus::kIneligibleForAnnotation: |
| return "ineligibleForAnnotation"; |
| case ax::mojom::ImageAnnotationStatus::kEligibleForAnnotation: |
| return "eligibleForAnnotation"; |
| case ax::mojom::ImageAnnotationStatus::kSilentlyEligibleForAnnotation: |
| return "silentlyEligibleForAnnotation"; |
| case ax::mojom::ImageAnnotationStatus::kAnnotationPending: |
| return "annotationPending"; |
| case ax::mojom::ImageAnnotationStatus::kAnnotationSucceeded: |
| return "annotationSucceeded"; |
| case ax::mojom::ImageAnnotationStatus::kAnnotationEmpty: |
| return "annotationEmpty"; |
| case ax::mojom::ImageAnnotationStatus::kAnnotationAdult: |
| return "annotationAdult"; |
| case ax::mojom::ImageAnnotationStatus::kAnnotationProcessFailed: |
| return "annotationProcessFailed"; |
| } |
| |
| return ""; |
| } |
| |
| const char* ToString(ax::mojom::Dropeffect dropeffect) { |
| switch (dropeffect) { |
| case ax::mojom::Dropeffect::kCopy: |
| return "copy"; |
| case ax::mojom::Dropeffect::kExecute: |
| return "execute"; |
| case ax::mojom::Dropeffect::kLink: |
| return "link"; |
| case ax::mojom::Dropeffect::kMove: |
| return "move"; |
| case ax::mojom::Dropeffect::kPopup: |
| return "popup"; |
| case ax::mojom::Dropeffect::kNone: |
| return "none"; |
| } |
| |
| return ""; |
| } |
| |
| } // namespace ui |