2010-02-20 16:55:04 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2012-11-19 01:20:09 -08:00
|
|
|
#include "TreeWalker.h"
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2012-05-28 18:18:45 -07:00
|
|
|
#include "Accessible.h"
|
2010-02-20 16:55:04 -08:00
|
|
|
#include "nsAccessibilityService.h"
|
2012-05-27 02:01:40 -07:00
|
|
|
#include "DocAccessible.h"
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2014-07-16 11:41:57 -07:00
|
|
|
#include "mozilla/dom/ChildIterator.h"
|
2014-02-15 07:21:40 -08:00
|
|
|
#include "mozilla/dom/Element.h"
|
2010-06-08 09:39:58 -07:00
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
using namespace mozilla;
|
2012-11-17 18:01:44 -08:00
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
2010-02-20 16:55:04 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-11-19 01:20:09 -08:00
|
|
|
// TreeWalker
|
2010-02-20 16:55:04 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-11-19 01:20:09 -08:00
|
|
|
TreeWalker::
|
2014-02-15 07:21:40 -08:00
|
|
|
TreeWalker(Accessible* aContext, nsIContent* aContent, uint32_t aFlags) :
|
2014-08-11 23:02:28 -07:00
|
|
|
mDoc(aContext->Document()), mContext(aContext), mAnchorNode(aContent),
|
|
|
|
mFlags(aFlags)
|
2010-02-20 16:55:04 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent, "No node for the accessible tree walker!");
|
|
|
|
|
2012-11-17 07:27:03 -08:00
|
|
|
mChildFilter = mContext->CanHaveAnonChildren() ?
|
|
|
|
nsIContent::eAllChildren : nsIContent::eAllButXBL;
|
2010-10-15 08:34:35 -07:00
|
|
|
mChildFilter |= nsIContent::eSkipPlaceholderContent;
|
|
|
|
|
2014-07-16 11:41:57 -07:00
|
|
|
if (aContent)
|
2014-08-11 23:02:28 -07:00
|
|
|
PushState(aContent);
|
2014-07-16 11:41:57 -07:00
|
|
|
|
2012-11-19 01:20:09 -08:00
|
|
|
MOZ_COUNT_CTOR(TreeWalker);
|
2010-02-20 16:55:04 -08:00
|
|
|
}
|
|
|
|
|
2012-11-19 01:20:09 -08:00
|
|
|
TreeWalker::~TreeWalker()
|
2010-02-20 16:55:04 -08:00
|
|
|
{
|
2012-11-19 01:20:09 -08:00
|
|
|
MOZ_COUNT_DTOR(TreeWalker);
|
2010-02-20 16:55:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-11-19 01:20:09 -08:00
|
|
|
// TreeWalker: private
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2012-05-28 18:18:45 -07:00
|
|
|
Accessible*
|
2014-08-11 23:02:28 -07:00
|
|
|
TreeWalker::NextChild()
|
2010-02-20 16:55:04 -08:00
|
|
|
{
|
2014-08-11 23:02:28 -07:00
|
|
|
if (mStateStack.IsEmpty())
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
dom::AllChildrenIterator* top = &mStateStack[mStateStack.Length() - 1];
|
|
|
|
while (top) {
|
|
|
|
while (nsIContent* childNode = top->GetNextChild()) {
|
|
|
|
bool isSubtreeHidden = false;
|
|
|
|
Accessible* accessible = mFlags & eWalkCache ?
|
|
|
|
mDoc->GetAccessible(childNode) :
|
|
|
|
GetAccService()->GetOrCreateAccessible(childNode, mContext,
|
|
|
|
&isSubtreeHidden);
|
2010-02-20 16:55:04 -08:00
|
|
|
|
|
|
|
if (accessible)
|
2011-03-31 02:30:58 -07:00
|
|
|
return accessible;
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
// Walk down into subtree to find accessibles.
|
|
|
|
if (!isSubtreeHidden && childNode->IsElement())
|
|
|
|
top = PushState(childNode);
|
|
|
|
}
|
2014-02-15 07:21:40 -08:00
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
top = PopState();
|
|
|
|
}
|
2014-02-15 07:21:40 -08:00
|
|
|
|
|
|
|
// If we traversed the whole subtree of the anchor node. Move to next node
|
|
|
|
// relative anchor node within the context subtree if possible.
|
|
|
|
if (mFlags != eWalkContextTree)
|
|
|
|
return nullptr;
|
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
nsINode* contextNode = mContext->GetNode();
|
|
|
|
while (mAnchorNode != contextNode) {
|
|
|
|
nsINode* parentNode = mAnchorNode->GetFlattenedTreeParent();
|
2014-02-15 07:21:40 -08:00
|
|
|
if (!parentNode || !parentNode->IsElement())
|
|
|
|
return nullptr;
|
2010-02-20 16:55:04 -08:00
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
nsIContent* parent = parentNode->AsElement();
|
|
|
|
top = mStateStack.AppendElement(dom::AllChildrenIterator(parent,
|
|
|
|
mChildFilter));
|
|
|
|
while (nsIContent* childNode = top->GetNextChild()) {
|
|
|
|
if (childNode == mAnchorNode) {
|
|
|
|
mAnchorNode = parent;
|
|
|
|
return NextChild();
|
|
|
|
}
|
2014-02-15 07:21:40 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
2010-02-20 16:55:04 -08:00
|
|
|
}
|
|
|
|
|
2014-08-11 23:02:28 -07:00
|
|
|
dom::AllChildrenIterator*
|
2012-11-19 01:20:09 -08:00
|
|
|
TreeWalker::PopState()
|
2010-02-20 16:55:04 -08:00
|
|
|
{
|
2014-08-11 23:02:28 -07:00
|
|
|
size_t length = mStateStack.Length();
|
|
|
|
mStateStack.RemoveElementAt(length - 1);
|
|
|
|
return mStateStack.IsEmpty() ? nullptr : &mStateStack[mStateStack.Length() - 1];
|
2010-02-20 16:55:04 -08:00
|
|
|
}
|