uiaRawElmProvider.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  4. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef mozilla_a11y_uiaRawElmProvider_h__
  6. #define mozilla_a11y_uiaRawElmProvider_h__
  7. #include "objbase.h"
  8. #include "AccessibleWrap.h"
  9. #include "IUnknownImpl.h"
  10. #include "uiautomation.h"
  11. namespace mozilla {
  12. namespace a11y {
  13. class AccessibleWrap;
  14. /**
  15. * IRawElementProviderSimple implementation (maintains IAccessibleEx approach).
  16. */
  17. class uiaRawElmProvider final : public IAccessibleEx,
  18. public IRawElementProviderSimple
  19. {
  20. public:
  21. uiaRawElmProvider(AccessibleWrap* aAcc) : mAcc(aAcc) { }
  22. // IUnknown
  23. DECL_IUNKNOWN
  24. // IAccessibleEx
  25. virtual HRESULT STDMETHODCALLTYPE GetObjectForChild(
  26. /* [in] */ long aIdChild,
  27. /* [retval][out] */ __RPC__deref_out_opt IAccessibleEx** aAccEx);
  28. virtual HRESULT STDMETHODCALLTYPE GetIAccessiblePair(
  29. /* [out] */ __RPC__deref_out_opt IAccessible** aAcc,
  30. /* [out] */ __RPC__out long* aIdChild);
  31. virtual HRESULT STDMETHODCALLTYPE GetRuntimeId(
  32. /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY** aRuntimeIds);
  33. virtual HRESULT STDMETHODCALLTYPE ConvertReturnedElement(
  34. /* [in] */ __RPC__in_opt IRawElementProviderSimple* aRawElmProvider,
  35. /* [out] */ __RPC__deref_out_opt IAccessibleEx** aAccEx);
  36. // IRawElementProviderSimple
  37. virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_ProviderOptions(
  38. /* [retval][out] */ __RPC__out enum ProviderOptions* aProviderOptions);
  39. virtual HRESULT STDMETHODCALLTYPE GetPatternProvider(
  40. /* [in] */ PATTERNID aPatternId,
  41. /* [retval][out] */ __RPC__deref_out_opt IUnknown** aPatternProvider);
  42. virtual HRESULT STDMETHODCALLTYPE GetPropertyValue(
  43. /* [in] */ PROPERTYID aPropertyId,
  44. /* [retval][out] */ __RPC__out VARIANT* aPropertyValue);
  45. virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_HostRawElementProvider(
  46. /* [retval][out] */ __RPC__deref_out_opt IRawElementProviderSimple** aRawElmProvider);
  47. private:
  48. uiaRawElmProvider() = delete;
  49. uiaRawElmProvider& operator =(const uiaRawElmProvider&) = delete;
  50. uiaRawElmProvider(const uiaRawElmProvider&) = delete;
  51. protected:
  52. RefPtr<AccessibleWrap> mAcc;
  53. };
  54. } // a11y namespace
  55. } // mozilla namespace
  56. #endif