michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsIAccessibleEvent.idl" michael@0: michael@0: /** michael@0: * Fired when a accessible and its subtree are removed from the tree. michael@0: */ michael@0: [scriptable, builtinclass, uuid(a2bd2eca-3afa-489b-afb2-f93ef32ad99c)] michael@0: interface nsIAccessibleHideEvent: nsIAccessibleEvent michael@0: { michael@0: /** michael@0: * Return an accessible that was a parent of the target. michael@0: */ michael@0: readonly attribute nsIAccessible targetParent; michael@0: michael@0: /** michael@0: * Return an accessible that was a next sibling of the target michael@0: */ michael@0: readonly attribute nsIAccessible targetNextSibling; michael@0: michael@0: /** michael@0: * Return an accessible that was a parent of the target michael@0: */ michael@0: readonly attribute nsIAccessible targetPrevSibling; michael@0: };