nsIAccessibleHideEvent.idl 901 B

1234567891011121314151617181920212223242526272829
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsIAccessibleEvent.idl"
  6. /**
  7. * Fired when a accessible and its subtree are removed from the tree.
  8. */
  9. [scriptable, builtinclass, uuid(2051709a-4e0d-4be5-873d-b49d1dee35fa)]
  10. interface nsIAccessibleHideEvent: nsIAccessibleEvent
  11. {
  12. /**
  13. * Return an accessible that was a parent of the target.
  14. */
  15. readonly attribute nsIAccessible targetParent;
  16. /**
  17. * Return an accessible that was a next sibling of the target
  18. */
  19. readonly attribute nsIAccessible targetNextSibling;
  20. /**
  21. * Return an accessible that was a parent of the target
  22. */
  23. readonly attribute nsIAccessible targetPrevSibling;
  24. };