static AtkObject* RefAccessibleAtPoint(AtkComponent* aComponent, gint aX, gint aY, AtkCoordType aCoordType) { NS_ENSURE_TRUE(MAI_IS_ATK_SOCKET(aComponent), nsnull); return refAccessibleAtPointHelper(MAI_ATK_SOCKET(aComponent)->accWrap, aX, aY, aCoordType); }
void AtkSocketAccessible::Shutdown() { if (mAtkObject) { if (MAI_IS_ATK_SOCKET(mAtkObject)) MAI_ATK_SOCKET(mAtkObject)->accWrap = nsnull; g_object_unref(mAtkObject); mAtkObject = nsnull; } nsAccessibleWrap::Shutdown(); }
static void GetExtents(AtkComponent* aComponent, gint* aX, gint* aY, gint* aWidth, gint* aHeight, AtkCoordType aCoordType) { *aX = *aY = *aWidth = *aHeight = 0; if (!MAI_IS_ATK_SOCKET(aComponent)) return; getExtentsHelper(MAI_ATK_SOCKET(aComponent)->accWrap, aX, aY, aWidth, aHeight, aCoordType); }