xref: /trunk/main/offapi/com/sun/star/awt/tree/XTreeNode.idl (revision cdf0e10c4e3984b49a9502b011690b615761d4a3) !
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir#ifndef __com_sun_star_awt_tree_XTreeNode_idl__
28*cdf0e10cSrcweir#define __com_sun_star_awt_tree_XTreeNode_idl__
29*cdf0e10cSrcweir
30*cdf0e10cSrcweir#ifndef __com_sun_star_container_XEnumerationAccess_idl__
31*cdf0e10cSrcweir#include <com/sun/star/container/XEnumerationAccess.idl>
32*cdf0e10cSrcweir#endif
33*cdf0e10cSrcweir
34*cdf0e10cSrcweir#ifndef _com_sun_star_lang_IndexOutOfBoundsException_idl_
35*cdf0e10cSrcweir#include <com/sun/star/lang/IndexOutOfBoundsException.idl>
36*cdf0e10cSrcweir#endif
37*cdf0e10cSrcweir
38*cdf0e10cSrcweir//=============================================================================
39*cdf0e10cSrcweir
40*cdf0e10cSrcweirmodule com {  module sun {  module star {  module awt { module tree {
41*cdf0e10cSrcweir
42*cdf0e10cSrcweir//=============================================================================
43*cdf0e10cSrcweir
44*cdf0e10cSrcweir/** An instance implementing this interface represents the model data for an entry in a
45*cdf0e10cSrcweir    <type>XTreeDataModel</type>.
46*cdf0e10cSrcweir    <p>The <type>TreeControl</type> uses this interface to retrieve the model
47*cdf0e10cSrcweir    information needed to display a hierarchical outline</p>
48*cdf0e10cSrcweir    <p>Each XTreeNode in a <type>XTreeDataModel</type> must be unique.
49*cdf0e10cSrcweir */
50*cdf0e10cSrcweirpublished interface XTreeNode
51*cdf0e10cSrcweir{
52*cdf0e10cSrcweir    /** Returns the child tree node at <var>Index</var>.
53*cdf0e10cSrcweir
54*cdf0e10cSrcweir        @throws ::com::sun::star::lang::IndexOutOfBoundsException
55*cdf0e10cSrcweir            if <var>Index</var> is less than 0 or equal or greater then <member>getChildCount</member>.
56*cdf0e10cSrcweir    */
57*cdf0e10cSrcweir    XTreeNode getChildAt( [in] long Index )
58*cdf0e10cSrcweir        raises( com::sun::star::lang::IndexOutOfBoundsException );
59*cdf0e10cSrcweir
60*cdf0e10cSrcweir    /** Returns the number of child nodes. */
61*cdf0e10cSrcweir    long getChildCount();
62*cdf0e10cSrcweir
63*cdf0e10cSrcweir    /** Returns the parent node of this node. */
64*cdf0e10cSrcweir    XTreeNode getParent();
65*cdf0e10cSrcweir
66*cdf0e10cSrcweir    /** Returns the index of <var>Node</Node> in this instances children.
67*cdf0e10cSrcweir        @returns
68*cdf0e10cSrcweir            The child index of <var>Node</Node> , or -1 if <var>Node</Node>  is no child of this instance.
69*cdf0e10cSrcweir    */
70*cdf0e10cSrcweir    long getIndex( [in] XTreeNode Node);
71*cdf0e10cSrcweir
72*cdf0e10cSrcweir    /** Returns <TRUE/> if the children of this node are created on demand.
73*cdf0e10cSrcweir        <p>A <type>TreeControl</type> will handle a node that returns <TRUE/> always
74*cdf0e10cSrcweir        like a node that has child nodes, even if <member>getChildCount</member>
75*cdf0e10cSrcweir        returns 0.</p>
76*cdf0e10cSrcweir
77*cdf0e10cSrcweir        @see TreeExpansionListener;
78*cdf0e10cSrcweir    */
79*cdf0e10cSrcweir    boolean hasChildrenOnDemand();
80*cdf0e10cSrcweir
81*cdf0e10cSrcweir    /** If not empty, the textual representation of this any is used as the text part of this node.
82*cdf0e10cSrcweir    */
83*cdf0e10cSrcweir    any getDisplayValue();
84*cdf0e10cSrcweir
85*cdf0e10cSrcweir    /** The URL for a graphic that is rendered before the text part of this node.
86*cdf0e10cSrcweir        <p>If this URL is empty, no graphic is rendered.
87*cdf0e10cSrcweir    */
88*cdf0e10cSrcweir    string getNodeGraphicURL();
89*cdf0e10cSrcweir
90*cdf0e10cSrcweir    /** The URL for a graphic that is rendered to visualize expanded non leaf nodes.
91*cdf0e10cSrcweir        <p>If <var>URL</var> is empty, <member>XTreeControl::DefaultExpandedGraphicURL</member> is used.
92*cdf0e10cSrcweir    */
93*cdf0e10cSrcweir    string getExpandedGraphicURL();
94*cdf0e10cSrcweir
95*cdf0e10cSrcweir    /** The URL for a graphic that is rendered to visualize collapsed non leaf nodes.
96*cdf0e10cSrcweir        <p>If <var>URL</var> is empty, <member>XTreeControl::DefaultCollapsedGraphicURL</member> is used.
97*cdf0e10cSrcweir    */
98*cdf0e10cSrcweir    string getCollapsedGraphicURL();
99*cdf0e10cSrcweir};
100*cdf0e10cSrcweir
101*cdf0e10cSrcweir//=============================================================================
102*cdf0e10cSrcweir
103*cdf0e10cSrcweir}; }; }; }; };
104*cdf0e10cSrcweir
105*cdf0e10cSrcweir#endif
106