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 ***** */
|
|
|
|
|
2010-01-18 07:41:36 -08:00
|
|
|
#include "nsAccEvent.h"
|
2007-08-10 18:44:44 -07:00
|
|
|
#include "nsAccessibilityAtoms.h"
|
2009-08-21 05:33:31 -07:00
|
|
|
#include "nsApplicationAccessibleWrap.h"
|
2008-10-15 18:52:58 -07:00
|
|
|
#include "nsCoreUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIAccessibilityService.h"
|
|
|
|
#include "nsIAccessNode.h"
|
2007-08-10 18:44:44 -07:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsIPersistentProperties2.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIServiceManager.h"
|
2007-07-05 23:53:18 -07:00
|
|
|
#ifdef MOZ_XUL
|
|
|
|
#include "nsIDOMXULMultSelectCntrlEl.h"
|
|
|
|
#include "nsXULTreeAccessible.h"
|
|
|
|
#endif
|
2007-11-08 23:56:38 -08:00
|
|
|
#include "nsIAccessibleText.h"
|
2007-08-14 18:02:25 -07:00
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsPresContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccEvent
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-08-10 18:44:44 -07:00
|
|
|
|
2008-08-06 05:19:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccEvent. nsISupports
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_2(nsAccEvent, mAccessible, mDocAccessible)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsAccEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIAccessibleEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsAccEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsAccEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsAccEvent)
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccEvent. Constructors
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
nsAccEvent::nsAccEvent(PRUint32 aEventType, nsIAccessible *aAccessible,
|
2010-01-20 03:16:32 -08:00
|
|
|
PRBool aIsAsync, EIsFromUserInput aIsFromUserInput,
|
|
|
|
EEventRule aEventRule) :
|
2009-09-09 02:03:14 -07:00
|
|
|
mEventType(aEventType), mEventRule(aEventRule), mIsAsync(aIsAsync),
|
|
|
|
mAccessible(aAccessible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-20 03:16:32 -08:00
|
|
|
CaptureIsFromUserInput(aIsFromUserInput);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
nsAccEvent::nsAccEvent(PRUint32 aEventType, nsIDOMNode *aDOMNode,
|
2010-01-20 03:16:32 -08:00
|
|
|
PRBool aIsAsync, EIsFromUserInput aIsFromUserInput,
|
|
|
|
EEventRule aEventRule) :
|
2009-09-09 02:03:14 -07:00
|
|
|
mEventType(aEventType), mEventRule(aEventRule), mIsAsync(aIsAsync),
|
2010-01-27 03:43:25 -08:00
|
|
|
mNode(do_QueryInterface(aDOMNode))
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-20 03:16:32 -08:00
|
|
|
CaptureIsFromUserInput(aIsFromUserInput);
|
2007-08-10 18:44:44 -07:00
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccEvent: nsIAccessibleEvent
|
2007-08-10 18:44:44 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::GetIsFromUserInput(PRBool *aIsFromUserInput)
|
|
|
|
{
|
|
|
|
*aIsFromUserInput = mIsFromUserInput;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-19 03:22:01 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::SetIsFromUserInput(PRBool aIsFromUserInput)
|
2007-08-10 18:44:44 -07:00
|
|
|
{
|
2008-02-19 03:22:01 -08:00
|
|
|
mIsFromUserInput = aIsFromUserInput;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::GetEventType(PRUint32 *aEventType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-04-10 09:28:38 -07:00
|
|
|
*aEventType = mEventType;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::GetAccessible(nsIAccessible **aAccessible)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAccessible);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aAccessible = nsnull;
|
2007-04-10 09:28:38 -07:00
|
|
|
|
2007-05-09 10:48:11 -07:00
|
|
|
if (!mAccessible)
|
|
|
|
mAccessible = GetAccessibleByNode();
|
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
NS_IF_ADDREF(*aAccessible = mAccessible);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::GetDOMNode(nsIDOMNode **aDOMNode)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-04-10 09:28:38 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aDOMNode);
|
|
|
|
*aDOMNode = nsnull;
|
|
|
|
|
2010-01-27 03:43:25 -08:00
|
|
|
if (!mNode) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIAccessNode> accessNode(do_QueryInterface(mAccessible));
|
|
|
|
NS_ENSURE_TRUE(accessNode, NS_ERROR_FAILURE);
|
2010-01-27 03:43:25 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> DOMNode;
|
|
|
|
accessNode->GetDOMNode(getter_AddRefs(DOMNode));
|
|
|
|
|
|
|
|
mNode = do_QueryInterface(DOMNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-04-10 09:28:38 -07:00
|
|
|
|
2010-01-27 03:43:25 -08:00
|
|
|
if (mNode)
|
|
|
|
CallQueryInterface(mNode, aDOMNode);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-04-10 09:28:38 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccEvent::GetAccessibleDocument(nsIAccessibleDocument **aDocAccessible)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aDocAccessible);
|
|
|
|
*aDocAccessible = nsnull;
|
|
|
|
|
|
|
|
if (!mDocAccessible) {
|
2007-04-16 21:45:42 -07:00
|
|
|
if (!mAccessible) {
|
|
|
|
nsCOMPtr<nsIAccessible> accessible;
|
|
|
|
GetAccessible(getter_AddRefs(accessible));
|
|
|
|
}
|
|
|
|
|
2007-04-10 09:28:38 -07:00
|
|
|
nsCOMPtr<nsIAccessNode> accessNode(do_QueryInterface(mAccessible));
|
|
|
|
NS_ENSURE_TRUE(accessNode, NS_ERROR_FAILURE);
|
|
|
|
accessNode->GetAccessibleDocument(getter_AddRefs(mDocAccessible));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IF_ADDREF(*aDocAccessible = mDocAccessible);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccEvent: protected methods
|
|
|
|
|
2007-05-09 10:48:11 -07:00
|
|
|
already_AddRefed<nsIAccessible>
|
|
|
|
nsAccEvent::GetAccessibleByNode()
|
|
|
|
{
|
2010-01-27 03:43:25 -08:00
|
|
|
if (!mNode)
|
2007-05-09 10:48:11 -07:00
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibilityService> accService =
|
|
|
|
do_GetService("@mozilla.org/accessibilityService;1");
|
|
|
|
if (!accService)
|
|
|
|
return nsnull;
|
|
|
|
|
2010-01-27 03:43:25 -08:00
|
|
|
nsCOMPtr<nsIDOMNode> DOMNode(do_QueryInterface(mNode));
|
|
|
|
|
2009-08-19 23:45:19 -07:00
|
|
|
nsCOMPtr<nsIAccessible> accessible;
|
2010-01-27 03:43:25 -08:00
|
|
|
accService->GetAccessibleFor(DOMNode, getter_AddRefs(accessible));
|
2009-06-29 08:38:17 -07:00
|
|
|
|
2007-07-05 23:53:18 -07:00
|
|
|
#ifdef MOZ_XUL
|
|
|
|
// hack for xul tree table. We need a better way for firing delayed event
|
|
|
|
// against xul tree table. see bug 386821.
|
|
|
|
// There will be problem if some day we want to fire delayed event against
|
|
|
|
// the xul tree itself or an unselected treeitem.
|
2010-01-27 03:43:25 -08:00
|
|
|
nsCOMPtr<nsIContent> content(do_QueryInterface(mNode));
|
|
|
|
if (content && content->NodeInfo()->Equals(nsAccessibilityAtoms::tree,
|
|
|
|
kNameSpaceID_XUL)) {
|
|
|
|
|
2007-07-05 23:53:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelect =
|
2010-01-27 03:43:25 -08:00
|
|
|
do_QueryInterface(mNode);
|
|
|
|
|
2007-07-05 23:53:18 -07:00
|
|
|
if (multiSelect) {
|
|
|
|
PRInt32 treeIndex = -1;
|
|
|
|
multiSelect->GetCurrentIndex(&treeIndex);
|
|
|
|
if (treeIndex >= 0) {
|
2009-08-19 23:45:19 -07:00
|
|
|
nsRefPtr<nsXULTreeAccessible> treeAcc =
|
2009-06-29 08:38:17 -07:00
|
|
|
nsAccUtils::QueryAccessibleTree(accessible);
|
2009-08-19 23:45:19 -07:00
|
|
|
if (treeAcc)
|
|
|
|
treeAcc->GetTreeItemAccessible(treeIndex, getter_AddRefs(accessible));
|
2007-07-05 23:53:18 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-19 23:45:19 -07:00
|
|
|
return accessible.forget();
|
2007-05-09 10:48:11 -07:00
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
void
|
|
|
|
nsAccEvent::CaptureIsFromUserInput(EIsFromUserInput aIsFromUserInput)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> targetNode;
|
|
|
|
GetDOMNode(getter_AddRefs(targetNode));
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (!targetNode) {
|
|
|
|
// XXX: remove this hack during reorganization of 506907. Meanwhile we
|
|
|
|
// want to get rid an assertion for application accessible events which
|
|
|
|
// don't have DOM node (see bug 506206).
|
|
|
|
nsRefPtr<nsApplicationAccessibleWrap> applicationAcc =
|
|
|
|
nsAccessNode::GetApplicationAccessible();
|
|
|
|
|
|
|
|
if (mAccessible != static_cast<nsIAccessible*>(applicationAcc.get()))
|
|
|
|
NS_ASSERTION(targetNode, "There should always be a DOM node for an event");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (aIsFromUserInput != eAutoDetect) {
|
|
|
|
mIsFromUserInput = aIsFromUserInput == eFromUserInput ? PR_TRUE : PR_FALSE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!targetNode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell = nsCoreUtils::GetPresShellFor(targetNode);
|
|
|
|
if (!presShell) {
|
|
|
|
NS_NOTREACHED("Threre should always be an pres shell for an event");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIEventStateManager *esm = presShell->GetPresContext()->EventStateManager();
|
|
|
|
if (!esm) {
|
|
|
|
NS_NOTREACHED("There should always be an ESM for an event");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mIsFromUserInput = esm->IsHandlingUserInputExternal();
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:23:18 -08:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccReorderEvent
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2009-02-04 22:23:18 -08:00
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsAccReorderEvent, nsAccEvent,
|
|
|
|
nsAccReorderEvent)
|
|
|
|
|
|
|
|
nsAccReorderEvent::nsAccReorderEvent(nsIAccessible *aAccTarget,
|
|
|
|
PRBool aIsAsynch,
|
|
|
|
PRBool aIsUnconditional,
|
|
|
|
nsIDOMNode *aReasonNode) :
|
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_REORDER, aAccTarget,
|
2010-01-20 03:16:32 -08:00
|
|
|
aIsAsynch, eAutoDetect, nsAccEvent::eCoalesceFromSameSubtree),
|
2009-02-04 22:23:18 -08:00
|
|
|
mUnconditionalEvent(aIsUnconditional), mReasonNode(aReasonNode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsAccReorderEvent::IsUnconditionalEvent()
|
|
|
|
{
|
|
|
|
return mUnconditionalEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsAccReorderEvent::HasAccessibleInReasonSubtree()
|
|
|
|
{
|
|
|
|
if (!mReasonNode)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessible> accessible;
|
|
|
|
nsAccessNode::GetAccService()->GetAccessibleFor(mReasonNode,
|
|
|
|
getter_AddRefs(accessible));
|
|
|
|
|
|
|
|
return accessible || nsAccUtils::HasAccessibleChildren(mReasonNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-04-12 23:03:30 -07:00
|
|
|
// nsAccStateChangeEvent
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2009-02-04 22:23:18 -08:00
|
|
|
|
2007-04-12 23:03:30 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsAccStateChangeEvent, nsAccEvent,
|
|
|
|
nsIAccessibleStateChangeEvent)
|
|
|
|
|
|
|
|
nsAccStateChangeEvent::
|
|
|
|
nsAccStateChangeEvent(nsIAccessible *aAccessible,
|
|
|
|
PRUint32 aState, PRBool aIsExtraState,
|
|
|
|
PRBool aIsEnabled):
|
2008-01-17 18:56:38 -08:00
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_STATE_CHANGE, aAccessible),
|
2007-04-12 23:03:30 -07:00
|
|
|
mState(aState), mIsExtraState(aIsExtraState), mIsEnabled(aIsEnabled)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-04-16 21:45:42 -07:00
|
|
|
nsAccStateChangeEvent::
|
|
|
|
nsAccStateChangeEvent(nsIDOMNode *aNode,
|
|
|
|
PRUint32 aState, PRBool aIsExtraState,
|
|
|
|
PRBool aIsEnabled):
|
2008-01-17 18:56:38 -08:00
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_STATE_CHANGE, aNode),
|
2007-04-16 21:45:42 -07:00
|
|
|
mState(aState), mIsExtraState(aIsExtraState), mIsEnabled(aIsEnabled)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAccStateChangeEvent::
|
|
|
|
nsAccStateChangeEvent(nsIDOMNode *aNode,
|
|
|
|
PRUint32 aState, PRBool aIsExtraState):
|
2008-01-17 18:56:38 -08:00
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_STATE_CHANGE, aNode),
|
2007-04-16 21:45:42 -07:00
|
|
|
mState(aState), mIsExtraState(aIsExtraState)
|
|
|
|
{
|
2007-05-09 10:48:11 -07:00
|
|
|
// Use GetAccessibleByNode() because we do not want to store an accessible
|
|
|
|
// since it leads to problems with delayed events in the case when
|
|
|
|
// an accessible gets reorder event before delayed event is processed.
|
|
|
|
nsCOMPtr<nsIAccessible> accessible(GetAccessibleByNode());
|
2007-04-16 21:45:42 -07:00
|
|
|
if (accessible) {
|
|
|
|
PRUint32 state = 0, extraState = 0;
|
2008-11-03 19:37:46 -08:00
|
|
|
accessible->GetState(&state, mIsExtraState ? &extraState : nsnull);
|
2007-04-16 21:45:42 -07:00
|
|
|
mIsEnabled = ((mIsExtraState ? extraState : state) & mState) != 0;
|
|
|
|
} else {
|
|
|
|
mIsEnabled = PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-12 23:03:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccStateChangeEvent::GetState(PRUint32 *aState)
|
|
|
|
{
|
|
|
|
*aState = mState;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccStateChangeEvent::IsExtraState(PRBool *aIsExtraState)
|
|
|
|
{
|
|
|
|
*aIsExtraState = mIsExtraState;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccStateChangeEvent::IsEnabled(PRBool *aIsEnabled)
|
|
|
|
{
|
|
|
|
*aIsEnabled = mIsEnabled;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-04-19 06:17:58 -07:00
|
|
|
// nsAccTextChangeEvent
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-04-16 23:52:52 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsAccTextChangeEvent, nsAccEvent,
|
|
|
|
nsIAccessibleTextChangeEvent)
|
|
|
|
|
|
|
|
nsAccTextChangeEvent::
|
|
|
|
nsAccTextChangeEvent(nsIAccessible *aAccessible,
|
2010-01-20 03:16:32 -08:00
|
|
|
PRInt32 aStart, PRUint32 aLength, PRBool aIsInserted,
|
|
|
|
PRBool aIsAsynch, EIsFromUserInput aIsFromUserInput) :
|
2007-08-10 18:44:44 -07:00
|
|
|
nsAccEvent(aIsInserted ? nsIAccessibleEvent::EVENT_TEXT_INSERTED : nsIAccessibleEvent::EVENT_TEXT_REMOVED,
|
2010-01-20 03:16:32 -08:00
|
|
|
aAccessible, aIsAsynch, aIsFromUserInput),
|
2007-04-19 06:17:58 -07:00
|
|
|
mStart(aStart), mLength(aLength), mIsInserted(aIsInserted)
|
2007-04-16 23:52:52 -07:00
|
|
|
{
|
2009-09-11 21:55:20 -07:00
|
|
|
#ifdef XP_WIN
|
2007-08-28 14:57:53 -07:00
|
|
|
nsCOMPtr<nsIAccessibleText> textAccessible = do_QueryInterface(aAccessible);
|
|
|
|
NS_ASSERTION(textAccessible, "Should not be firing test change event for non-text accessible!!!");
|
|
|
|
if (textAccessible) {
|
|
|
|
textAccessible->GetText(aStart, aStart + aLength, mModifiedText);
|
|
|
|
}
|
2009-09-11 21:55:20 -07:00
|
|
|
#endif
|
2007-04-16 23:52:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTextChangeEvent::GetStart(PRInt32 *aStart)
|
|
|
|
{
|
|
|
|
*aStart = mStart;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTextChangeEvent::GetLength(PRUint32 *aLength)
|
|
|
|
{
|
|
|
|
*aLength = mLength;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTextChangeEvent::IsInserted(PRBool *aIsInserted)
|
|
|
|
{
|
|
|
|
*aIsInserted = mIsInserted;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-08-28 14:57:53 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTextChangeEvent::GetModifiedText(nsAString& aModifiedText)
|
|
|
|
{
|
|
|
|
aModifiedText = mModifiedText;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-06-22 02:52:36 -07:00
|
|
|
// nsAccCaretMoveEvent
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-06-22 02:52:36 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsAccCaretMoveEvent, nsAccEvent,
|
|
|
|
nsIAccessibleCaretMoveEvent)
|
|
|
|
|
2007-06-22 02:27:22 -07:00
|
|
|
nsAccCaretMoveEvent::
|
|
|
|
nsAccCaretMoveEvent(nsIAccessible *aAccessible, PRInt32 aCaretOffset) :
|
2008-01-17 18:56:38 -08:00
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_TEXT_CARET_MOVED, aAccessible, PR_TRUE), // Currently always asynch
|
2007-06-22 02:27:22 -07:00
|
|
|
mCaretOffset(aCaretOffset)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAccCaretMoveEvent::
|
|
|
|
nsAccCaretMoveEvent(nsIDOMNode *aNode) :
|
2008-01-17 18:56:38 -08:00
|
|
|
nsAccEvent(::nsIAccessibleEvent::EVENT_TEXT_CARET_MOVED, aNode, PR_TRUE), // Currently always asynch
|
2007-06-22 02:27:22 -07:00
|
|
|
mCaretOffset(-1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccCaretMoveEvent::GetCaretOffset(PRInt32* aCaretOffset)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCaretOffset);
|
|
|
|
|
|
|
|
*aCaretOffset = mCaretOffset;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-20 03:16:32 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccTableChangeEvent
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-01-17 18:56:38 -08:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsAccTableChangeEvent, nsAccEvent,
|
|
|
|
nsIAccessibleTableChangeEvent)
|
|
|
|
|
|
|
|
nsAccTableChangeEvent::
|
|
|
|
nsAccTableChangeEvent(nsIAccessible *aAccessible, PRUint32 aEventType,
|
|
|
|
PRInt32 aRowOrColIndex, PRInt32 aNumRowsOrCols, PRBool aIsAsynch):
|
|
|
|
nsAccEvent(aEventType, aAccessible, aIsAsynch),
|
|
|
|
mRowOrColIndex(aRowOrColIndex), mNumRowsOrCols(aNumRowsOrCols)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTableChangeEvent::GetRowOrColIndex(PRInt32* aRowOrColIndex)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRowOrColIndex);
|
|
|
|
|
|
|
|
*aRowOrColIndex = mRowOrColIndex;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAccTableChangeEvent::GetNumRowsOrCols(PRInt32* aNumRowsOrCols)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumRowsOrCols);
|
|
|
|
|
|
|
|
*aNumRowsOrCols = mNumRowsOrCols;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|