nsIDOMXULTreeElement.idl 814 B

123456789101112131415161718192021222324252627282930313233
  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 "nsIDOMXULElement.idl"
  6. #include "nsIDOMElement.idl"
  7. interface nsITreeColumns;
  8. interface nsITreeView;
  9. interface nsIDOMXULTextBoxElement;
  10. /**
  11. * @status UNDER_DEVELOPMENT
  12. */
  13. [scriptable, uuid(013b62af-1e2f-4b07-9091-d7c0fc4687e2)]
  14. interface nsIDOMXULTreeElement : nsISupports
  15. {
  16. readonly attribute nsITreeColumns columns;
  17. attribute nsITreeView view;
  18. readonly attribute nsIDOMElement body;
  19. attribute boolean editable;
  20. // For editable trees only.
  21. readonly attribute nsIDOMXULTextBoxElement inputField;
  22. };