mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
115 lines
3.0 KiB
C++
115 lines
3.0 KiB
C++
/* -*- 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 "InterfaceInitFuncs.h"
|
|
|
|
#include "AccessibleWrap.h"
|
|
#include "nsAccUtils.h"
|
|
#include "nsCoreUtils.h"
|
|
#include "nsMai.h"
|
|
#include "mozilla/Likely.h"
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
extern "C" {
|
|
|
|
static AtkObject*
|
|
refAccessibleAtPointCB(AtkComponent* aComponent, gint aAccX, gint aAccY,
|
|
AtkCoordType aCoordType)
|
|
{
|
|
return refAccessibleAtPointHelper(GetAccessibleWrap(ATK_OBJECT(aComponent)),
|
|
aAccX, aAccY, aCoordType);
|
|
}
|
|
|
|
static void
|
|
getExtentsCB(AtkComponent* aComponent, gint* aX, gint* aY,
|
|
gint* aWidth, gint* aHeight, AtkCoordType aCoordType)
|
|
{
|
|
getExtentsHelper(GetAccessibleWrap(ATK_OBJECT(aComponent)),
|
|
aX, aY, aWidth, aHeight, aCoordType);
|
|
}
|
|
|
|
static gboolean
|
|
grabFocusCB(AtkComponent* aComponent)
|
|
{
|
|
AccessibleWrap* accWrap = GetAccessibleWrap(ATK_OBJECT(aComponent));
|
|
if (!accWrap)
|
|
return FALSE;
|
|
|
|
accWrap->TakeFocus();
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
AtkObject*
|
|
refAccessibleAtPointHelper(AccessibleWrap* aAccWrap, gint aX, gint aY,
|
|
AtkCoordType aCoordType)
|
|
{
|
|
if (!aAccWrap || aAccWrap->IsDefunct() || nsAccUtils::MustPrune(aAccWrap))
|
|
return nullptr;
|
|
|
|
// Accessible::ChildAtPoint(x,y) is in screen pixels.
|
|
if (aCoordType == ATK_XY_WINDOW) {
|
|
nsIntPoint winCoords =
|
|
nsCoreUtils::GetScreenCoordsForWindow(aAccWrap->GetNode());
|
|
aX += winCoords.x;
|
|
aY += winCoords.y;
|
|
}
|
|
|
|
Accessible* accAtPoint = aAccWrap->ChildAtPoint(aX, aY,
|
|
Accessible::eDirectChild);
|
|
if (!accAtPoint)
|
|
return nullptr;
|
|
|
|
AtkObject* atkObj = AccessibleWrap::GetAtkObject(accAtPoint);
|
|
if (atkObj)
|
|
g_object_ref(atkObj);
|
|
return atkObj;
|
|
}
|
|
|
|
void
|
|
getExtentsHelper(AccessibleWrap* aAccWrap,
|
|
gint* aX, gint* aY, gint* aWidth, gint* aHeight,
|
|
AtkCoordType aCoordType)
|
|
{
|
|
*aX = *aY = *aWidth = *aHeight = 0;
|
|
|
|
if (!aAccWrap || aAccWrap->IsDefunct())
|
|
return;
|
|
|
|
nsIntRect screenRect = aAccWrap->Bounds();
|
|
if (screenRect.IsEmpty())
|
|
return;
|
|
|
|
if (aCoordType == ATK_XY_WINDOW) {
|
|
nsIntPoint winCoords =
|
|
nsCoreUtils::GetScreenCoordsForWindow(aAccWrap->GetNode());
|
|
screenRect.x -= winCoords.x;
|
|
screenRect.y -= winCoords.y;
|
|
}
|
|
|
|
*aX = screenRect.x;
|
|
*aY = screenRect.y;
|
|
*aWidth = screenRect.width;
|
|
*aHeight = screenRect.height;
|
|
}
|
|
|
|
void
|
|
componentInterfaceInitCB(AtkComponentIface* aIface)
|
|
{
|
|
NS_ASSERTION(aIface, "Invalid Interface");
|
|
if(MOZ_UNLIKELY(!aIface))
|
|
return;
|
|
|
|
/*
|
|
* Use default implementation in atk for contains, get_position,
|
|
* and get_size
|
|
*/
|
|
aIface->ref_accessible_at_point = refAccessibleAtPointCB;
|
|
aIface->get_extents = getExtentsCB;
|
|
aIface->grab_focus = grabFocusCB;
|
|
}
|