summaryrefslogtreecommitdiffstats
path: root/accessible/windows/msaa/HTMLWin32ObjectAccessible.cpp
blob: 3644db68d7d827427bd43c60ac05f9254be425f5 (plain)
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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "HTMLWin32ObjectAccessible.h"

#include "Role.h"
#include "States.h"

using namespace mozilla::a11y;

////////////////////////////////////////////////////////////////////////////////
// HTMLWin32ObjectOwnerAccessible
////////////////////////////////////////////////////////////////////////////////

HTMLWin32ObjectOwnerAccessible::
  HTMLWin32ObjectOwnerAccessible(nsIContent* aContent,
                                 DocAccessible* aDoc, void* aHwnd) :
  AccessibleWrap(aContent, aDoc), mHwnd(aHwnd)
{
  mStateFlags |= eNoKidsFromDOM;

  // Our only child is a HTMLWin32ObjectAccessible object.
  if (mHwnd) {
    mNativeAccessible = new HTMLWin32ObjectAccessible(mHwnd, aDoc);
    AppendChild(mNativeAccessible);
  }
}

////////////////////////////////////////////////////////////////////////////////
// HTMLWin32ObjectOwnerAccessible: Accessible implementation

void
HTMLWin32ObjectOwnerAccessible::Shutdown()
{
  AccessibleWrap::Shutdown();
  mNativeAccessible = nullptr;
}

role
HTMLWin32ObjectOwnerAccessible::NativeRole()
{
  return roles::EMBEDDED_OBJECT;
}

bool
HTMLWin32ObjectOwnerAccessible::NativelyUnavailable() const
{
  // XXX: No HWND means this is windowless plugin which is not accessible in
  // the meantime.
  return !mHwnd;
}

////////////////////////////////////////////////////////////////////////////////
// HTMLWin32ObjectAccessible
////////////////////////////////////////////////////////////////////////////////

HTMLWin32ObjectAccessible::HTMLWin32ObjectAccessible(void* aHwnd,
                                                     DocAccessible* aDoc) :
  DummyAccessible(aDoc)
{
  mHwnd = aHwnd;
  if (mHwnd) {
#if defined(MOZ_CONTENT_SANDBOX)
    if (XRE_IsContentProcess()) {
      DocAccessibleChild* ipcDoc = aDoc->IPCDoc();
      MOZ_ASSERT(ipcDoc);
      if (!ipcDoc) {
        return;
      }

      IAccessibleHolder proxyHolder;
      if (!ipcDoc->SendGetWindowedPluginIAccessible(
              reinterpret_cast<uintptr_t>(mHwnd), &proxyHolder)) {
        return;
      }

      mCOMProxy.reset(proxyHolder.Release());
      return;
    }
#endif

    // The plugin is not windowless. In this situation we use 
    // use its inner child owned by the plugin so that we don't get
    // in an infinite loop, where the WM_GETOBJECT's get forwarded
    // back to us and create another HTMLWin32ObjectAccessible
    mHwnd = ::GetWindow((HWND)aHwnd, GW_CHILD);
  }
}

void
HTMLWin32ObjectAccessible::GetNativeInterface(void** aNativeAccessible)
{
#if defined(MOZ_CONTENT_SANDBOX)
  if (XRE_IsContentProcess()) {
    RefPtr<IAccessible> addRefed = mCOMProxy.get();
    addRefed.forget(aNativeAccessible);
    return;
  }
#endif

  if (mHwnd) {
    ::AccessibleObjectFromWindow(static_cast<HWND>(mHwnd),
                                 OBJID_WINDOW, IID_IAccessible,
                                 aNativeAccessible);
  }
}