1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
#define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
#include <atlbase.h>
#include <atlcom.h>
#include <oleacc.h>
#include <UIAutomationCore.h>
#include <vector>
#include "base/compiler_specific.h"
#include "content/browser/accessibility/browser_accessibility.h"
#include "content/common/content_export.h"
#include "third_party/iaccessible2/ia2_api_all.h"
#include "third_party/isimpledom/ISimpleDOMDocument.h"
#include "third_party/isimpledom/ISimpleDOMNode.h"
#include "third_party/isimpledom/ISimpleDOMText.h"
namespace ui {
enum TextBoundaryDirection;
enum TextBoundaryType;
}
namespace content {
class BrowserAccessibilityRelation;
////////////////////////////////////////////////////////////////////////////////
//
// BrowserAccessibilityWin
//
// Class implementing the windows accessible interface for the Browser-Renderer
// communication of accessibility information, providing accessibility
// to be used by screen readers and other assistive technology (AT).
//
////////////////////////////////////////////////////////////////////////////////
class __declspec(uuid("562072fe-3390-43b1-9e2c-dd4118f5ac79"))
BrowserAccessibilityWin
: public BrowserAccessibility,
public CComObjectRootEx<CComMultiThreadModel>,
public IDispatchImpl<IAccessible2, &IID_IAccessible2,
&LIBID_IAccessible2Lib>,
public IAccessibleApplication,
public IAccessibleHyperlink,
public IAccessibleHypertext,
public IAccessibleImage,
public IAccessibleTable,
public IAccessibleTable2,
public IAccessibleTableCell,
public IAccessibleValue,
public IServiceProvider,
public ISimpleDOMDocument,
public ISimpleDOMNode,
public ISimpleDOMText,
public IAccessibleEx,
public IRawElementProviderSimple {
public:
BEGIN_COM_MAP(BrowserAccessibilityWin)
COM_INTERFACE_ENTRY2(IDispatch, IAccessible2)
COM_INTERFACE_ENTRY(IAccessible)
COM_INTERFACE_ENTRY(IAccessible2)
COM_INTERFACE_ENTRY(IAccessibleApplication)
COM_INTERFACE_ENTRY(IAccessibleEx)
COM_INTERFACE_ENTRY(IAccessibleHyperlink)
COM_INTERFACE_ENTRY(IAccessibleHypertext)
COM_INTERFACE_ENTRY(IAccessibleImage)
COM_INTERFACE_ENTRY(IAccessibleTable)
COM_INTERFACE_ENTRY(IAccessibleTable2)
COM_INTERFACE_ENTRY(IAccessibleTableCell)
COM_INTERFACE_ENTRY(IAccessibleText)
COM_INTERFACE_ENTRY(IAccessibleValue)
COM_INTERFACE_ENTRY(IRawElementProviderSimple)
COM_INTERFACE_ENTRY(IServiceProvider)
COM_INTERFACE_ENTRY(ISimpleDOMDocument)
COM_INTERFACE_ENTRY(ISimpleDOMNode)
COM_INTERFACE_ENTRY(ISimpleDOMText)
END_COM_MAP()
// Represents a non-static text node in IAccessibleHypertext. This character
// is embedded in the response to IAccessibleText::get_text, indicating the
// position where a non-static text child object appears.
CONTENT_EXPORT static const base::char16 kEmbeddedCharacter[];
// Mappings from roles and states to human readable strings. Initialize
// with |InitializeStringMaps|.
static std::map<int32, base::string16> role_string_map;
static std::map<int32, base::string16> state_string_map;
CONTENT_EXPORT BrowserAccessibilityWin();
CONTENT_EXPORT virtual ~BrowserAccessibilityWin();
// The Windows-specific unique ID, used as the child ID for MSAA methods
// like NotifyWinEvent, and as the unique ID for IAccessible2 and ISimpleDOM.
LONG unique_id_win() const { return unique_id_win_; }
//
// BrowserAccessibility methods.
//
CONTENT_EXPORT virtual void OnDataChanged() override;
CONTENT_EXPORT virtual void OnUpdateFinished() override;
CONTENT_EXPORT virtual void NativeAddReference() override;
CONTENT_EXPORT virtual void NativeReleaseReference() override;
CONTENT_EXPORT virtual bool IsNative() const override;
CONTENT_EXPORT virtual void OnLocationChanged() override;
//
// IAccessible methods.
//
// Performs the default action on a given object.
CONTENT_EXPORT STDMETHODIMP accDoDefaultAction(VARIANT var_id) override;
// Retrieves the child element or child object at a given point on the screen.
CONTENT_EXPORT STDMETHODIMP
accHitTest(LONG x_left, LONG y_top, VARIANT* child) override;
// Retrieves the specified object's current screen location.
CONTENT_EXPORT STDMETHODIMP accLocation(LONG* x_left,
LONG* y_top,
LONG* width,
LONG* height,
VARIANT var_id) override;
// Traverses to another UI element and retrieves the object.
CONTENT_EXPORT STDMETHODIMP
accNavigate(LONG nav_dir, VARIANT start, VARIANT* end) override;
// Retrieves an IDispatch interface pointer for the specified child.
CONTENT_EXPORT STDMETHODIMP
get_accChild(VARIANT var_child, IDispatch** disp_child) override;
// Retrieves the number of accessible children.
CONTENT_EXPORT STDMETHODIMP get_accChildCount(LONG* child_count) override;
// Retrieves a string that describes the object's default action.
CONTENT_EXPORT STDMETHODIMP
get_accDefaultAction(VARIANT var_id, BSTR* default_action) override;
// Retrieves the object's description.
CONTENT_EXPORT STDMETHODIMP
get_accDescription(VARIANT var_id, BSTR* desc) override;
// Retrieves the object that has the keyboard focus.
CONTENT_EXPORT STDMETHODIMP get_accFocus(VARIANT* focus_child) override;
// Retrieves the help information associated with the object.
CONTENT_EXPORT STDMETHODIMP get_accHelp(VARIANT var_id, BSTR* heflp) override;
// Retrieves the specified object's shortcut.
CONTENT_EXPORT STDMETHODIMP
get_accKeyboardShortcut(VARIANT var_id, BSTR* access_key) override;
// Retrieves the name of the specified object.
CONTENT_EXPORT STDMETHODIMP get_accName(VARIANT var_id, BSTR* name) override;
// Retrieves the IDispatch interface of the object's parent.
CONTENT_EXPORT STDMETHODIMP get_accParent(IDispatch** disp_parent) override;
// Retrieves information describing the role of the specified object.
CONTENT_EXPORT STDMETHODIMP
get_accRole(VARIANT var_id, VARIANT* role) override;
// Retrieves the current state of the specified object.
CONTENT_EXPORT STDMETHODIMP
get_accState(VARIANT var_id, VARIANT* state) override;
// Returns the value associated with the object.
CONTENT_EXPORT STDMETHODIMP
get_accValue(VARIANT var_id, BSTR* value) override;
// Make an object take focus or extend the selection.
CONTENT_EXPORT STDMETHODIMP
accSelect(LONG flags_sel, VARIANT var_id) override;
CONTENT_EXPORT STDMETHODIMP
get_accHelpTopic(BSTR* help_file, VARIANT var_id, LONG* topic_id) override;
CONTENT_EXPORT STDMETHODIMP get_accSelection(VARIANT* selected) override;
// Deprecated methods, not implemented.
CONTENT_EXPORT STDMETHODIMP
put_accName(VARIANT var_id, BSTR put_name) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
put_accValue(VARIANT var_id, BSTR put_val) override {
return E_NOTIMPL;
}
//
// IAccessible2 methods.
//
// Returns role from a longer list of possible roles.
CONTENT_EXPORT STDMETHODIMP role(LONG* role) override;
// Returns the state bitmask from a larger set of possible states.
CONTENT_EXPORT STDMETHODIMP get_states(AccessibleStates* states) override;
// Returns the attributes specific to this IAccessible2 object,
// such as a cell's formula.
CONTENT_EXPORT STDMETHODIMP get_attributes(BSTR* attributes) override;
// Get the unique ID of this object so that the client knows if it's
// been encountered previously.
CONTENT_EXPORT STDMETHODIMP get_uniqueID(LONG* unique_id) override;
// Get the window handle of the enclosing window.
CONTENT_EXPORT STDMETHODIMP get_windowHandle(HWND* window_handle) override;
// Get this object's index in its parent object.
CONTENT_EXPORT STDMETHODIMP get_indexInParent(LONG* index_in_parent) override;
CONTENT_EXPORT STDMETHODIMP get_nRelations(LONG* n_relations) override;
CONTENT_EXPORT STDMETHODIMP
get_relation(LONG relation_index, IAccessibleRelation** relation) override;
CONTENT_EXPORT STDMETHODIMP get_relations(LONG max_relations,
IAccessibleRelation** relations,
LONG* n_relations) override;
CONTENT_EXPORT STDMETHODIMP scrollTo(enum IA2ScrollType scroll_type) override;
CONTENT_EXPORT STDMETHODIMP
scrollToPoint(enum IA2CoordinateType coordinate_type,
LONG x,
LONG y) override;
CONTENT_EXPORT STDMETHODIMP
get_groupPosition(LONG* group_level,
LONG* similar_items_in_group,
LONG* position_in_group) override;
//
// IAccessibleEx methods not implemented.
//
CONTENT_EXPORT STDMETHODIMP get_extendedRole(BSTR* extended_role) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_localizedExtendedRole(BSTR* localized_extended_role) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_nExtendedStates(LONG* n_extended_states) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_extendedStates(LONG max_extended_states,
BSTR** extended_states,
LONG* n_extended_states) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_localizedExtendedStates(LONG max_localized_extended_states,
BSTR** localized_extended_states,
LONG* n_localized_extended_states) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_locale(IA2Locale* locale) override {
return E_NOTIMPL;
}
//
// IAccessibleApplication methods.
//
CONTENT_EXPORT STDMETHODIMP get_appName(BSTR* app_name) override;
CONTENT_EXPORT STDMETHODIMP get_appVersion(BSTR* app_version) override;
CONTENT_EXPORT STDMETHODIMP get_toolkitName(BSTR* toolkit_name) override;
CONTENT_EXPORT STDMETHODIMP
get_toolkitVersion(BSTR* toolkit_version) override;
//
// IAccessibleImage methods.
//
CONTENT_EXPORT STDMETHODIMP get_description(BSTR* description) override;
CONTENT_EXPORT STDMETHODIMP
get_imagePosition(enum IA2CoordinateType coordinate_type,
LONG* x,
LONG* y) override;
CONTENT_EXPORT STDMETHODIMP get_imageSize(LONG* height, LONG* width) override;
//
// IAccessibleTable methods.
//
// get_description - also used by IAccessibleImage
CONTENT_EXPORT STDMETHODIMP
get_accessibleAt(long row, long column, IUnknown** accessible) override;
CONTENT_EXPORT STDMETHODIMP get_caption(IUnknown** accessible) override;
CONTENT_EXPORT STDMETHODIMP
get_childIndex(long row_index, long column_index, long* cell_index) override;
CONTENT_EXPORT STDMETHODIMP
get_columnDescription(long column, BSTR* description) override;
CONTENT_EXPORT STDMETHODIMP
get_columnExtentAt(long row, long column, long* n_columns_spanned) override;
CONTENT_EXPORT STDMETHODIMP
get_columnHeader(IAccessibleTable** accessible_table,
long* starting_row_index) override;
CONTENT_EXPORT STDMETHODIMP
get_columnIndex(long cell_index, long* column_index) override;
CONTENT_EXPORT STDMETHODIMP get_nColumns(long* column_count) override;
CONTENT_EXPORT STDMETHODIMP get_nRows(long* row_count) override;
CONTENT_EXPORT STDMETHODIMP get_nSelectedChildren(long* cell_count) override;
CONTENT_EXPORT STDMETHODIMP get_nSelectedColumns(long* column_count) override;
CONTENT_EXPORT STDMETHODIMP get_nSelectedRows(long* row_count) override;
CONTENT_EXPORT STDMETHODIMP
get_rowDescription(long row, BSTR* description) override;
CONTENT_EXPORT STDMETHODIMP
get_rowExtentAt(long row, long column, long* n_rows_spanned) override;
CONTENT_EXPORT STDMETHODIMP
get_rowHeader(IAccessibleTable** accessible_table,
long* starting_column_index) override;
CONTENT_EXPORT STDMETHODIMP
get_rowIndex(long cell_index, long* row_index) override;
CONTENT_EXPORT STDMETHODIMP get_selectedChildren(long max_children,
long** children,
long* n_children) override;
CONTENT_EXPORT STDMETHODIMP get_selectedColumns(long max_columns,
long** columns,
long* n_columns) override;
CONTENT_EXPORT STDMETHODIMP
get_selectedRows(long max_rows, long** rows, long* n_rows) override;
CONTENT_EXPORT STDMETHODIMP get_summary(IUnknown** accessible) override;
CONTENT_EXPORT STDMETHODIMP
get_isColumnSelected(long column, boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP
get_isRowSelected(long row, boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP
get_isSelected(long row, long column, boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP
get_rowColumnExtentsAtIndex(long index,
long* row,
long* column,
long* row_extents,
long* column_extents,
boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP selectRow(long row) override { return E_NOTIMPL; }
CONTENT_EXPORT STDMETHODIMP selectColumn(long column) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP unselectRow(long row) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP unselectColumn(long column) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_modelChange(IA2TableModelChange* model_change) override {
return E_NOTIMPL;
}
//
// IAccessibleTable2 methods.
//
// (Most of these are duplicates of IAccessibleTable methods, only the
// unique ones are included here.)
//
CONTENT_EXPORT STDMETHODIMP
get_cellAt(long row, long column, IUnknown** cell) override;
CONTENT_EXPORT STDMETHODIMP get_nSelectedCells(long* cell_count) override;
CONTENT_EXPORT STDMETHODIMP
get_selectedCells(IUnknown*** cells, long* n_selected_cells) override;
CONTENT_EXPORT STDMETHODIMP
get_selectedColumns(long** columns, long* n_columns) override;
CONTENT_EXPORT STDMETHODIMP
get_selectedRows(long** rows, long* n_rows) override;
//
// IAccessibleTableCell methods.
//
CONTENT_EXPORT STDMETHODIMP
get_columnExtent(long* n_columns_spanned) override;
CONTENT_EXPORT STDMETHODIMP
get_columnHeaderCells(IUnknown*** cell_accessibles,
long* n_column_header_cells) override;
CONTENT_EXPORT STDMETHODIMP get_columnIndex(long* column_index) override;
CONTENT_EXPORT STDMETHODIMP get_rowExtent(long* n_rows_spanned) override;
CONTENT_EXPORT STDMETHODIMP
get_rowHeaderCells(IUnknown*** cell_accessibles,
long* n_row_header_cells) override;
CONTENT_EXPORT STDMETHODIMP get_rowIndex(long* row_index) override;
CONTENT_EXPORT STDMETHODIMP get_isSelected(boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP
get_rowColumnExtents(long* row,
long* column,
long* row_extents,
long* column_extents,
boolean* is_selected) override;
CONTENT_EXPORT STDMETHODIMP get_table(IUnknown** table) override;
//
// IAccessibleText methods.
//
CONTENT_EXPORT STDMETHODIMP get_nCharacters(LONG* n_characters) override;
CONTENT_EXPORT STDMETHODIMP get_caretOffset(LONG* offset) override;
CONTENT_EXPORT STDMETHODIMP
get_characterExtents(LONG offset,
enum IA2CoordinateType coord_type,
LONG* out_x,
LONG* out_y,
LONG* out_width,
LONG* out_height) override;
CONTENT_EXPORT STDMETHODIMP get_nSelections(LONG* n_selections) override;
CONTENT_EXPORT STDMETHODIMP get_selection(LONG selection_index,
LONG* start_offset,
LONG* end_offset) override;
CONTENT_EXPORT STDMETHODIMP
get_text(LONG start_offset, LONG end_offset, BSTR* text) override;
CONTENT_EXPORT STDMETHODIMP
get_textAtOffset(LONG offset,
enum IA2TextBoundaryType boundary_type,
LONG* start_offset,
LONG* end_offset,
BSTR* text) override;
CONTENT_EXPORT STDMETHODIMP
get_textBeforeOffset(LONG offset,
enum IA2TextBoundaryType boundary_type,
LONG* start_offset,
LONG* end_offset,
BSTR* text) override;
CONTENT_EXPORT STDMETHODIMP
get_textAfterOffset(LONG offset,
enum IA2TextBoundaryType boundary_type,
LONG* start_offset,
LONG* end_offset,
BSTR* text) override;
CONTENT_EXPORT STDMETHODIMP get_newText(IA2TextSegment* new_text) override;
CONTENT_EXPORT STDMETHODIMP get_oldText(IA2TextSegment* old_text) override;
CONTENT_EXPORT STDMETHODIMP
get_offsetAtPoint(LONG x,
LONG y,
enum IA2CoordinateType coord_type,
LONG* offset) override;
CONTENT_EXPORT STDMETHODIMP
scrollSubstringTo(LONG start_index,
LONG end_index,
enum IA2ScrollType scroll_type) override;
CONTENT_EXPORT STDMETHODIMP
scrollSubstringToPoint(LONG start_index,
LONG end_index,
enum IA2CoordinateType coordinate_type,
LONG x,
LONG y) override;
CONTENT_EXPORT STDMETHODIMP
addSelection(LONG start_offset, LONG end_offset) override;
CONTENT_EXPORT STDMETHODIMP removeSelection(LONG selection_index) override;
CONTENT_EXPORT STDMETHODIMP setCaretOffset(LONG offset) override;
CONTENT_EXPORT STDMETHODIMP setSelection(LONG selection_index,
LONG start_offset,
LONG end_offset) override;
// IAccessibleText methods not implemented.
CONTENT_EXPORT STDMETHODIMP get_attributes(LONG offset,
LONG* start_offset,
LONG* end_offset,
BSTR* text_attributes) override {
return E_NOTIMPL;
}
//
// IAccessibleHypertext methods.
//
CONTENT_EXPORT STDMETHODIMP get_nHyperlinks(long* hyperlink_count) override;
CONTENT_EXPORT STDMETHODIMP
get_hyperlink(long index, IAccessibleHyperlink** hyperlink) override;
CONTENT_EXPORT STDMETHODIMP
get_hyperlinkIndex(long char_index, long* hyperlink_index) override;
// IAccessibleHyperlink not implemented.
CONTENT_EXPORT STDMETHODIMP get_anchor(long index, VARIANT* anchor) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_anchorTarget(long index, VARIANT* anchor_target) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_startIndex(long* index) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_endIndex(long* index) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_valid(boolean* valid) override {
return E_NOTIMPL;
}
// IAccessibleAction not implemented.
CONTENT_EXPORT STDMETHODIMP nActions(long* n_actions) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP doAction(long action_index) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_description(long action_index, BSTR* description) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_keyBinding(long action_index,
long n_max_bindings,
BSTR** key_bindings,
long* n_bindings) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_name(long action_index, BSTR* name) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_localizedName(long action_index, BSTR* localized_name) override {
return E_NOTIMPL;
}
//
// IAccessibleValue methods.
//
CONTENT_EXPORT STDMETHODIMP get_currentValue(VARIANT* value) override;
CONTENT_EXPORT STDMETHODIMP get_minimumValue(VARIANT* value) override;
CONTENT_EXPORT STDMETHODIMP get_maximumValue(VARIANT* value) override;
CONTENT_EXPORT STDMETHODIMP setCurrentValue(VARIANT new_value) override;
//
// ISimpleDOMDocument methods.
//
CONTENT_EXPORT STDMETHODIMP get_URL(BSTR* url) override;
CONTENT_EXPORT STDMETHODIMP get_title(BSTR* title) override;
CONTENT_EXPORT STDMETHODIMP get_mimeType(BSTR* mime_type) override;
CONTENT_EXPORT STDMETHODIMP get_docType(BSTR* doc_type) override;
CONTENT_EXPORT STDMETHODIMP
get_nameSpaceURIForID(short name_space_id, BSTR* name_space_uri) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
put_alternateViewMediaTypes(BSTR* comma_separated_media_types) override {
return E_NOTIMPL;
}
//
// ISimpleDOMNode methods.
//
CONTENT_EXPORT STDMETHODIMP get_nodeInfo(BSTR* node_name,
short* name_space_id,
BSTR* node_value,
unsigned int* num_children,
unsigned int* unique_id,
unsigned short* node_type) override;
CONTENT_EXPORT STDMETHODIMP
get_attributes(unsigned short max_attribs,
BSTR* attrib_names,
short* name_space_id,
BSTR* attrib_values,
unsigned short* num_attribs) override;
CONTENT_EXPORT STDMETHODIMP
get_attributesForNames(unsigned short num_attribs,
BSTR* attrib_names,
short* name_space_id,
BSTR* attrib_values) override;
CONTENT_EXPORT STDMETHODIMP
get_computedStyle(unsigned short max_style_properties,
boolean use_alternate_view,
BSTR* style_properties,
BSTR* style_values,
unsigned short* num_style_properties) override;
CONTENT_EXPORT STDMETHODIMP
get_computedStyleForProperties(unsigned short num_style_properties,
boolean use_alternate_view,
BSTR* style_properties,
BSTR* style_values) override;
CONTENT_EXPORT STDMETHODIMP scrollTo(boolean placeTopLeft) override;
CONTENT_EXPORT STDMETHODIMP get_parentNode(ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP get_firstChild(ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP get_lastChild(ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP
get_previousSibling(ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP get_nextSibling(ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP
get_childAt(unsigned int child_index, ISimpleDOMNode** node) override;
CONTENT_EXPORT STDMETHODIMP get_innerHTML(BSTR* innerHTML) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_localInterface(void** local_interface) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP get_language(BSTR* language) override {
return E_NOTIMPL;
}
//
// ISimpleDOMText methods.
//
CONTENT_EXPORT STDMETHODIMP get_domText(BSTR* dom_text) override;
CONTENT_EXPORT STDMETHODIMP
get_clippedSubstringBounds(unsigned int start_index,
unsigned int end_index,
int* out_x,
int* out_y,
int* out_width,
int* out_height) override;
CONTENT_EXPORT STDMETHODIMP
get_unclippedSubstringBounds(unsigned int start_index,
unsigned int end_index,
int* out_x,
int* out_y,
int* out_width,
int* out_height) override;
CONTENT_EXPORT STDMETHODIMP
scrollToSubstring(unsigned int start_index, unsigned int end_index) override;
CONTENT_EXPORT STDMETHODIMP get_fontFamily(BSTR* font_family) override {
return E_NOTIMPL;
}
//
// IServiceProvider methods.
//
CONTENT_EXPORT STDMETHODIMP
QueryService(REFGUID guidService, REFIID riid, void** object) override;
// IAccessibleEx methods not implemented.
CONTENT_EXPORT STDMETHODIMP
GetObjectForChild(long child_id, IAccessibleEx** ret) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
GetIAccessiblePair(IAccessible** acc, long* child_id) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP GetRuntimeId(SAFEARRAY** runtime_id) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
ConvertReturnedElement(IRawElementProviderSimple* element,
IAccessibleEx** acc) override {
return E_NOTIMPL;
}
//
// IRawElementProviderSimple methods.
//
// The GetPatternProvider/GetPropertyValue methods need to be implemented for
// the on-screen keyboard to show up in Windows 8 metro.
CONTENT_EXPORT STDMETHODIMP
GetPatternProvider(PATTERNID id, IUnknown** provider) override;
CONTENT_EXPORT STDMETHODIMP
GetPropertyValue(PROPERTYID id, VARIANT* ret) override;
//
// IRawElementProviderSimple methods not implemented
//
CONTENT_EXPORT STDMETHODIMP
get_ProviderOptions(enum ProviderOptions* ret) override {
return E_NOTIMPL;
}
CONTENT_EXPORT STDMETHODIMP
get_HostRawElementProvider(IRawElementProviderSimple** provider) override {
return E_NOTIMPL;
}
//
// CComObjectRootEx methods.
//
// Called by BEGIN_COM_MAP() / END_COM_MAP().
static CONTENT_EXPORT HRESULT WINAPI
InternalQueryInterface(void* this_ptr,
const _ATL_INTMAP_ENTRY* entries,
REFIID iid,
void** object);
// Accessors.
int32 ia_role() const { return ia_role_; }
int32 ia_state() const { return ia_state_; }
const base::string16& role_name() const { return role_name_; }
int32 ia2_role() const { return ia2_role_; }
int32 ia2_state() const { return ia2_state_; }
const std::vector<base::string16>& ia2_attributes() const {
return ia2_attributes_;
}
private:
// Add one to the reference count and return the same object. Always
// use this method when returning a BrowserAccessibilityWin object as
// an output parameter to a COM interface, never use it otherwise.
BrowserAccessibilityWin* NewReference();
// Many MSAA methods take a var_id parameter indicating that the operation
// should be performed on a particular child ID, rather than this object.
// This method tries to figure out the target object from |var_id| and
// returns a pointer to the target object if it exists, otherwise NULL.
// Does not return a new reference.
BrowserAccessibilityWin* GetTargetFromChildID(const VARIANT& var_id);
// Initialize the role and state metadata from the role enum and state
// bitmasks defined in ui::AXNodeData.
void InitRoleAndState();
// Retrieve the value of an attribute from the string attribute map and
// if found and nonempty, allocate a new BSTR (with SysAllocString)
// and return S_OK. If not found or empty, return S_FALSE.
HRESULT GetStringAttributeAsBstr(
ui::AXStringAttribute attribute,
BSTR* value_bstr);
// If the string attribute |attribute| is present, add its value as an
// IAccessible2 attribute with the name |ia2_attr|.
void StringAttributeToIA2(ui::AXStringAttribute attribute,
const char* ia2_attr);
// If the bool attribute |attribute| is present, add its value as an
// IAccessible2 attribute with the name |ia2_attr|.
void BoolAttributeToIA2(ui::AXBoolAttribute attribute,
const char* ia2_attr);
// If the int attribute |attribute| is present, add its value as an
// IAccessible2 attribute with the name |ia2_attr|.
void IntAttributeToIA2(ui::AXIntAttribute attribute,
const char* ia2_attr);
// Get the value text, which might come from the floating-point
// value for some roles.
base::string16 GetValueText();
// Get the text of this node for the purposes of IAccessibleText - it may
// be the name, it may be the value, etc. depending on the role.
base::string16 TextForIAccessibleText();
// If offset is a member of IA2TextSpecialOffsets this function updates the
// value of offset and returns, otherwise offset remains unchanged.
void HandleSpecialTextOffset(const base::string16& text, LONG* offset);
// Convert from a IA2TextBoundaryType to a ui::TextBoundaryType.
ui::TextBoundaryType IA2TextBoundaryToTextBoundary(IA2TextBoundaryType type);
// Search forwards (direction == 1) or backwards (direction == -1)
// from the given offset until the given boundary is found, and
// return the offset of that boundary.
LONG FindBoundary(const base::string16& text,
IA2TextBoundaryType ia2_boundary,
LONG start_offset,
ui::TextBoundaryDirection direction);
// Return a pointer to the object corresponding to the given id,
// does not make a new reference.
BrowserAccessibilityWin* GetFromID(int32 id);
// Windows-specific unique ID (unique within the browser process),
// used for get_accChild, NotifyWinEvent, and as the unique ID for
// IAccessible2 and ISimpleDOM.
LONG unique_id_win_;
// IAccessible role and state.
int32 ia_role_;
int32 ia_state_;
base::string16 role_name_;
// IAccessible2 role and state.
int32 ia2_role_;
int32 ia2_state_;
// IAccessible2 attributes.
std::vector<base::string16> ia2_attributes_;
// True in Initialize when the object is first created, and false
// subsequent times.
bool first_time_;
// The previous text, before the last update to this object.
base::string16 previous_text_;
// The old text to return in IAccessibleText::get_oldText - this is like
// previous_text_ except that it's NOT updated when the object
// is initialized again but the text doesn't change.
base::string16 old_text_;
// The previous state, used to see if there was a state change.
int32 old_ia_state_;
// Relationships between this node and other nodes.
std::vector<BrowserAccessibilityRelation*> relations_;
// The text of this node including embedded hyperlink characters.
base::string16 hypertext_;
// Maps the |hypertext_| embedded character offset to an index in
// |hyperlinks_|.
std::map<int32, int32> hyperlink_offset_to_index_;
// Collection of non-static text child indicies, each of which corresponds to
// a hyperlink.
std::vector<int32> hyperlinks_;
// The previous scroll position, so we can tell if this object scrolled.
int previous_scroll_x_;
int previous_scroll_y_;
// The next unique id to use.
static LONG next_unique_id_win_;
// Give BrowserAccessibility::Create access to our constructor.
friend class BrowserAccessibility;
friend class BrowserAccessibilityRelation;
DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityWin);
};
} // namespace content
#endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
|