2013-01-29 14:00:58 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "EventQueue.h"
|
|
|
|
|
2021-02-20 02:14:32 +03:00
|
|
|
#include "LocalAccessible-inl.h"
|
2013-01-29 14:00:58 +04:00
|
|
|
#include "nsEventShell.h"
|
2014-03-08 01:35:19 +04:00
|
|
|
#include "DocAccessibleChild.h"
|
2014-03-31 18:30:46 +04:00
|
|
|
#include "nsTextEquivUtils.h"
|
2013-09-11 02:18:59 +04:00
|
|
|
#ifdef A11Y_LOG
|
|
|
|
# include "Logging.h"
|
|
|
|
#endif
|
2021-01-27 03:34:21 +03:00
|
|
|
#include "Relation.h"
|
2013-01-29 14:00:58 +04:00
|
|
|
|
2020-10-09 20:56:34 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
// Defines the number of selection add/remove events in the queue when they
|
|
|
|
// aren't packed into single selection within event.
|
|
|
|
const unsigned int kSelChangeCountToPack = 5;
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EventQueue
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
bool EventQueue::PushEvent(AccEvent* aEvent) {
|
|
|
|
NS_ASSERTION((aEvent->mAccessible && aEvent->mAccessible->IsApplication()) ||
|
2016-05-19 20:56:58 +03:00
|
|
|
aEvent->Document() == mDocument,
|
2013-01-29 14:00:58 +04:00
|
|
|
"Queued event belongs to another document!");
|
|
|
|
|
2022-05-07 02:59:43 +03:00
|
|
|
if (aEvent->mEventType == nsIAccessibleEvent::EVENT_FOCUS) {
|
|
|
|
mFocusEvent = aEvent;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-24 16:31:14 +03:00
|
|
|
// XXX(Bug 1631371) Check if this should use a fallible operation as it
|
|
|
|
// pretended earlier, or change the return type to void.
|
|
|
|
mEvents.AppendElement(aEvent);
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
// Filter events.
|
|
|
|
CoalesceEvents();
|
|
|
|
|
2014-03-31 18:30:46 +04:00
|
|
|
if (aEvent->mEventRule != AccEvent::eDoNotEmit &&
|
|
|
|
(aEvent->mEventType == nsIAccessibleEvent::EVENT_NAME_CHANGE ||
|
|
|
|
aEvent->mEventType == nsIAccessibleEvent::EVENT_TEXT_REMOVED ||
|
2016-04-07 16:30:22 +03:00
|
|
|
aEvent->mEventType == nsIAccessibleEvent::EVENT_TEXT_INSERTED)) {
|
2023-03-24 03:37:34 +03:00
|
|
|
PushNameOrDescriptionChange(aEvent);
|
2016-04-07 16:30:22 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-03-24 03:37:34 +03:00
|
|
|
bool EventQueue::PushNameOrDescriptionChange(AccEvent* aOrigEvent) {
|
2021-02-20 02:14:32 +03:00
|
|
|
// Fire name/description change event on parent or related LocalAccessible
|
|
|
|
// being labelled/described given that this event hasn't been coalesced, the
|
2021-01-27 03:39:08 +03:00
|
|
|
// dependent's name/description was calculated from this subtree, and the
|
|
|
|
// subtree was changed.
|
2023-03-24 03:37:34 +03:00
|
|
|
LocalAccessible* target = aOrigEvent->mAccessible;
|
|
|
|
// If the text of a text leaf changed without replacing the leaf, the only
|
|
|
|
// event we get is text inserted on the container. In this case, we might
|
|
|
|
// need to fire a name change event on the target itself.
|
|
|
|
const bool maybeTargetNameChanged =
|
|
|
|
(aOrigEvent->mEventType == nsIAccessibleEvent::EVENT_TEXT_REMOVED ||
|
|
|
|
aOrigEvent->mEventType == nsIAccessibleEvent::EVENT_TEXT_INSERTED) &&
|
|
|
|
nsTextEquivUtils::HasNameRule(target, eNameFromSubtreeRule);
|
|
|
|
const bool doName = target->HasNameDependent() || maybeTargetNameChanged;
|
|
|
|
const bool doDesc = target->HasDescriptionDependent();
|
2021-01-27 03:39:08 +03:00
|
|
|
if (!doName && !doDesc) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-27 03:34:21 +03:00
|
|
|
bool pushed = false;
|
2021-01-27 03:39:08 +03:00
|
|
|
bool nameCheckAncestor = true;
|
|
|
|
// Only continue traversing up the tree if it's possible that the parent
|
2021-02-20 02:14:32 +03:00
|
|
|
// LocalAccessible's name (or a LocalAccessible being labelled by this
|
|
|
|
// LocalAccessible or an ancestor) can depend on this LocalAccessible's name.
|
2023-03-24 03:37:34 +03:00
|
|
|
LocalAccessible* parent = target;
|
2021-08-06 02:04:17 +03:00
|
|
|
do {
|
2021-01-27 03:39:08 +03:00
|
|
|
// Test possible name dependent parent.
|
|
|
|
if (doName) {
|
2023-03-24 03:37:34 +03:00
|
|
|
if (nameCheckAncestor && (maybeTargetNameChanged || parent != target) &&
|
2021-01-27 03:34:21 +03:00
|
|
|
nsTextEquivUtils::HasNameRule(parent, eNameFromSubtreeRule)) {
|
2014-03-31 18:30:46 +04:00
|
|
|
nsAutoString name;
|
|
|
|
ENameValueFlag nameFlag = parent->Name(name);
|
|
|
|
// If name is obtained from subtree, fire name change event.
|
|
|
|
if (nameFlag == eNameFromSubtree) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<AccEvent> nameChangeEvent =
|
2014-03-31 18:30:46 +04:00
|
|
|
new AccEvent(nsIAccessibleEvent::EVENT_NAME_CHANGE, parent);
|
2021-01-27 03:34:21 +03:00
|
|
|
pushed |= PushEvent(nameChangeEvent);
|
2014-03-31 18:30:46 +04:00
|
|
|
}
|
2021-01-27 03:39:08 +03:00
|
|
|
nameCheckAncestor = false;
|
2021-01-27 03:34:21 +03:00
|
|
|
}
|
2021-01-27 03:39:08 +03:00
|
|
|
|
2021-01-27 03:34:21 +03:00
|
|
|
Relation rel = parent->RelationByType(RelationType::LABEL_FOR);
|
2022-08-04 02:58:50 +03:00
|
|
|
while (LocalAccessible* relTarget = rel.LocalNext()) {
|
2021-01-27 03:34:21 +03:00
|
|
|
RefPtr<AccEvent> nameChangeEvent =
|
|
|
|
new AccEvent(nsIAccessibleEvent::EVENT_NAME_CHANGE, relTarget);
|
|
|
|
pushed |= PushEvent(nameChangeEvent);
|
2014-03-31 18:30:46 +04:00
|
|
|
}
|
|
|
|
}
|
2021-01-27 03:39:08 +03:00
|
|
|
|
|
|
|
if (doDesc) {
|
|
|
|
Relation rel = parent->RelationByType(RelationType::DESCRIPTION_FOR);
|
2022-08-04 02:58:50 +03:00
|
|
|
while (LocalAccessible* relTarget = rel.LocalNext()) {
|
2021-01-27 03:39:08 +03:00
|
|
|
RefPtr<AccEvent> descChangeEvent = new AccEvent(
|
|
|
|
nsIAccessibleEvent::EVENT_DESCRIPTION_CHANGE, relTarget);
|
|
|
|
pushed |= PushEvent(descChangeEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-22 02:20:50 +03:00
|
|
|
if (parent->IsDoc()) {
|
|
|
|
// Never cross document boundaries.
|
|
|
|
break;
|
|
|
|
}
|
2021-02-16 23:05:10 +03:00
|
|
|
parent = parent->LocalParent();
|
2021-08-06 02:04:17 +03:00
|
|
|
} while (parent &&
|
|
|
|
nsTextEquivUtils::HasNameRule(parent, eNameFromSubtreeIfReqRule));
|
|
|
|
|
2021-01-27 03:34:21 +03:00
|
|
|
return pushed;
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EventQueue: private
|
|
|
|
|
|
|
|
void EventQueue::CoalesceEvents() {
|
|
|
|
NS_ASSERTION(mEvents.Length(), "There should be at least one pending event!");
|
|
|
|
uint32_t tail = mEvents.Length() - 1;
|
|
|
|
AccEvent* tailEvent = mEvents[tail];
|
|
|
|
|
|
|
|
switch (tailEvent->mEventRule) {
|
|
|
|
case AccEvent::eCoalesceReorder: {
|
2021-02-20 02:14:32 +03:00
|
|
|
DebugOnly<LocalAccessible*> target = tailEvent->mAccessible.get();
|
2016-09-02 22:19:04 +03:00
|
|
|
MOZ_ASSERT(
|
|
|
|
target->IsApplication() || target->IsOuterDoc() ||
|
|
|
|
target->IsXULTree(),
|
2016-04-07 16:30:22 +03:00
|
|
|
"Only app or outerdoc accessible reorder events are in the queue");
|
2016-09-02 22:19:04 +03:00
|
|
|
MOZ_ASSERT(tailEvent->GetEventType() == nsIAccessibleEvent::EVENT_REORDER,
|
|
|
|
"only reorder events should be queued");
|
2013-01-29 14:00:58 +04:00
|
|
|
break; // case eCoalesceReorder
|
2016-09-02 22:19:04 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
case AccEvent::eCoalesceOfSameType: {
|
|
|
|
// Coalesce old events by newer event.
|
|
|
|
for (uint32_t index = tail - 1; index < tail; index--) {
|
|
|
|
AccEvent* accEvent = mEvents[index];
|
|
|
|
if (accEvent->mEventType == tailEvent->mEventType &&
|
|
|
|
accEvent->mEventRule == tailEvent->mEventRule) {
|
|
|
|
accEvent->mEventRule = AccEvent::eDoNotEmit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 10:06:45 +03:00
|
|
|
break; // case eCoalesceOfSameType
|
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
case AccEvent::eCoalesceSelectionChange: {
|
|
|
|
AccSelChangeEvent* tailSelChangeEvent = downcast_accEvent(tailEvent);
|
|
|
|
for (uint32_t index = tail - 1; index < tail; index--) {
|
|
|
|
AccEvent* thisEvent = mEvents[index];
|
|
|
|
if (thisEvent->mEventRule == tailEvent->mEventRule) {
|
|
|
|
AccSelChangeEvent* thisSelChangeEvent = downcast_accEvent(thisEvent);
|
|
|
|
|
|
|
|
// Coalesce selection change events within same control.
|
|
|
|
if (tailSelChangeEvent->mWidget == thisSelChangeEvent->mWidget) {
|
|
|
|
CoalesceSelChangeEvents(tailSelChangeEvent, thisSelChangeEvent,
|
|
|
|
index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 10:06:45 +03:00
|
|
|
break; // eCoalesceSelectionChange
|
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
case AccEvent::eCoalesceStateChange: {
|
|
|
|
// If state change event is duped then ignore previous event. If state
|
|
|
|
// change event is opposite to previous event then no event is emitted
|
|
|
|
// (accessible state wasn't changed).
|
|
|
|
for (uint32_t index = tail - 1; index < tail; index--) {
|
|
|
|
AccEvent* thisEvent = mEvents[index];
|
|
|
|
if (thisEvent->mEventRule != AccEvent::eDoNotEmit &&
|
|
|
|
thisEvent->mEventType == tailEvent->mEventType &&
|
|
|
|
thisEvent->mAccessible == tailEvent->mAccessible) {
|
|
|
|
AccStateChangeEvent* thisSCEvent = downcast_accEvent(thisEvent);
|
|
|
|
AccStateChangeEvent* tailSCEvent = downcast_accEvent(tailEvent);
|
|
|
|
if (thisSCEvent->mState == tailSCEvent->mState) {
|
|
|
|
thisEvent->mEventRule = AccEvent::eDoNotEmit;
|
2021-02-20 02:14:32 +03:00
|
|
|
if (thisSCEvent->mIsEnabled != tailSCEvent->mIsEnabled) {
|
2013-01-29 14:00:58 +04:00
|
|
|
tailEvent->mEventRule = AccEvent::eDoNotEmit;
|
2021-02-20 02:14:32 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break; // eCoalesceStateChange
|
|
|
|
}
|
|
|
|
|
2013-10-26 18:58:53 +04:00
|
|
|
case AccEvent::eCoalesceTextSelChange: {
|
|
|
|
// Coalesce older event by newer event for the same selection or target.
|
|
|
|
// Events for same selection may have different targets and vice versa one
|
|
|
|
// target may be pointed by different selections (for latter see
|
|
|
|
// bug 927159).
|
|
|
|
for (uint32_t index = tail - 1; index < tail; index--) {
|
|
|
|
AccEvent* thisEvent = mEvents[index];
|
|
|
|
if (thisEvent->mEventRule != AccEvent::eDoNotEmit &&
|
|
|
|
thisEvent->mEventType == tailEvent->mEventType) {
|
|
|
|
AccTextSelChangeEvent* thisTSCEvent = downcast_accEvent(thisEvent);
|
|
|
|
AccTextSelChangeEvent* tailTSCEvent = downcast_accEvent(tailEvent);
|
|
|
|
if (thisTSCEvent->mSel == tailTSCEvent->mSel ||
|
2021-02-20 02:14:32 +03:00
|
|
|
thisEvent->mAccessible == tailEvent->mAccessible) {
|
2013-10-26 18:58:53 +04:00
|
|
|
thisEvent->mEventRule = AccEvent::eDoNotEmit;
|
2021-02-20 02:14:32 +03:00
|
|
|
}
|
2013-10-26 18:58:53 +04:00
|
|
|
}
|
|
|
|
}
|
2018-10-18 10:06:45 +03:00
|
|
|
break; // eCoalesceTextSelChange
|
|
|
|
}
|
2013-10-26 18:58:53 +04:00
|
|
|
|
2013-01-29 14:00:58 +04:00
|
|
|
case AccEvent::eRemoveDupes: {
|
|
|
|
// Check for repeat events, coalesce newly appended event by more older
|
|
|
|
// event.
|
|
|
|
for (uint32_t index = tail - 1; index < tail; index--) {
|
|
|
|
AccEvent* accEvent = mEvents[index];
|
|
|
|
if (accEvent->mEventType == tailEvent->mEventType &&
|
|
|
|
accEvent->mEventRule == tailEvent->mEventRule &&
|
|
|
|
accEvent->mAccessible == tailEvent->mAccessible) {
|
|
|
|
tailEvent->mEventRule = AccEvent::eDoNotEmit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 10:06:45 +03:00
|
|
|
break; // case eRemoveDupes
|
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
break; // case eAllowDupes, eDoNotEmit
|
|
|
|
} // switch
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventQueue::CoalesceSelChangeEvents(AccSelChangeEvent* aTailEvent,
|
|
|
|
AccSelChangeEvent* aThisEvent,
|
|
|
|
uint32_t aThisIndex) {
|
|
|
|
aTailEvent->mPreceedingCount = aThisEvent->mPreceedingCount + 1;
|
|
|
|
|
|
|
|
// Pack all preceding events into single selection within event
|
|
|
|
// when we receive too much selection add/remove events.
|
|
|
|
if (aTailEvent->mPreceedingCount >= kSelChangeCountToPack) {
|
|
|
|
aTailEvent->mEventType = nsIAccessibleEvent::EVENT_SELECTION_WITHIN;
|
|
|
|
aTailEvent->mAccessible = aTailEvent->mWidget;
|
|
|
|
aThisEvent->mEventRule = AccEvent::eDoNotEmit;
|
|
|
|
|
|
|
|
// Do not emit any preceding selection events for same widget if they
|
|
|
|
// weren't coalesced yet.
|
|
|
|
if (aThisEvent->mEventType != nsIAccessibleEvent::EVENT_SELECTION_WITHIN) {
|
|
|
|
for (uint32_t jdx = aThisIndex - 1; jdx < aThisIndex; jdx--) {
|
|
|
|
AccEvent* prevEvent = mEvents[jdx];
|
|
|
|
if (prevEvent->mEventRule == aTailEvent->mEventRule) {
|
|
|
|
AccSelChangeEvent* prevSelChangeEvent = downcast_accEvent(prevEvent);
|
2021-02-20 02:14:32 +03:00
|
|
|
if (prevSelChangeEvent->mWidget == aTailEvent->mWidget) {
|
2013-01-29 14:00:58 +04:00
|
|
|
prevSelChangeEvent->mEventRule = AccEvent::eDoNotEmit;
|
2021-02-20 02:14:32 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pack sequential selection remove and selection add events into
|
|
|
|
// single selection change event.
|
|
|
|
if (aTailEvent->mPreceedingCount == 1 &&
|
|
|
|
aTailEvent->mItem != aThisEvent->mItem) {
|
|
|
|
if (aTailEvent->mSelChangeType == AccSelChangeEvent::eSelectionAdd &&
|
|
|
|
aThisEvent->mSelChangeType == AccSelChangeEvent::eSelectionRemove) {
|
|
|
|
aThisEvent->mEventRule = AccEvent::eDoNotEmit;
|
|
|
|
aTailEvent->mEventType = nsIAccessibleEvent::EVENT_SELECTION;
|
|
|
|
aTailEvent->mPackedEvent = aThisEvent;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aThisEvent->mSelChangeType == AccSelChangeEvent::eSelectionAdd &&
|
|
|
|
aTailEvent->mSelChangeType == AccSelChangeEvent::eSelectionRemove) {
|
|
|
|
aTailEvent->mEventRule = AccEvent::eDoNotEmit;
|
|
|
|
aThisEvent->mEventType = nsIAccessibleEvent::EVENT_SELECTION;
|
2013-07-28 22:33:57 +04:00
|
|
|
aThisEvent->mPackedEvent = aTailEvent;
|
2013-01-29 14:00:58 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unpack the packed selection change event because we've got one
|
|
|
|
// more selection add/remove.
|
|
|
|
if (aThisEvent->mEventType == nsIAccessibleEvent::EVENT_SELECTION) {
|
|
|
|
if (aThisEvent->mPackedEvent) {
|
|
|
|
aThisEvent->mPackedEvent->mEventType =
|
|
|
|
aThisEvent->mPackedEvent->mSelChangeType ==
|
|
|
|
AccSelChangeEvent::eSelectionAdd
|
|
|
|
? nsIAccessibleEvent::EVENT_SELECTION_ADD
|
|
|
|
: nsIAccessibleEvent::EVENT_SELECTION_REMOVE;
|
|
|
|
|
|
|
|
aThisEvent->mPackedEvent->mEventRule = AccEvent::eCoalesceSelectionChange;
|
|
|
|
|
|
|
|
aThisEvent->mPackedEvent = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
aThisEvent->mEventType =
|
|
|
|
aThisEvent->mSelChangeType == AccSelChangeEvent::eSelectionAdd
|
|
|
|
? nsIAccessibleEvent::EVENT_SELECTION_ADD
|
|
|
|
: nsIAccessibleEvent::EVENT_SELECTION_REMOVE;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert into selection add since control has single selection but other
|
|
|
|
// selection events for this control are queued.
|
2021-02-20 02:14:32 +03:00
|
|
|
if (aTailEvent->mEventType == nsIAccessibleEvent::EVENT_SELECTION) {
|
2013-01-29 14:00:58 +04:00
|
|
|
aTailEvent->mEventType = nsIAccessibleEvent::EVENT_SELECTION_ADD;
|
2021-02-20 02:14:32 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EventQueue: event queue
|
|
|
|
|
|
|
|
void EventQueue::ProcessEventQueue() {
|
|
|
|
// Process only currently queued events.
|
2020-08-04 14:27:07 +03:00
|
|
|
const nsTArray<RefPtr<AccEvent> > events = std::move(mEvents);
|
2022-06-15 20:08:38 +03:00
|
|
|
nsTArray<uint64_t> selectedIDs;
|
|
|
|
nsTArray<uint64_t> unselectedIDs;
|
|
|
|
|
2013-01-29 14:00:58 +04:00
|
|
|
uint32_t eventCount = events.Length();
|
|
|
|
#ifdef A11Y_LOG
|
2022-05-07 02:59:43 +03:00
|
|
|
if ((eventCount > 0 || mFocusEvent) && logging::IsEnabled(logging::eEvents)) {
|
2013-01-29 14:00:58 +04:00
|
|
|
logging::MsgBegin("EVENTS", "events processing");
|
|
|
|
logging::Address("document", mDocument);
|
|
|
|
logging::MsgEnd();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-05-07 02:59:43 +03:00
|
|
|
if (mFocusEvent) {
|
|
|
|
// Always fire a pending focus event before all other events. We do this for
|
|
|
|
// two reasons:
|
|
|
|
// 1. It prevents extraneous screen reader speech if the name, states, etc.
|
|
|
|
// of the currently focused item change at the same time as another item is
|
|
|
|
// focused. If aria-activedescendant is used, even setting
|
|
|
|
// aria-activedescendant before changing other properties results in the
|
|
|
|
// property change events being queued before the focus event because we
|
|
|
|
// process aria-activedescendant async.
|
|
|
|
// 2. It improves perceived performance. Focus changes should be reported as
|
|
|
|
// soon as possible, so clients should handle focus events before they spend
|
|
|
|
// time on anything else.
|
|
|
|
RefPtr<AccEvent> event = std::move(mFocusEvent);
|
|
|
|
if (!event->mAccessible->IsDefunct()) {
|
|
|
|
FocusMgr()->ProcessFocusEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 14:00:58 +04:00
|
|
|
for (uint32_t idx = 0; idx < eventCount; idx++) {
|
|
|
|
AccEvent* event = events[idx];
|
2022-06-15 20:08:38 +03:00
|
|
|
uint32_t eventType = event->mEventType;
|
|
|
|
LocalAccessible* target = event->GetAccessible();
|
|
|
|
if (!target || target->IsDefunct()) continue;
|
|
|
|
|
|
|
|
// Collect select changes
|
2023-05-29 02:42:12 +03:00
|
|
|
if (IPCAccessibilityActive()) {
|
2022-06-15 20:08:38 +03:00
|
|
|
if ((event->mEventRule == AccEvent::eDoNotEmit &&
|
|
|
|
(eventType == nsIAccessibleEvent::EVENT_SELECTION_ADD ||
|
|
|
|
eventType == nsIAccessibleEvent::EVENT_SELECTION_REMOVE ||
|
|
|
|
eventType == nsIAccessibleEvent::EVENT_SELECTION)) ||
|
|
|
|
eventType == nsIAccessibleEvent::EVENT_SELECTION_WITHIN) {
|
|
|
|
// The selection even was either dropped or morphed to a
|
|
|
|
// selection-within. We need to collect the items from all these events
|
|
|
|
// and manually push their new state to the parent process.
|
|
|
|
AccSelChangeEvent* selChangeEvent = downcast_accEvent(event);
|
|
|
|
LocalAccessible* item = selChangeEvent->mItem;
|
2022-11-22 05:24:28 +03:00
|
|
|
if (!item->IsDefunct()) {
|
|
|
|
uint64_t itemID =
|
|
|
|
item->IsDoc() ? 0 : reinterpret_cast<uint64_t>(item->UniqueID());
|
|
|
|
bool selected = selChangeEvent->mSelChangeType ==
|
|
|
|
AccSelChangeEvent::eSelectionAdd;
|
|
|
|
if (selected) {
|
|
|
|
selectedIDs.AppendElement(itemID);
|
|
|
|
} else {
|
|
|
|
unselectedIDs.AppendElement(itemID);
|
|
|
|
}
|
2022-06-15 20:08:38 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
2022-06-15 20:08:38 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
2022-06-15 20:08:38 +03:00
|
|
|
if (event->mEventRule == AccEvent::eDoNotEmit) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-28 22:33:57 +04:00
|
|
|
|
2022-06-15 20:08:38 +03:00
|
|
|
// Dispatch caret moved and text selection change events.
|
|
|
|
if (eventType == nsIAccessibleEvent::EVENT_TEXT_SELECTION_CHANGED) {
|
|
|
|
SelectionMgr()->ProcessTextSelChangeEvent(event);
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-28 22:33:57 +04:00
|
|
|
|
2022-06-15 20:08:38 +03:00
|
|
|
// Fire selected state change events in support to selection events.
|
|
|
|
if (eventType == nsIAccessibleEvent::EVENT_SELECTION_ADD) {
|
|
|
|
nsEventShell::FireEvent(event->mAccessible, states::SELECTED, true,
|
|
|
|
event->mIsFromUserInput);
|
|
|
|
|
|
|
|
} else if (eventType == nsIAccessibleEvent::EVENT_SELECTION_REMOVE) {
|
|
|
|
nsEventShell::FireEvent(event->mAccessible, states::SELECTED, false,
|
|
|
|
event->mIsFromUserInput);
|
|
|
|
|
|
|
|
} else if (eventType == nsIAccessibleEvent::EVENT_SELECTION) {
|
|
|
|
AccSelChangeEvent* selChangeEvent = downcast_accEvent(event);
|
|
|
|
nsEventShell::FireEvent(
|
|
|
|
event->mAccessible, states::SELECTED,
|
|
|
|
(selChangeEvent->mSelChangeType == AccSelChangeEvent::eSelectionAdd),
|
|
|
|
event->mIsFromUserInput);
|
|
|
|
|
|
|
|
if (selChangeEvent->mPackedEvent) {
|
|
|
|
nsEventShell::FireEvent(selChangeEvent->mPackedEvent->mAccessible,
|
|
|
|
states::SELECTED,
|
|
|
|
(selChangeEvent->mPackedEvent->mSelChangeType ==
|
2013-07-28 22:33:57 +04:00
|
|
|
AccSelChangeEvent::eSelectionAdd),
|
2022-06-15 20:08:38 +03:00
|
|
|
selChangeEvent->mPackedEvent->mIsFromUserInput);
|
2013-07-28 22:33:57 +04:00
|
|
|
}
|
2015-09-15 19:01:51 +03:00
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
|
2022-06-15 20:08:38 +03:00
|
|
|
nsEventShell::FireEvent(event);
|
|
|
|
|
2013-01-29 14:00:58 +04:00
|
|
|
if (!mDocument) return;
|
|
|
|
}
|
2022-06-15 20:08:38 +03:00
|
|
|
|
2023-05-29 02:42:12 +03:00
|
|
|
if (mDocument && IPCAccessibilityActive() &&
|
2022-06-15 20:08:38 +03:00
|
|
|
(!selectedIDs.IsEmpty() || !unselectedIDs.IsEmpty())) {
|
|
|
|
DocAccessibleChild* ipcDoc = mDocument->IPCDoc();
|
|
|
|
ipcDoc->SendSelectedAccessiblesChanged(selectedIDs, unselectedIDs);
|
|
|
|
}
|
2013-01-29 14:00:58 +04:00
|
|
|
}
|
2020-10-09 20:56:34 +03:00
|
|
|
|
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|