2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2003
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Original Author: Aaron Leventhal (aaronl@netscape.com)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef _nsDocAccessible_H_
|
|
|
|
#define _nsDocAccessible_H_
|
|
|
|
|
2010-06-08 09:39:58 -07:00
|
|
|
#include "nsIAccessibleDocument.h"
|
|
|
|
|
2007-05-01 10:08:26 -07:00
|
|
|
#include "nsHyperTextAccessibleWrap.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
#include "nsEventShell.h"
|
|
|
|
|
2010-11-17 18:55:44 -08:00
|
|
|
#include "nsClassHashtable.h"
|
|
|
|
#include "nsDataHashtable.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDocumentObserver.h"
|
|
|
|
#include "nsIEditor.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIScrollPositionListener.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsIWeakReference.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsIDocShellTreeNode.h"
|
|
|
|
|
|
|
|
class nsIScrollableView;
|
|
|
|
|
|
|
|
const PRUint32 kDefaultCacheSize = 256;
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
#define NS_DOCACCESSIBLE_IMPL_CID \
|
2010-01-27 03:42:44 -08:00
|
|
|
{ /* 5641921c-a093-4292-9dca-0b51813db57d */ \
|
|
|
|
0x5641921c, \
|
|
|
|
0xa093, \
|
|
|
|
0x4292, \
|
|
|
|
{ 0x9d, 0xca, 0x0b, 0x51, 0x81, 0x3d, 0xb5, 0x7d } \
|
2009-06-24 19:08:53 -07:00
|
|
|
}
|
|
|
|
|
2007-05-01 10:08:26 -07:00
|
|
|
class nsDocAccessible : public nsHyperTextAccessibleWrap,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIAccessibleDocument,
|
|
|
|
public nsIDocumentObserver,
|
|
|
|
public nsIObserver,
|
|
|
|
public nsIScrollPositionListener,
|
|
|
|
public nsSupportsWeakReference
|
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2008-08-06 05:19:56 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsDocAccessible, nsAccessible)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_DECL_NSIACCESSIBLEDOCUMENT
|
2009-06-24 19:08:53 -07:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_DOCACCESSIBLE_IMPL_CID)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
NS_DECL_NSIOBSERVER
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
public:
|
2010-08-18 19:14:50 -07:00
|
|
|
using nsAccessible::GetParent;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsDocAccessible(nsIDocument *aDocument, nsIContent *aRootContent,
|
|
|
|
nsIWeakReference* aShell);
|
2009-06-24 19:08:53 -07:00
|
|
|
virtual ~nsDocAccessible();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsIAccessible
|
|
|
|
NS_IMETHOD GetName(nsAString& aName);
|
|
|
|
NS_IMETHOD GetDescription(nsAString& aDescription);
|
|
|
|
NS_IMETHOD GetAttributes(nsIPersistentProperties **aAttributes);
|
|
|
|
NS_IMETHOD GetFocusedChild(nsIAccessible **aFocusedChild);
|
|
|
|
NS_IMETHOD TakeFocus(void);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsIScrollPositionListener
|
2010-01-28 16:03:42 -08:00
|
|
|
virtual void ScrollPositionWillChange(nscoord aX, nscoord aY) {}
|
|
|
|
virtual void ScrollPositionDidChange(nscoord aX, nscoord aY);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsIDocumentObserver
|
|
|
|
NS_DECL_NSIDOCUMENTOBSERVER
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsAccessNode
|
2010-06-11 21:04:35 -07:00
|
|
|
virtual PRBool Init();
|
|
|
|
virtual void Shutdown();
|
2009-06-24 19:08:53 -07:00
|
|
|
virtual nsIFrame* GetFrame();
|
|
|
|
virtual PRBool IsDefunct();
|
2010-06-11 01:23:18 -07:00
|
|
|
virtual nsINode* GetNode() const { return mDocument; }
|
2010-11-05 21:11:08 -07:00
|
|
|
virtual nsIDocument* GetDocumentNode() const { return mDocument; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsAccessible
|
2010-09-04 19:14:01 -07:00
|
|
|
virtual PRUint32 NativeRole();
|
2008-11-03 19:37:46 -08:00
|
|
|
virtual nsresult GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState);
|
2009-06-24 19:12:38 -07:00
|
|
|
virtual nsresult GetARIAState(PRUint32 *aState, PRUint32 *aExtraState);
|
2009-12-10 11:12:19 -08:00
|
|
|
|
2009-06-18 00:37:38 -07:00
|
|
|
virtual void SetRoleMapEntry(nsRoleMapEntry* aRoleMapEntry);
|
2008-11-03 19:37:46 -08:00
|
|
|
|
2010-06-08 09:39:58 -07:00
|
|
|
#ifdef DEBUG_ACCDOCMGR
|
2010-08-24 19:08:28 -07:00
|
|
|
virtual nsresult HandleAccEvent(AccEvent* aAccEvent);
|
2010-06-08 09:39:58 -07:00
|
|
|
#endif
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsIAccessibleText
|
|
|
|
NS_IMETHOD GetAssociatedEditor(nsIEditor **aEditor);
|
2007-08-14 09:25:24 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
// nsDocAccessible
|
2007-04-16 21:45:42 -07:00
|
|
|
|
2010-06-08 09:39:58 -07:00
|
|
|
/**
|
|
|
|
* Return true if associated DOM document was loaded and isn't unloading.
|
|
|
|
*/
|
|
|
|
PRBool IsContentLoaded() const
|
|
|
|
{
|
|
|
|
return mDocument && mDocument->IsVisible() &&
|
|
|
|
(mDocument->IsShowing() || mIsLoaded);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-22 00:22:04 -08:00
|
|
|
* Marks this document as loaded or loading, used to expose busy state.
|
|
|
|
* The loaded flag has special meaning for error pages and used as workaround
|
|
|
|
* to make IsContentLoaded() return correct result since these pages do not
|
2010-06-08 09:39:58 -07:00
|
|
|
* receive pageshow event and as consequence nsIDocument::IsShowing() returns
|
|
|
|
* false.
|
|
|
|
*/
|
|
|
|
void MarkAsLoaded() { mIsLoaded = PR_TRUE; }
|
2010-11-22 00:22:04 -08:00
|
|
|
void MarkAsLoading() { mIsLoaded = PR_FALSE; }
|
2010-06-08 09:39:58 -07:00
|
|
|
|
2010-09-16 20:23:17 -07:00
|
|
|
/**
|
|
|
|
* Return a native window handler or pointer depending on platform.
|
|
|
|
*/
|
|
|
|
virtual void* GetNativeWindow() const;
|
|
|
|
|
2010-09-09 07:44:56 -07:00
|
|
|
/**
|
|
|
|
* Return the parent document.
|
|
|
|
*/
|
|
|
|
nsDocAccessible* ParentDocument() const
|
|
|
|
{ return mParent ? mParent->GetDocAccessible() : nsnull; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the child document count.
|
|
|
|
*/
|
|
|
|
PRUint32 ChildDocumentCount() const
|
|
|
|
{ return mChildDocuments.Length(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the child document at the given index.
|
|
|
|
*/
|
|
|
|
nsDocAccessible* GetChildDocumentAt(PRUint32 aIndex) const
|
|
|
|
{ return mChildDocuments.SafeElementAt(aIndex, nsnull); }
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
/**
|
|
|
|
* Non-virtual method to fire a delayed event after a 0 length timeout.
|
|
|
|
*
|
2009-09-02 19:01:18 -07:00
|
|
|
* @param aEventType [in] the nsIAccessibleEvent event type
|
2009-06-24 19:08:53 -07:00
|
|
|
* @param aDOMNode [in] DOM node the accesible event should be fired for
|
|
|
|
* @param aAllowDupes [in] rule to process an event (see EEventRule constants)
|
|
|
|
*/
|
2010-06-11 01:23:18 -07:00
|
|
|
nsresult FireDelayedAccessibleEvent(PRUint32 aEventType, nsINode *aNode,
|
2010-08-24 19:08:28 -07:00
|
|
|
AccEvent::EEventRule aAllowDupes = AccEvent::eRemoveDupes,
|
2010-01-20 03:16:32 -08:00
|
|
|
EIsFromUserInput aIsFromUserInput = eAutoDetect);
|
2009-06-24 19:08:53 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fire accessible event after timeout.
|
|
|
|
*
|
|
|
|
* @param aEvent [in] the event to fire
|
|
|
|
*/
|
2010-08-24 19:08:28 -07:00
|
|
|
nsresult FireDelayedAccessibleEvent(AccEvent* aEvent);
|
2007-04-16 21:45:42 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
/**
|
2010-10-20 21:16:10 -07:00
|
|
|
* Return the cached accessible by the given DOM node if it's in subtree of
|
|
|
|
* this document accessible or the document accessible itself, otherwise null.
|
2009-06-24 19:08:53 -07:00
|
|
|
*
|
2010-10-20 21:16:10 -07:00
|
|
|
* @return the accessible object
|
2009-06-24 19:08:53 -07:00
|
|
|
*/
|
2010-10-20 21:16:10 -07:00
|
|
|
nsAccessible* GetCachedAccessible(nsINode* aNode);
|
2009-06-24 19:08:53 -07:00
|
|
|
|
2010-02-11 05:56:01 -08:00
|
|
|
/**
|
2010-10-20 21:16:10 -07:00
|
|
|
* Return the cached accessible by the given unique ID within this document.
|
2010-02-11 05:56:01 -08:00
|
|
|
*
|
2010-10-20 21:16:10 -07:00
|
|
|
* @note the unique ID matches with the uniqueID() of nsAccessNode
|
2010-02-11 05:56:01 -08:00
|
|
|
*
|
|
|
|
* @param aUniqueID [in] the unique ID used to cache the node.
|
|
|
|
*/
|
2010-10-20 21:16:10 -07:00
|
|
|
nsAccessible* GetCachedAccessibleByUniqueID(void* aUniqueID)
|
|
|
|
{
|
|
|
|
return UniqueID() == aUniqueID ?
|
|
|
|
this : mAccessibleCache.GetWeak(aUniqueID);
|
|
|
|
}
|
2010-02-11 05:56:01 -08:00
|
|
|
|
2010-09-09 07:44:56 -07:00
|
|
|
/**
|
|
|
|
* Return the cached accessible by the given unique ID looking through
|
|
|
|
* this and nested documents.
|
|
|
|
*/
|
2010-10-20 21:16:10 -07:00
|
|
|
nsAccessible* GetCachedAccessibleByUniqueIDInSubtree(void* aUniqueID);
|
2010-09-09 07:44:56 -07:00
|
|
|
|
2010-11-18 21:44:47 -08:00
|
|
|
/**
|
|
|
|
* Return true if the given ID is referred by relation attribute.
|
|
|
|
*
|
|
|
|
* @note Different elements may share the same ID if they are hosted inside
|
|
|
|
* XBL bindings. Be careful the result of this method may be senseless
|
|
|
|
* while it's called for XUL elements (where XBL is used widely).
|
|
|
|
*/
|
|
|
|
PRBool IsDependentID(const nsAString& aID) const
|
|
|
|
{ return mDependentIDsHash.Get(aID, nsnull); }
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
/**
|
2010-11-12 11:00:55 -08:00
|
|
|
* Initialize the newly created accessible and put it into document caches.
|
2009-06-24 19:08:53 -07:00
|
|
|
*
|
2010-11-12 11:00:55 -08:00
|
|
|
* @param aAccessible [in] created accessible
|
|
|
|
* @param aRoleMapEntry [in] the role map entry role the ARIA role or nsnull
|
|
|
|
* if none
|
2009-06-24 19:08:53 -07:00
|
|
|
*/
|
2010-11-12 11:00:55 -08:00
|
|
|
bool BindToDocument(nsAccessible* aAccessible, nsRoleMapEntry* aRoleMapEntry);
|
2009-06-24 19:08:53 -07:00
|
|
|
|
2009-08-19 23:45:19 -07:00
|
|
|
/**
|
2010-11-12 11:01:04 -08:00
|
|
|
* Remove from document and shutdown the given accessible.
|
2009-08-19 23:45:19 -07:00
|
|
|
*/
|
2010-11-12 11:00:55 -08:00
|
|
|
void UnbindFromDocument(nsAccessible* aAccessible);
|
2009-08-19 23:45:19 -07:00
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
/**
|
2010-01-27 03:42:08 -08:00
|
|
|
* Process the event when the queue of pending events is untwisted. Fire
|
|
|
|
* accessible events as result of the processing.
|
2009-06-24 19:08:53 -07:00
|
|
|
*/
|
2010-08-24 19:08:28 -07:00
|
|
|
void ProcessPendingEvent(AccEvent* aEvent);
|
2009-06-24 19:08:53 -07:00
|
|
|
|
2010-10-20 21:16:10 -07:00
|
|
|
/**
|
|
|
|
* Update the accessible tree.
|
|
|
|
*/
|
|
|
|
void UpdateTree(nsIContent* aContainerNode, nsIContent* aStartChildNode,
|
|
|
|
nsIContent* aEndChildNode, PRBool aIsInsert);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recreate an accessible, results in hide/show events pair.
|
|
|
|
*/
|
|
|
|
void RecreateAccessible(nsINode* aNode);
|
|
|
|
|
2010-11-18 21:44:47 -08:00
|
|
|
/**
|
|
|
|
* Used to notify the document that the accessible caching is started or
|
|
|
|
* finished.
|
|
|
|
*
|
|
|
|
* While children are cached we may encounter the case there's no accessible
|
|
|
|
* for referred content by related accessible. Keep the caching root and
|
|
|
|
* these related nodes to invalidate their containers after root caching.
|
|
|
|
*/
|
|
|
|
void NotifyOfCachingStart(nsAccessible* aAccessible);
|
|
|
|
void NotifyOfCachingEnd(nsAccessible* aAccessible);
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
protected:
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-11-20 17:00:29 -08:00
|
|
|
// nsAccessible
|
|
|
|
virtual void CacheChildren();
|
|
|
|
|
|
|
|
// nsDocAccessible
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual void GetBoundsRect(nsRect& aRect, nsIFrame** aRelativeFrame);
|
|
|
|
virtual nsresult AddEventListeners();
|
|
|
|
virtual nsresult RemoveEventListeners();
|
|
|
|
void AddScrollListener();
|
|
|
|
void RemoveScrollListener();
|
2008-02-02 09:02:09 -08:00
|
|
|
|
2010-09-09 07:44:56 -07:00
|
|
|
/**
|
|
|
|
* Append the given document accessible to this document's child document
|
|
|
|
* accessibles.
|
|
|
|
*/
|
|
|
|
bool AppendChildDocument(nsDocAccessible* aChildDocument)
|
|
|
|
{
|
|
|
|
return mChildDocuments.AppendElement(aChildDocument);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the given document accessible from this document's child document
|
|
|
|
* accessibles.
|
|
|
|
*/
|
|
|
|
void RemoveChildDocument(nsDocAccessible* aChildDocument)
|
|
|
|
{
|
|
|
|
mChildDocuments.RemoveElement(aChildDocument);
|
|
|
|
}
|
|
|
|
|
2010-11-17 18:55:44 -08:00
|
|
|
/**
|
|
|
|
* Add dependent IDs pointed by accessible element by relation attribute to
|
|
|
|
* cache. If the relation attribute is missed then all relation attributes
|
|
|
|
* are checked.
|
|
|
|
*
|
|
|
|
* @param aRelProvider [in] accessible that element has relation attribute
|
|
|
|
* @param aRelAttr [in, optional] relation attribute
|
|
|
|
*/
|
|
|
|
void AddDependentIDsFor(nsAccessible* aRelProvider,
|
|
|
|
nsIAtom* aRelAttr = nsnull);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove dependent IDs pointed by accessible element by relation attribute
|
|
|
|
* from cache. If the relation attribute is absent then all relation
|
|
|
|
* attributes are checked.
|
|
|
|
*
|
|
|
|
* @param aRelProvider [in] accessible that element has relation attribute
|
|
|
|
* @param aRelAttr [in, optional] relation attribute
|
|
|
|
*/
|
|
|
|
void RemoveDependentIDsFor(nsAccessible* aRelProvider,
|
|
|
|
nsIAtom* aRelAttr = nsnull);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static void ScrollTimerCallback(nsITimer *aTimer, void *aClosure);
|
|
|
|
|
2007-04-16 21:45:42 -07:00
|
|
|
/**
|
2007-09-18 14:36:41 -07:00
|
|
|
* Fires accessible events when attribute is changed.
|
|
|
|
*
|
|
|
|
* @param aContent - node that attribute is changed for
|
|
|
|
* @param aNameSpaceID - namespace of changed attribute
|
|
|
|
* @param aAttribute - changed attribute
|
|
|
|
*/
|
|
|
|
void AttributeChangedImpl(nsIContent* aContent, PRInt32 aNameSpaceID, nsIAtom* aAttribute);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fires accessible events when ARIA attribute is changed.
|
2007-04-16 21:45:42 -07:00
|
|
|
*
|
|
|
|
* @param aContent - node that attribute is changed for
|
|
|
|
* @param aAttribute - changed attribute
|
|
|
|
*/
|
|
|
|
void ARIAAttributeChanged(nsIContent* aContent, nsIAtom* aAttribute);
|
|
|
|
|
2007-07-25 04:54:15 -07:00
|
|
|
/**
|
2007-09-05 01:22:17 -07:00
|
|
|
* Fire text changed event for character data changed. The method is used
|
|
|
|
* from nsIMutationObserver methods.
|
|
|
|
*
|
|
|
|
* @param aContent the text node holding changed data
|
|
|
|
* @param aInfo info structure describing how the data was changed
|
|
|
|
* @param aIsInserted the flag pointed whether removed or inserted
|
|
|
|
* characters should be cause of event
|
2007-07-25 04:54:15 -07:00
|
|
|
*/
|
2007-09-05 01:22:17 -07:00
|
|
|
void FireTextChangeEventForText(nsIContent *aContent,
|
|
|
|
CharacterDataChangeInfo* aInfo,
|
|
|
|
PRBool aIsInserted);
|
2007-07-25 04:54:15 -07:00
|
|
|
|
2010-06-11 21:04:24 -07:00
|
|
|
/**
|
|
|
|
* Fire a value change event for the the given accessible if it is a text
|
|
|
|
* field (has a ROLE_ENTRY).
|
|
|
|
*/
|
|
|
|
void FireValueChangeForTextFields(nsAccessible *aAccessible);
|
2008-03-19 18:58:11 -07:00
|
|
|
|
2010-10-20 21:16:10 -07:00
|
|
|
/**
|
|
|
|
* Helper for UpdateTree() method. Go down to DOM subtree and updates
|
|
|
|
* accessible tree. Return one of these flags.
|
|
|
|
*/
|
|
|
|
enum EUpdateTreeFlags {
|
|
|
|
eNoAccessible = 0,
|
|
|
|
eAccessible = 1,
|
|
|
|
eAlertAccessible = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
PRUint32 UpdateTreeInternal(nsAccessible* aContainer,
|
|
|
|
nsIContent* aStartNode,
|
|
|
|
nsIContent* aEndNode,
|
|
|
|
PRBool aIsInsert,
|
|
|
|
PRBool aFireEvents,
|
|
|
|
EIsFromUserInput aFromUserInput);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove accessibles in subtree from node to accessible map.
|
|
|
|
*/
|
|
|
|
void UncacheChildrenInSubtree(nsAccessible* aRoot);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown any cached accessible in the subtree.
|
|
|
|
*
|
|
|
|
* @param aAccessible [in] the root of the subrtee to invalidate accessible
|
|
|
|
* child/parent refs in
|
|
|
|
*/
|
|
|
|
void ShutdownChildrenInSubtree(nsAccessible *aAccessible);
|
|
|
|
|
2010-06-11 21:04:35 -07:00
|
|
|
/**
|
|
|
|
* Cache of accessibles within this document accessible.
|
|
|
|
*/
|
|
|
|
nsAccessibleHashtable mAccessibleCache;
|
2010-11-17 18:55:44 -08:00
|
|
|
nsDataHashtable<nsPtrHashKey<const nsINode>, nsAccessible*>
|
|
|
|
mNodeToAccessibleMap;
|
2010-06-11 21:04:35 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
|
|
|
nsCOMPtr<nsITimer> mScrollWatchTimer;
|
|
|
|
PRUint16 mScrollPositionChangedTicks; // Used for tracking scroll events
|
|
|
|
|
|
|
|
protected:
|
2009-09-07 09:46:56 -07:00
|
|
|
|
2010-01-27 03:42:08 -08:00
|
|
|
nsRefPtr<nsAccEventQueue> mEventQueue;
|
2009-09-07 09:46:56 -07:00
|
|
|
|
2010-06-08 09:39:58 -07:00
|
|
|
/**
|
|
|
|
* Specifies if the document was loaded, used for error pages only.
|
|
|
|
*/
|
|
|
|
PRPackedBool mIsLoaded;
|
|
|
|
|
2007-09-18 14:36:41 -07:00
|
|
|
static PRUint32 gLastFocusedAccessiblesState;
|
2008-02-08 18:28:01 -08:00
|
|
|
static nsIAtom *gLastFocusedFrameType;
|
2010-09-09 07:44:56 -07:00
|
|
|
|
|
|
|
nsTArray<nsRefPtr<nsDocAccessible> > mChildDocuments;
|
2010-11-17 18:55:44 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A storage class for pairing content with one of its relation attributes.
|
|
|
|
*/
|
|
|
|
class AttrRelProvider
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AttrRelProvider(nsIAtom* aRelAttr, nsIContent* aContent) :
|
|
|
|
mRelAttr(aRelAttr), mContent(aContent) { }
|
|
|
|
|
|
|
|
nsIAtom* mRelAttr;
|
|
|
|
nsIContent* mContent;
|
|
|
|
|
|
|
|
private:
|
|
|
|
AttrRelProvider();
|
|
|
|
AttrRelProvider(const AttrRelProvider&);
|
|
|
|
AttrRelProvider& operator =(const AttrRelProvider&);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The cache of IDs pointed by relation attributes.
|
|
|
|
*/
|
|
|
|
typedef nsTArray<nsAutoPtr<AttrRelProvider> > AttrRelProviderArray;
|
|
|
|
nsClassHashtable<nsStringHashKey, AttrRelProviderArray> mDependentIDsHash;
|
|
|
|
|
|
|
|
friend class RelatedAccIterator;
|
2010-11-18 21:44:47 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used for our caching algorithm. We store the root of the tree that needs
|
|
|
|
* caching, the list of nodes that should be invalidated, and whether we are
|
|
|
|
* processing the invalidation list.
|
|
|
|
*
|
|
|
|
* @see NotifyOfCachingStart/NotifyOfCachingEnd
|
|
|
|
*/
|
|
|
|
nsAccessible* mCacheRoot;
|
|
|
|
nsTArray<nsIContent*> mInvalidationList;
|
|
|
|
PRBool mIsPostCacheProcessing;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2009-06-24 19:08:53 -07:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsDocAccessible,
|
|
|
|
NS_DOCACCESSIBLE_IMPL_CID)
|
|
|
|
|
2010-11-17 18:55:44 -08:00
|
|
|
#endif
|