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 "nsIDOMXULElement.idl" michael@0: #include "nsIDOMElement.idl" michael@0: michael@0: interface nsITreeColumns; michael@0: interface nsITreeView; michael@0: interface nsIDOMXULTextBoxElement; michael@0: michael@0: /** michael@0: * @status UNDER_DEVELOPMENT michael@0: */ michael@0: michael@0: [scriptable, uuid(013b62af-1e2f-4b07-9091-d7c0fc4687e2)] michael@0: interface nsIDOMXULTreeElement : nsISupports michael@0: { michael@0: michael@0: readonly attribute nsITreeColumns columns; michael@0: michael@0: attribute nsITreeView view; michael@0: michael@0: readonly attribute nsIDOMElement body; michael@0: michael@0: attribute boolean editable; michael@0: michael@0: // For editable trees only. michael@0: readonly attribute nsIDOMXULTextBoxElement inputField; michael@0: michael@0: };