summaryrefslogtreecommitdiffstats
path: root/accessible/windows/msaa/GeckoCustom.cpp
blob: 8facb84c0b9da6deb8fc1ff7a77b3ff295b8aafc (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* 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 "GeckoCustom.h"

using namespace mozilla;
using namespace mozilla::a11y;

IMPL_IUNKNOWN_QUERY_HEAD(GeckoCustom)
IMPL_IUNKNOWN_QUERY_IFACE(IGeckoCustom)
IMPL_IUNKNOWN_QUERY_TAIL_AGGREGATED(mAcc)

HRESULT
GeckoCustom::get_anchorCount(long* aCount) {
  *aCount = mAcc->AnchorCount();
  return S_OK;
}

HRESULT
GeckoCustom::get_boundsInCSSPixels(int32_t* aX, int32_t* aY, int32_t* aWidth,
                                   int32_t* aHeight) {
  nsIntRect bounds = mAcc->BoundsInCSSPixels();
  if (!bounds.IsEmpty()) {
    *aX = bounds.X();
    *aY = bounds.Y();
    *aWidth = bounds.Width();
    *aHeight = bounds.Height();
  }

  return S_OK;
}

HRESULT
GeckoCustom::get_DOMNodeID(BSTR* aID) {
  nsIContent* content = mAcc->GetContent();
  if (!content) {
    return S_OK;
  }

  nsAtom* id = content->GetID();
  if (id) {
    nsAutoString idStr;
    id->ToString(idStr);
    *aID = ::SysAllocStringLen(idStr.get(), idStr.Length());
  }
  return S_OK;
}

STDMETHODIMP
GeckoCustom::get_ID(uint64_t* aID) {
  *aID = mAcc->IsDoc() ? 0 : reinterpret_cast<uintptr_t>(mAcc.get());
  return S_OK;
}

STDMETHODIMP
GeckoCustom::get_minimumIncrement(double* aIncrement) {
  *aIncrement = mAcc->Step();
  return S_OK;
}

STDMETHODIMP
GeckoCustom::get_mozState(uint64_t* aState) {
  *aState = mAcc->State();
  return S_OK;
}