2003-04-01 22:18:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2003-04-01 22:18:29 +00:00
|
|
|
|
2012-04-05 14:27:37 +00:00
|
|
|
#include "OuterDocAccessible.h"
|
2010-04-27 06:52:03 +00:00
|
|
|
|
2012-12-21 03:16:44 +00:00
|
|
|
#include "Accessible-inl.h"
|
2010-04-27 06:52:03 +00:00
|
|
|
#include "nsAccUtils.h"
|
2012-05-27 09:01:40 +00:00
|
|
|
#include "DocAccessible.h"
|
2012-01-12 03:07:35 +00:00
|
|
|
#include "Role.h"
|
|
|
|
#include "States.h"
|
2010-04-27 06:52:03 +00:00
|
|
|
|
2012-10-04 09:57:09 +00:00
|
|
|
#ifdef A11Y_LOG
|
2012-05-23 09:21:40 +00:00
|
|
|
#include "Logging.h"
|
|
|
|
#endif
|
|
|
|
|
2012-04-05 14:27:37 +00:00
|
|
|
using namespace mozilla;
|
2011-07-27 12:43:01 +00:00
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
2010-06-08 16:39:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-04-05 14:27:37 +00:00
|
|
|
// OuterDocAccessible
|
2010-06-08 16:39:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2003-04-01 22:18:29 +00:00
|
|
|
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::
|
2012-05-27 09:01:40 +00:00
|
|
|
OuterDocAccessible(nsIContent* aContent, DocAccessible* aDoc) :
|
2012-05-29 01:18:45 +00:00
|
|
|
AccessibleWrap(aContent, aDoc)
|
2003-04-01 22:18:29 +00:00
|
|
|
{
|
2004-04-16 02:03:18 +00:00
|
|
|
}
|
|
|
|
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::~OuterDocAccessible()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-08 16:39:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsISupports
|
|
|
|
|
2012-04-05 14:27:37 +00:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(OuterDocAccessible,
|
2012-05-29 01:18:45 +00:00
|
|
|
Accessible)
|
2010-06-08 16:39:58 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-05-29 01:18:45 +00:00
|
|
|
// Accessible public (DON'T add methods here)
|
2010-06-08 16:39:58 +00:00
|
|
|
|
2012-01-12 03:07:35 +00:00
|
|
|
role
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::NativeRole()
|
2003-04-01 22:18:29 +00:00
|
|
|
{
|
2012-01-12 03:07:35 +00:00
|
|
|
return roles::INTERNAL_FRAME;
|
2003-04-01 22:18:29 +00:00
|
|
|
}
|
|
|
|
|
2012-05-29 01:18:45 +00:00
|
|
|
Accessible*
|
2012-08-22 15:56:38 +00:00
|
|
|
OuterDocAccessible::ChildAtPoint(int32_t aX, int32_t aY,
|
2012-04-05 14:27:37 +00:00
|
|
|
EWhichChildAtPoint aWhichChild)
|
2007-09-18 21:44:43 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t docX = 0, docY = 0, docWidth = 0, docHeight = 0;
|
2009-05-11 10:57:28 +00:00
|
|
|
nsresult rv = GetBounds(&docX, &docY, &docWidth, &docHeight);
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
2007-09-18 21:44:43 +00:00
|
|
|
|
2009-05-11 10:57:28 +00:00
|
|
|
if (aX < docX || aX >= docX + docWidth || aY < docY || aY >= docY + docHeight)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2007-09-18 21:44:43 +00:00
|
|
|
|
2009-05-11 10:57:28 +00:00
|
|
|
// Always return the inner doc as direct child accessible unless bounds
|
|
|
|
// outside of it.
|
2012-05-29 01:18:45 +00:00
|
|
|
Accessible* child = GetChildAt(0);
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_TRUE(child, nullptr);
|
2009-05-11 10:57:28 +00:00
|
|
|
|
2011-04-17 08:48:02 +00:00
|
|
|
if (aWhichChild == eDeepestChild)
|
2011-06-13 22:20:54 +00:00
|
|
|
return child->ChildAtPoint(aX, aY, eDeepestChild);
|
2011-03-29 04:44:20 +00:00
|
|
|
return child;
|
2008-09-17 13:11:39 +00:00
|
|
|
}
|
|
|
|
|
2010-06-08 16:39:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsIAccessible
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::ActionCount()
|
2008-06-24 13:03:06 +00:00
|
|
|
{
|
2010-06-08 16:39:58 +00:00
|
|
|
// Internal frame, which is the doc's parent, should not have a click action.
|
2011-06-05 19:35:43 +00:00
|
|
|
return 0;
|
2008-06-24 13:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
OuterDocAccessible::GetActionName(uint8_t aIndex, nsAString& aName)
|
2008-06-24 13:03:06 +00:00
|
|
|
{
|
|
|
|
aName.Truncate();
|
|
|
|
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
OuterDocAccessible::GetActionDescription(uint8_t aIndex,
|
2012-04-05 14:27:37 +00:00
|
|
|
nsAString& aDescription)
|
2008-06-24 13:03:06 +00:00
|
|
|
{
|
|
|
|
aDescription.Truncate();
|
|
|
|
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
OuterDocAccessible::DoAction(uint8_t aIndex)
|
2008-06-24 13:03:06 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
2010-06-08 16:39:58 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccessNode public
|
|
|
|
|
2010-06-12 04:04:35 +00:00
|
|
|
void
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::Shutdown()
|
2010-06-08 16:39:58 +00:00
|
|
|
{
|
2010-06-18 02:44:09 +00:00
|
|
|
// XXX: sometimes outerdoc accessible is shutdown because of layout style
|
|
|
|
// change however the presshell of underlying document isn't destroyed and
|
|
|
|
// the document doesn't get pagehide events. Shutdown underlying document if
|
|
|
|
// any to avoid hanging document accessible.
|
2012-10-04 09:57:09 +00:00
|
|
|
#ifdef A11Y_LOG
|
2012-06-01 04:26:28 +00:00
|
|
|
if (logging::IsEnabled(logging::eDocDestroy))
|
|
|
|
logging::OuterDocDestroy(this);
|
2012-05-23 09:21:40 +00:00
|
|
|
#endif
|
2010-06-18 02:44:09 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
Accessible* childAcc = mChildren.SafeElementAt(0, nullptr);
|
2010-06-14 23:19:10 +00:00
|
|
|
if (childAcc) {
|
2012-10-04 09:57:09 +00:00
|
|
|
#ifdef A11Y_LOG
|
2012-05-23 09:21:40 +00:00
|
|
|
if (logging::IsEnabled(logging::eDocDestroy)) {
|
|
|
|
logging::DocDestroy("outerdoc's child document shutdown",
|
2012-10-12 02:25:34 +00:00
|
|
|
childAcc->AsDoc()->DocumentNode());
|
2012-05-23 09:21:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
2010-10-28 09:34:26 +00:00
|
|
|
childAcc->Shutdown();
|
2010-06-14 23:19:10 +00:00
|
|
|
}
|
|
|
|
|
2012-05-29 01:18:45 +00:00
|
|
|
AccessibleWrap::Shutdown();
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-05-29 01:18:45 +00:00
|
|
|
// Accessible public
|
2010-06-08 16:39:58 +00:00
|
|
|
|
|
|
|
void
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::InvalidateChildren()
|
2010-06-08 16:39:58 +00:00
|
|
|
{
|
2012-11-20 14:15:32 +00:00
|
|
|
// Do not invalidate children because DocManager is responsible for
|
2010-06-14 23:19:10 +00:00
|
|
|
// document accessible lifetime when DOM document is created or destroyed. If
|
|
|
|
// DOM document isn't destroyed but its presshell is destroyed (for example,
|
|
|
|
// when DOM node of outerdoc accessible is hidden), then outerdoc accessible
|
2012-11-20 14:15:32 +00:00
|
|
|
// notifies DocManager about this. If presshell is created for existing
|
2010-06-14 23:19:10 +00:00
|
|
|
// DOM document (for example when DOM node of outerdoc accessible is shown)
|
2012-11-20 14:15:32 +00:00
|
|
|
// then allow DocManager to handle this case since the document
|
2010-06-14 23:19:10 +00:00
|
|
|
// accessible is created and appended as a child when it's requested.
|
2010-06-08 16:39:58 +00:00
|
|
|
|
2011-01-28 05:15:04 +00:00
|
|
|
SetChildrenFlag(eChildrenUninitialized);
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2013-03-14 04:53:28 +00:00
|
|
|
OuterDocAccessible::InsertChildAt(uint32_t aIdx, Accessible* aAccessible)
|
2010-06-08 16:39:58 +00:00
|
|
|
{
|
2013-03-14 04:53:28 +00:00
|
|
|
NS_ASSERTION(aAccessible->IsDoc(),
|
|
|
|
"OuterDocAccessible should only have document child!");
|
2010-11-09 10:22:59 +00:00
|
|
|
// We keep showing the old document for a bit after creating the new one,
|
|
|
|
// and while building the new DOM and frame tree. That's done on purpose
|
|
|
|
// to avoid weird flashes of default background color.
|
|
|
|
// The old viewer will be destroyed after the new one is created.
|
|
|
|
// For a11y, it should be safe to shut down the old document now.
|
|
|
|
if (mChildren.Length())
|
|
|
|
mChildren[0]->Shutdown();
|
2010-06-08 16:39:58 +00:00
|
|
|
|
2013-03-14 04:53:28 +00:00
|
|
|
if (!AccessibleWrap::InsertChildAt(0, aAccessible))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-06-08 16:39:58 +00:00
|
|
|
|
2012-10-04 09:57:09 +00:00
|
|
|
#ifdef A11Y_LOG
|
2012-05-23 09:21:40 +00:00
|
|
|
if (logging::IsEnabled(logging::eDocCreate)) {
|
|
|
|
logging::DocCreate("append document to outerdoc",
|
2012-10-12 02:25:34 +00:00
|
|
|
aAccessible->AsDoc()->DocumentNode());
|
2012-05-23 09:21:40 +00:00
|
|
|
logging::Address("outerdoc", this);
|
|
|
|
}
|
|
|
|
#endif
|
2010-06-18 02:44:09 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2012-05-29 01:18:45 +00:00
|
|
|
OuterDocAccessible::RemoveChild(Accessible* aAccessible)
|
2010-06-08 16:39:58 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
Accessible* child = mChildren.SafeElementAt(0, nullptr);
|
2010-06-08 16:39:58 +00:00
|
|
|
if (child != aAccessible) {
|
|
|
|
NS_ERROR("Wrong child to remove!");
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 09:57:09 +00:00
|
|
|
#ifdef A11Y_LOG
|
2012-05-23 09:21:40 +00:00
|
|
|
if (logging::IsEnabled(logging::eDocDestroy)) {
|
2012-10-12 02:25:34 +00:00
|
|
|
logging::DocDestroy("remove document from outerdoc",
|
|
|
|
child->AsDoc()->DocumentNode(), child->AsDoc());
|
2012-05-23 09:21:40 +00:00
|
|
|
logging::Address("outerdoc", this);
|
|
|
|
}
|
|
|
|
#endif
|
2010-06-18 02:44:09 +00:00
|
|
|
|
2012-05-29 01:18:45 +00:00
|
|
|
bool wasRemoved = AccessibleWrap::RemoveChild(child);
|
2010-06-18 02:44:09 +00:00
|
|
|
|
2010-06-08 16:39:58 +00:00
|
|
|
NS_ASSERTION(!mChildren.Length(),
|
|
|
|
"This child document of outerdoc accessible wasn't removed!");
|
|
|
|
|
2010-07-02 01:22:41 +00:00
|
|
|
return wasRemoved;
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|
|
|
|
|
2010-06-18 02:44:09 +00:00
|
|
|
|
2010-06-08 16:39:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-05-29 01:18:45 +00:00
|
|
|
// Accessible protected
|
2010-06-08 16:39:58 +00:00
|
|
|
|
|
|
|
void
|
2012-04-05 14:27:37 +00:00
|
|
|
OuterDocAccessible::CacheChildren()
|
2010-06-08 16:39:58 +00:00
|
|
|
{
|
|
|
|
// Request document accessible for the content document to make sure it's
|
2011-02-01 16:08:43 +00:00
|
|
|
// created. It will appended to outerdoc accessible children asynchronously.
|
|
|
|
nsIDocument* outerDoc = mContent->GetCurrentDoc();
|
|
|
|
if (outerDoc) {
|
|
|
|
nsIDocument* innerDoc = outerDoc->GetSubDocumentFor(mContent);
|
|
|
|
if (innerDoc)
|
|
|
|
GetAccService()->GetDocAccessible(innerDoc);
|
|
|
|
}
|
2010-06-08 16:39:58 +00:00
|
|
|
}
|