Lines Matching refs:xNode
76 void fillNode( const Reference< XMutableTreeNode >& xNode );
132 …Reference< XMutableTreeNode > xNode( mxTreeDataModel->createNode( Any( rURL ), false ), UNO_QUERY_… in display() local
133 xNode->setDataValue( Any( rURL ) ); in display()
134 …xNode->setExpandedGraphicURL( OUString( RTL_CONSTASCII_USTRINGPARAM( "private:graphicrepository/sd… in display()
135 …xNode->setCollapsedGraphicURL( OUString( RTL_CONSTASCII_USTRINGPARAM( "private:graphicrepository/s… in display()
137 fillNode( xNode ); in display()
138 mxTreeDataModel->setRoot( xNode ); in display()
205 void DirectoryTree::fillNode( const Reference< XMutableTreeNode >& xNode ) in fillNode() argument
207 if( xNode->getChildCount() == 0 ) in fillNode()
210 xNode->getDataValue() >>= sParentPath; in fillNode()
233 xNode->appendChild( xChildNode ); in fillNode()
245 Reference< XMutableTreeNode > xNode( rEvent.Node, UNO_QUERY ); in requestChildNodes() local
246 if( xNode.is() ) in requestChildNodes()
248 fillNode( xNode ); in requestChildNodes()
249 xNode->setHasChildsOnDemand( sal_False ); in requestChildNodes()