Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAccessible.idl
*/
#ifndef __gen_nsIAccessible_h__
#define __gen_nsIAccessible_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIArray_h__
#include "nsIArray.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIPersistentProperties; /* forward declaration */
class nsIDOMCSSPrimitiveValue; /* forward declaration */
class nsIDOMNode; /* forward declaration */
class nsIAccessibleDocument; /* forward declaration */
class nsIAccessibleRelation; /* forward declaration */
namespace mozilla {
namespace a11y {
class Accessible;
}
}
/* starting interface: nsIAccessible */
#define NS_IACCESSIBLE_IID_STR "66b110b0-c25a-4784-8623-f6ba40c7cfee"
#define NS_IACCESSIBLE_IID \
{0x66b110b0, 0xc25a, 0x4784, \
{ 0x86, 0x23, 0xf6, 0xba, 0x40, 0xc7, 0xcf, 0xee }}
class nsIAccessible : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IACCESSIBLE_IID)
/* readonly attribute nsIAccessible parent; */
NS_IMETHOD GetParent(nsIAccessible * *aParent) = 0;
/* readonly attribute nsIAccessible nextSibling; */
NS_IMETHOD GetNextSibling(nsIAccessible * *aNextSibling) = 0;
/* readonly attribute nsIAccessible previousSibling; */
NS_IMETHOD GetPreviousSibling(nsIAccessible * *aPreviousSibling) = 0;
/* readonly attribute nsIAccessible firstChild; */
NS_IMETHOD GetFirstChild(nsIAccessible * *aFirstChild) = 0;
/* readonly attribute nsIAccessible lastChild; */
NS_IMETHOD GetLastChild(nsIAccessible * *aLastChild) = 0;
/* readonly attribute nsIArray children; */
NS_IMETHOD GetChildren(nsIArray * *aChildren) = 0;
/* readonly attribute long childCount; */
NS_IMETHOD GetChildCount(int32_t *aChildCount) = 0;
/* readonly attribute long indexInParent; */
NS_IMETHOD GetIndexInParent(int32_t *aIndexInParent) = 0;
/* readonly attribute nsIDOMNode DOMNode; */
NS_IMETHOD GetDOMNode(nsIDOMNode * *aDOMNode) = 0;
/* readonly attribute nsIAccessibleDocument document; */
NS_IMETHOD GetDocument(nsIAccessibleDocument * *aDocument) = 0;
/* readonly attribute nsIAccessibleDocument rootDocument; */
NS_IMETHOD GetRootDocument(nsIAccessibleDocument * *aRootDocument) = 0;
/* readonly attribute DOMString language; */
NS_IMETHOD GetLanguage(nsAString & aLanguage) = 0;
/* readonly attribute AString name; */
NS_IMETHOD GetName(nsAString & aName) = 0;
/* readonly attribute AString value; */
NS_IMETHOD GetValue(nsAString & aValue) = 0;
/* readonly attribute AString description; */
NS_IMETHOD GetDescription(nsAString & aDescription) = 0;
/* readonly attribute AString accessKey; */
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) = 0;
/* readonly attribute AString keyboardShortcut; */
NS_IMETHOD GetKeyboardShortcut(nsAString & aKeyboardShortcut) = 0;
/* readonly attribute unsigned long role; */
NS_IMETHOD GetRole(uint32_t *aRole) = 0;
/* void getState (out unsigned long aState, out unsigned long aExtraState); */
NS_IMETHOD GetState(uint32_t *aState, uint32_t *aExtraState) = 0;
/* readonly attribute AString help; */
NS_IMETHOD GetHelp(nsAString & aHelp) = 0;
/* readonly attribute nsIAccessible focusedChild; */
NS_IMETHOD GetFocusedChild(nsIAccessible * *aFocusedChild) = 0;
/* readonly attribute nsIPersistentProperties attributes; */
NS_IMETHOD GetAttributes(nsIPersistentProperties * *aAttributes) = 0;
/* void groupPosition (out long aGroupLevel, out long aSimilarItemsInGroup, out long aPositionInGroup); */
NS_IMETHOD GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup) = 0;
/* nsIAccessible getChildAtPoint (in long x, in long y); */
NS_IMETHOD GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) = 0;
/* nsIAccessible getDeepestChildAtPoint (in long x, in long y); */
NS_IMETHOD GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) = 0;
/* nsIAccessible getChildAt (in long aChildIndex); */
NS_IMETHOD GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval) = 0;
/* nsIAccessibleRelation getRelationByType (in unsigned long aRelationType); */
NS_IMETHOD GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval) = 0;
/* nsIArray getRelations (); */
NS_IMETHOD GetRelations(nsIArray * *_retval) = 0;
/* void getBounds (out long x, out long y, out long width, out long height); */
NS_IMETHOD GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height) = 0;
/* void setSelected (in boolean isSelected); */
NS_IMETHOD SetSelected(bool isSelected) = 0;
/* void extendSelection (); */
NS_IMETHOD ExtendSelection(void) = 0;
/* void takeSelection (); */
NS_IMETHOD TakeSelection(void) = 0;
/* void takeFocus (); */
NS_IMETHOD TakeFocus(void) = 0;
/* readonly attribute uint8_t actionCount; */
NS_IMETHOD GetActionCount(uint8_t *aActionCount) = 0;
/* AString getActionName (in uint8_t index); */
NS_IMETHOD GetActionName(uint8_t index, nsAString & _retval) = 0;
/* AString getActionDescription (in uint8_t aIndex); */
NS_IMETHOD GetActionDescription(uint8_t aIndex, nsAString & _retval) = 0;
/* void doAction (in uint8_t index); */
NS_IMETHOD DoAction(uint8_t index) = 0;
/* void scrollTo (in unsigned long aScrollType); */
NS_IMETHOD ScrollTo(uint32_t aScrollType) = 0;
/* void scrollToPoint (in unsigned long coordinateType, in long x, in long y); */
NS_IMETHOD ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y) = 0;
virtual mozilla::a11y::Accessible* ToInternalAccessible() const = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAccessible, NS_IACCESSIBLE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIACCESSIBLE \
NS_IMETHOD GetParent(nsIAccessible * *aParent) override; \
NS_IMETHOD GetNextSibling(nsIAccessible * *aNextSibling) override; \
NS_IMETHOD GetPreviousSibling(nsIAccessible * *aPreviousSibling) override; \
NS_IMETHOD GetFirstChild(nsIAccessible * *aFirstChild) override; \
NS_IMETHOD GetLastChild(nsIAccessible * *aLastChild) override; \
NS_IMETHOD GetChildren(nsIArray * *aChildren) override; \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override; \
NS_IMETHOD GetIndexInParent(int32_t *aIndexInParent) override; \
NS_IMETHOD GetDOMNode(nsIDOMNode * *aDOMNode) override; \
NS_IMETHOD GetDocument(nsIAccessibleDocument * *aDocument) override; \
NS_IMETHOD GetRootDocument(nsIAccessibleDocument * *aRootDocument) override; \
NS_IMETHOD GetLanguage(nsAString & aLanguage) override; \
NS_IMETHOD GetName(nsAString & aName) override; \
NS_IMETHOD GetValue(nsAString & aValue) override; \
NS_IMETHOD GetDescription(nsAString & aDescription) override; \
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) override; \
NS_IMETHOD GetKeyboardShortcut(nsAString & aKeyboardShortcut) override; \
NS_IMETHOD GetRole(uint32_t *aRole) override; \
NS_IMETHOD GetState(uint32_t *aState, uint32_t *aExtraState) override; \
NS_IMETHOD GetHelp(nsAString & aHelp) override; \
NS_IMETHOD GetFocusedChild(nsIAccessible * *aFocusedChild) override; \
NS_IMETHOD GetAttributes(nsIPersistentProperties * *aAttributes) override; \
NS_IMETHOD GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup) override; \
NS_IMETHOD GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override; \
NS_IMETHOD GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override; \
NS_IMETHOD GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval) override; \
NS_IMETHOD GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval) override; \
NS_IMETHOD GetRelations(nsIArray * *_retval) override; \
NS_IMETHOD GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height) override; \
NS_IMETHOD SetSelected(bool isSelected) override; \
NS_IMETHOD ExtendSelection(void) override; \
NS_IMETHOD TakeSelection(void) override; \
NS_IMETHOD TakeFocus(void) override; \
NS_IMETHOD GetActionCount(uint8_t *aActionCount) override; \
NS_IMETHOD GetActionName(uint8_t index, nsAString & _retval) override; \
NS_IMETHOD GetActionDescription(uint8_t aIndex, nsAString & _retval) override; \
NS_IMETHOD DoAction(uint8_t index) override; \
NS_IMETHOD ScrollTo(uint32_t aScrollType) override; \
NS_IMETHOD ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y) override; \
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIACCESSIBLE \
NS_METHOD GetParent(nsIAccessible * *aParent); \
NS_METHOD GetNextSibling(nsIAccessible * *aNextSibling); \
NS_METHOD GetPreviousSibling(nsIAccessible * *aPreviousSibling); \
NS_METHOD GetFirstChild(nsIAccessible * *aFirstChild); \
NS_METHOD GetLastChild(nsIAccessible * *aLastChild); \
NS_METHOD GetChildren(nsIArray * *aChildren); \
NS_METHOD GetChildCount(int32_t *aChildCount); \
NS_METHOD GetIndexInParent(int32_t *aIndexInParent); \
NS_METHOD GetDOMNode(nsIDOMNode * *aDOMNode); \
NS_METHOD GetDocument(nsIAccessibleDocument * *aDocument); \
NS_METHOD GetRootDocument(nsIAccessibleDocument * *aRootDocument); \
NS_METHOD GetLanguage(nsAString & aLanguage); \
NS_METHOD GetName(nsAString & aName); \
NS_METHOD GetValue(nsAString & aValue); \
NS_METHOD GetDescription(nsAString & aDescription); \
NS_METHOD GetAccessKey(nsAString & aAccessKey); \
NS_METHOD GetKeyboardShortcut(nsAString & aKeyboardShortcut); \
NS_METHOD GetRole(uint32_t *aRole); \
NS_METHOD GetState(uint32_t *aState, uint32_t *aExtraState); \
NS_METHOD GetHelp(nsAString & aHelp); \
NS_METHOD GetFocusedChild(nsIAccessible * *aFocusedChild); \
NS_METHOD GetAttributes(nsIPersistentProperties * *aAttributes); \
NS_METHOD GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup); \
NS_METHOD GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval); \
NS_METHOD GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval); \
NS_METHOD GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval); \
NS_METHOD GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval); \
NS_METHOD GetRelations(nsIArray * *_retval); \
NS_METHOD GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height); \
NS_METHOD SetSelected(bool isSelected); \
NS_METHOD ExtendSelection(void); \
NS_METHOD TakeSelection(void); \
NS_METHOD TakeFocus(void); \
NS_METHOD GetActionCount(uint8_t *aActionCount); \
NS_METHOD GetActionName(uint8_t index, nsAString & _retval); \
NS_METHOD GetActionDescription(uint8_t aIndex, nsAString & _retval); \
NS_METHOD DoAction(uint8_t index); \
NS_METHOD ScrollTo(uint32_t aScrollType); \
NS_METHOD ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y); \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIACCESSIBLE(_to) \
NS_IMETHOD GetParent(nsIAccessible * *aParent) override { return _to GetParent(aParent); } \
NS_IMETHOD GetNextSibling(nsIAccessible * *aNextSibling) override { return _to GetNextSibling(aNextSibling); } \
NS_IMETHOD GetPreviousSibling(nsIAccessible * *aPreviousSibling) override { return _to GetPreviousSibling(aPreviousSibling); } \
NS_IMETHOD GetFirstChild(nsIAccessible * *aFirstChild) override { return _to GetFirstChild(aFirstChild); } \
NS_IMETHOD GetLastChild(nsIAccessible * *aLastChild) override { return _to GetLastChild(aLastChild); } \
NS_IMETHOD GetChildren(nsIArray * *aChildren) override { return _to GetChildren(aChildren); } \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override { return _to GetChildCount(aChildCount); } \
NS_IMETHOD GetIndexInParent(int32_t *aIndexInParent) override { return _to GetIndexInParent(aIndexInParent); } \
NS_IMETHOD GetDOMNode(nsIDOMNode * *aDOMNode) override { return _to GetDOMNode(aDOMNode); } \
NS_IMETHOD GetDocument(nsIAccessibleDocument * *aDocument) override { return _to GetDocument(aDocument); } \
NS_IMETHOD GetRootDocument(nsIAccessibleDocument * *aRootDocument) override { return _to GetRootDocument(aRootDocument); } \
NS_IMETHOD GetLanguage(nsAString & aLanguage) override { return _to GetLanguage(aLanguage); } \
NS_IMETHOD GetName(nsAString & aName) override { return _to GetName(aName); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return _to GetValue(aValue); } \
NS_IMETHOD GetDescription(nsAString & aDescription) override { return _to GetDescription(aDescription); } \
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) override { return _to GetAccessKey(aAccessKey); } \
NS_IMETHOD GetKeyboardShortcut(nsAString & aKeyboardShortcut) override { return _to GetKeyboardShortcut(aKeyboardShortcut); } \
NS_IMETHOD GetRole(uint32_t *aRole) override { return _to GetRole(aRole); } \
NS_IMETHOD GetState(uint32_t *aState, uint32_t *aExtraState) override { return _to GetState(aState, aExtraState); } \
NS_IMETHOD GetHelp(nsAString & aHelp) override { return _to GetHelp(aHelp); } \
NS_IMETHOD GetFocusedChild(nsIAccessible * *aFocusedChild) override { return _to GetFocusedChild(aFocusedChild); } \
NS_IMETHOD GetAttributes(nsIPersistentProperties * *aAttributes) override { return _to GetAttributes(aAttributes); } \
NS_IMETHOD GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup) override { return _to GroupPosition(aGroupLevel, aSimilarItemsInGroup, aPositionInGroup); } \
NS_IMETHOD GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override { return _to GetChildAtPoint(x, y, _retval); } \
NS_IMETHOD GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override { return _to GetDeepestChildAtPoint(x, y, _retval); } \
NS_IMETHOD GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval) override { return _to GetChildAt(aChildIndex, _retval); } \
NS_IMETHOD GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval) override { return _to GetRelationByType(aRelationType, _retval); } \
NS_IMETHOD GetRelations(nsIArray * *_retval) override { return _to GetRelations(_retval); } \
NS_IMETHOD GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height) override { return _to GetBounds(x, y, width, height); } \
NS_IMETHOD SetSelected(bool isSelected) override { return _to SetSelected(isSelected); } \
NS_IMETHOD ExtendSelection(void) override { return _to ExtendSelection(); } \
NS_IMETHOD TakeSelection(void) override { return _to TakeSelection(); } \
NS_IMETHOD TakeFocus(void) override { return _to TakeFocus(); } \
NS_IMETHOD GetActionCount(uint8_t *aActionCount) override { return _to GetActionCount(aActionCount); } \
NS_IMETHOD GetActionName(uint8_t index, nsAString & _retval) override { return _to GetActionName(index, _retval); } \
NS_IMETHOD GetActionDescription(uint8_t aIndex, nsAString & _retval) override { return _to GetActionDescription(aIndex, _retval); } \
NS_IMETHOD DoAction(uint8_t index) override { return _to DoAction(index); } \
NS_IMETHOD ScrollTo(uint32_t aScrollType) override { return _to ScrollTo(aScrollType); } \
NS_IMETHOD ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y) override { return _to ScrollToPoint(coordinateType, x, y); } \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIACCESSIBLE(_to) \
NS_IMETHOD GetParent(nsIAccessible * *aParent) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParent(aParent); } \
NS_IMETHOD GetNextSibling(nsIAccessible * *aNextSibling) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNextSibling(aNextSibling); } \
NS_IMETHOD GetPreviousSibling(nsIAccessible * *aPreviousSibling) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreviousSibling(aPreviousSibling); } \
NS_IMETHOD GetFirstChild(nsIAccessible * *aFirstChild) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFirstChild(aFirstChild); } \
NS_IMETHOD GetLastChild(nsIAccessible * *aLastChild) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLastChild(aLastChild); } \
NS_IMETHOD GetChildren(nsIArray * *aChildren) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildren(aChildren); } \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildCount(aChildCount); } \
NS_IMETHOD GetIndexInParent(int32_t *aIndexInParent) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIndexInParent(aIndexInParent); } \
NS_IMETHOD GetDOMNode(nsIDOMNode * *aDOMNode) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDOMNode(aDOMNode); } \
NS_IMETHOD GetDocument(nsIAccessibleDocument * *aDocument) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDocument(aDocument); } \
NS_IMETHOD GetRootDocument(nsIAccessibleDocument * *aRootDocument) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRootDocument(aRootDocument); } \
NS_IMETHOD GetLanguage(nsAString & aLanguage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLanguage(aLanguage); } \
NS_IMETHOD GetName(nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetValue(aValue); } \
NS_IMETHOD GetDescription(nsAString & aDescription) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDescription(aDescription); } \
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAccessKey(aAccessKey); } \
NS_IMETHOD GetKeyboardShortcut(nsAString & aKeyboardShortcut) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyboardShortcut(aKeyboardShortcut); } \
NS_IMETHOD GetRole(uint32_t *aRole) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRole(aRole); } \
NS_IMETHOD GetState(uint32_t *aState, uint32_t *aExtraState) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetState(aState, aExtraState); } \
NS_IMETHOD GetHelp(nsAString & aHelp) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHelp(aHelp); } \
NS_IMETHOD GetFocusedChild(nsIAccessible * *aFocusedChild) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFocusedChild(aFocusedChild); } \
NS_IMETHOD GetAttributes(nsIPersistentProperties * *aAttributes) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAttributes(aAttributes); } \
NS_IMETHOD GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GroupPosition(aGroupLevel, aSimilarItemsInGroup, aPositionInGroup); } \
NS_IMETHOD GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildAtPoint(x, y, _retval); } \
NS_IMETHOD GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDeepestChildAtPoint(x, y, _retval); } \
NS_IMETHOD GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildAt(aChildIndex, _retval); } \
NS_IMETHOD GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRelationByType(aRelationType, _retval); } \
NS_IMETHOD GetRelations(nsIArray * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRelations(_retval); } \
NS_IMETHOD GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBounds(x, y, width, height); } \
NS_IMETHOD SetSelected(bool isSelected) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelected(isSelected); } \
NS_IMETHOD ExtendSelection(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ExtendSelection(); } \
NS_IMETHOD TakeSelection(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->TakeSelection(); } \
NS_IMETHOD TakeFocus(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->TakeFocus(); } \
NS_IMETHOD GetActionCount(uint8_t *aActionCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActionCount(aActionCount); } \
NS_IMETHOD GetActionName(uint8_t index, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActionName(index, _retval); } \
NS_IMETHOD GetActionDescription(uint8_t aIndex, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActionDescription(aIndex, _retval); } \
NS_IMETHOD DoAction(uint8_t index) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DoAction(index); } \
NS_IMETHOD ScrollTo(uint32_t aScrollType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollTo(aScrollType); } \
NS_IMETHOD ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ScrollToPoint(coordinateType, x, y); } \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAccessible : public nsIAccessible
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIACCESSIBLE
nsAccessible();
private:
~nsAccessible();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAccessible, nsIAccessible)
nsAccessible::nsAccessible()
{
/* member initializers and constructor code */
}
nsAccessible::~nsAccessible()
{
/* destructor code */
}
/* readonly attribute nsIAccessible parent; */
NS_IMETHODIMP nsAccessible::GetParent(nsIAccessible * *aParent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessible nextSibling; */
NS_IMETHODIMP nsAccessible::GetNextSibling(nsIAccessible * *aNextSibling)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessible previousSibling; */
NS_IMETHODIMP nsAccessible::GetPreviousSibling(nsIAccessible * *aPreviousSibling)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessible firstChild; */
NS_IMETHODIMP nsAccessible::GetFirstChild(nsIAccessible * *aFirstChild)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessible lastChild; */
NS_IMETHODIMP nsAccessible::GetLastChild(nsIAccessible * *aLastChild)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIArray children; */
NS_IMETHODIMP nsAccessible::GetChildren(nsIArray * *aChildren)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long childCount; */
NS_IMETHODIMP nsAccessible::GetChildCount(int32_t *aChildCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long indexInParent; */
NS_IMETHODIMP nsAccessible::GetIndexInParent(int32_t *aIndexInParent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMNode DOMNode; */
NS_IMETHODIMP nsAccessible::GetDOMNode(nsIDOMNode * *aDOMNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessibleDocument document; */
NS_IMETHODIMP nsAccessible::GetDocument(nsIAccessibleDocument * *aDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessibleDocument rootDocument; */
NS_IMETHODIMP nsAccessible::GetRootDocument(nsIAccessibleDocument * *aRootDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString language; */
NS_IMETHODIMP nsAccessible::GetLanguage(nsAString & aLanguage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString name; */
NS_IMETHODIMP nsAccessible::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString value; */
NS_IMETHODIMP nsAccessible::GetValue(nsAString & aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString description; */
NS_IMETHODIMP nsAccessible::GetDescription(nsAString & aDescription)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString accessKey; */
NS_IMETHODIMP nsAccessible::GetAccessKey(nsAString & aAccessKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString keyboardShortcut; */
NS_IMETHODIMP nsAccessible::GetKeyboardShortcut(nsAString & aKeyboardShortcut)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long role; */
NS_IMETHODIMP nsAccessible::GetRole(uint32_t *aRole)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getState (out unsigned long aState, out unsigned long aExtraState); */
NS_IMETHODIMP nsAccessible::GetState(uint32_t *aState, uint32_t *aExtraState)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString help; */
NS_IMETHODIMP nsAccessible::GetHelp(nsAString & aHelp)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessible focusedChild; */
NS_IMETHODIMP nsAccessible::GetFocusedChild(nsIAccessible * *aFocusedChild)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIPersistentProperties attributes; */
NS_IMETHODIMP nsAccessible::GetAttributes(nsIPersistentProperties * *aAttributes)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void groupPosition (out long aGroupLevel, out long aSimilarItemsInGroup, out long aPositionInGroup); */
NS_IMETHODIMP nsAccessible::GroupPosition(int32_t *aGroupLevel, int32_t *aSimilarItemsInGroup, int32_t *aPositionInGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIAccessible getChildAtPoint (in long x, in long y); */
NS_IMETHODIMP nsAccessible::GetChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIAccessible getDeepestChildAtPoint (in long x, in long y); */
NS_IMETHODIMP nsAccessible::GetDeepestChildAtPoint(int32_t x, int32_t y, nsIAccessible * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIAccessible getChildAt (in long aChildIndex); */
NS_IMETHODIMP nsAccessible::GetChildAt(int32_t aChildIndex, nsIAccessible * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIAccessibleRelation getRelationByType (in unsigned long aRelationType); */
NS_IMETHODIMP nsAccessible::GetRelationByType(uint32_t aRelationType, nsIAccessibleRelation * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIArray getRelations (); */
NS_IMETHODIMP nsAccessible::GetRelations(nsIArray * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getBounds (out long x, out long y, out long width, out long height); */
NS_IMETHODIMP nsAccessible::GetBounds(int32_t *x, int32_t *y, int32_t *width, int32_t *height)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setSelected (in boolean isSelected); */
NS_IMETHODIMP nsAccessible::SetSelected(bool isSelected)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void extendSelection (); */
NS_IMETHODIMP nsAccessible::ExtendSelection()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void takeSelection (); */
NS_IMETHODIMP nsAccessible::TakeSelection()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void takeFocus (); */
NS_IMETHODIMP nsAccessible::TakeFocus()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute uint8_t actionCount; */
NS_IMETHODIMP nsAccessible::GetActionCount(uint8_t *aActionCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getActionName (in uint8_t index); */
NS_IMETHODIMP nsAccessible::GetActionName(uint8_t index, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getActionDescription (in uint8_t aIndex); */
NS_IMETHODIMP nsAccessible::GetActionDescription(uint8_t aIndex, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void doAction (in uint8_t index); */
NS_IMETHODIMP nsAccessible::DoAction(uint8_t index)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void scrollTo (in unsigned long aScrollType); */
NS_IMETHODIMP nsAccessible::ScrollTo(uint32_t aScrollType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void scrollToPoint (in unsigned long coordinateType, in long x, in long y); */
NS_IMETHODIMP nsAccessible::ScrollToPoint(uint32_t coordinateType, int32_t x, int32_t y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIAccessible_h__ */