LCOV - code coverage report
Current view: top level - svtools/source/uno - treecontrolpeer.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 736 0.1 %
Date: 2015-06-13 12:38:46 Functions: 2 109 1.8 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <com/sun/star/graphic/GraphicProvider.hpp>
      22             : #include <com/sun/star/lang/XServiceInfo.hpp>
      23             : #include <com/sun/star/lang/DisposedException.hpp>
      24             : #include <com/sun/star/view/SelectionType.hpp>
      25             : #include <toolkit/helper/property.hxx>
      26             : #include <toolkit/helper/vclunohelper.hxx>
      27             : 
      28             : #include <com/sun/star/awt/tree/XMutableTreeNode.hpp>
      29             : #include "treecontrolpeer.hxx"
      30             : #include <comphelper/processfactory.hxx>
      31             : 
      32             : #include <rtl/ref.hxx>
      33             : #include <vcl/graph.hxx>
      34             : #include <vcl/svapp.hxx>
      35             : #include <svtools/treelistbox.hxx>
      36             : #include <svtools/treelistentry.hxx>
      37             : #include <svtools/viewdataentry.hxx>
      38             : #include <svtools/svlbitm.hxx>
      39             : 
      40             : #include <map>
      41             : 
      42             : using namespace ::com::sun::star;
      43             : using namespace ::com::sun::star::uno;
      44             : using namespace ::com::sun::star::lang;
      45             : using namespace ::com::sun::star::awt::tree;
      46             : using namespace ::com::sun::star::beans;
      47             : using namespace ::com::sun::star::view;
      48             : using namespace ::com::sun::star::container;
      49             : using namespace ::com::sun::star::util;
      50             : using namespace ::com::sun::star::graphic;
      51             : 
      52             : struct LockGuard
      53             : {
      54             : public:
      55           0 :     explicit LockGuard( sal_Int32& rLock )
      56           0 :     : mrLock( rLock )
      57             :     {
      58           0 :         rLock++;
      59           0 :     }
      60             : 
      61           0 :     ~LockGuard()
      62             :     {
      63           0 :         mrLock--;
      64           0 :     }
      65             : 
      66             :     sal_Int32& mrLock;
      67             : };
      68             : 
      69             : 
      70             : 
      71             : 
      72           0 : class ImplContextGraphicItem : public SvLBoxContextBmp
      73             : {
      74             : public:
      75           0 :     ImplContextGraphicItem( SvTreeListEntry* pEntry,sal_uInt16 nFlags,Image& rI1,Image& rI2, bool bExpanded)
      76           0 :         : SvLBoxContextBmp(pEntry, nFlags, rI1, rI2, bExpanded) {}
      77             : 
      78             :     OUString msExpandedGraphicURL;
      79             :     OUString msCollapsedGraphicURL;
      80             : };
      81             : 
      82             : 
      83             : 
      84             : class UnoTreeListBoxImpl : public SvTreeListBox
      85             : {
      86             : public:
      87             :     UnoTreeListBoxImpl( TreeControlPeer* pPeer, vcl::Window* pParent, WinBits nWinStyle );
      88             :     virtual ~UnoTreeListBoxImpl();
      89             :     virtual void dispose() SAL_OVERRIDE;
      90             : 
      91             :     sal_uInt32 insert( SvTreeListEntry* pEntry,SvTreeListEntry* pParent,sal_uLong nPos=TREELIST_APPEND );
      92             : 
      93             :     virtual void    RequestingChildren( SvTreeListEntry* pParent ) SAL_OVERRIDE;
      94             : 
      95             :     virtual bool    EditingEntry( SvTreeListEntry* pEntry, Selection& ) SAL_OVERRIDE;
      96             :     virtual bool    EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewText ) SAL_OVERRIDE;
      97             : 
      98             :     DECL_LINK(OnSelectionChangeHdl, void *);
      99             :     DECL_LINK(OnExpandingHdl, void *);
     100             :     DECL_LINK(OnExpandedHdl, void *);
     101             : 
     102             : private:
     103             :     rtl::Reference< TreeControlPeer > mxPeer;
     104             : };
     105             : 
     106             : 
     107             : 
     108             : class UnoTreeListItem : public SvLBoxString
     109             : {
     110             : public:
     111             :     explicit        UnoTreeListItem( SvTreeListEntry* );
     112             :                     UnoTreeListItem();
     113             :     virtual         ~UnoTreeListItem();
     114             :     void            InitViewData( SvTreeListBox*,SvTreeListEntry*,SvViewDataItem* ) SAL_OVERRIDE;
     115             :     void            SetImage( const Image& rImage );
     116           0 :     OUString        GetGraphicURL() const { return maGraphicURL;}
     117             :     void            SetGraphicURL( const OUString& rGraphicURL );
     118             :     virtual void    Paint(const Point& rPos, SvTreeListBox& rOutDev, vcl::RenderContext& rRenderContext,
     119             :                           const SvViewDataEntry* pView, const SvTreeListEntry& rEntry) SAL_OVERRIDE;
     120             :     SvLBoxItem*     Create() const SAL_OVERRIDE;
     121             :     void            Clone( SvLBoxItem* pSource ) SAL_OVERRIDE;
     122             : 
     123             : private:
     124             :     OUString        maGraphicURL;
     125             :     Image           maImage;
     126             : };
     127             : 
     128             : 
     129             : 
     130             : class UnoTreeListEntry : public SvTreeListEntry
     131             : {
     132             : public:
     133             :     UnoTreeListEntry( const Reference< XTreeNode >& xNode, TreeControlPeer* pPeer );
     134             :     virtual ~UnoTreeListEntry();
     135             : 
     136             :     Reference< XTreeNode > mxNode;
     137             :     TreeControlPeer* mpPeer;
     138             : };
     139             : 
     140           0 : TreeControlPeer::TreeControlPeer()
     141             :     : maSelectionListeners( *this )
     142             :     , maTreeExpansionListeners( *this )
     143             :     , maTreeEditListeners( *this )
     144             :     , mbIsRootDisplayed(false)
     145             :     , mpTreeImpl( 0 )
     146             :     , mnEditLock( 0 )
     147           0 :     , mpTreeNodeMap( 0 )
     148             : {
     149           0 : }
     150             : 
     151             : 
     152             : 
     153           0 : TreeControlPeer::~TreeControlPeer()
     154             : {
     155           0 :     if( mpTreeImpl )
     156           0 :         mpTreeImpl->Clear();
     157           0 :     delete mpTreeNodeMap;
     158           0 : }
     159             : 
     160             : 
     161             : 
     162           0 : void TreeControlPeer::addEntry( UnoTreeListEntry* pEntry )
     163             : {
     164           0 :     if( pEntry && pEntry->mxNode.is() )
     165             :     {
     166           0 :         if( !mpTreeNodeMap )
     167             :         {
     168           0 :             mpTreeNodeMap = new TreeNodeMap();
     169             :         }
     170             : 
     171           0 :         (*mpTreeNodeMap)[ pEntry->mxNode ] = pEntry;
     172             :     }
     173           0 : }
     174             : 
     175             : 
     176             : 
     177           0 : void TreeControlPeer::removeEntry( UnoTreeListEntry* pEntry )
     178             : {
     179           0 :     if( mpTreeNodeMap && pEntry && pEntry->mxNode.is() )
     180             :     {
     181           0 :         TreeNodeMap::iterator aIter( mpTreeNodeMap->find( pEntry->mxNode ) );
     182           0 :         if( aIter != mpTreeNodeMap->end() )
     183             :         {
     184           0 :             mpTreeNodeMap->erase( aIter );
     185             :         }
     186             :     }
     187           0 : }
     188             : 
     189             : 
     190             : 
     191           0 : UnoTreeListEntry* TreeControlPeer::getEntry( const Reference< XTreeNode >& xNode, bool bThrow /* = true */ ) throw( IllegalArgumentException )
     192             : {
     193           0 :     if( mpTreeNodeMap )
     194             :     {
     195           0 :         TreeNodeMap::iterator aIter( mpTreeNodeMap->find( xNode ) );
     196           0 :         if( aIter != mpTreeNodeMap->end() )
     197           0 :             return (*aIter).second;
     198             :     }
     199             : 
     200           0 :     if( bThrow )
     201           0 :         throw IllegalArgumentException();
     202             : 
     203           0 :     return 0;
     204             : }
     205             : 
     206             : 
     207             : 
     208           0 : vcl::Window* TreeControlPeer::createVclControl( vcl::Window* pParent, sal_Int64 nWinStyle )
     209             : {
     210           0 :     mpTreeImpl = VclPtr<UnoTreeListBoxImpl>::Create( this, pParent, nWinStyle );
     211           0 :     return mpTreeImpl;
     212             : }
     213             : 
     214             : 
     215             : 
     216             : /** called from the UnoTreeListBoxImpl when it gets deleted */
     217           0 : void TreeControlPeer::disposeControl()
     218             : {
     219           0 :     delete mpTreeNodeMap;
     220           0 :     mpTreeNodeMap = 0;
     221           0 :     mpTreeImpl = 0;
     222           0 : }
     223             : 
     224             : 
     225             : 
     226           0 : void TreeControlPeer::SetWindow( const VclPtr< vcl::Window > &pWindow )
     227             : {
     228           0 :     VCLXWindow::SetWindow( pWindow );
     229           0 : }
     230             : 
     231             : 
     232             : 
     233           0 : UnoTreeListEntry* TreeControlPeer::createEntry( const Reference< XTreeNode >& xNode, UnoTreeListEntry* pParent, sal_uLong nPos /* = TREELIST_APPEND */ )
     234             : {
     235           0 :     UnoTreeListEntry* pEntry = 0;
     236           0 :     if( mpTreeImpl )
     237             :     {
     238           0 :         Image aImage;
     239           0 :         pEntry = new UnoTreeListEntry( xNode, this );
     240           0 :         ImplContextGraphicItem* pContextBmp= new ImplContextGraphicItem(pEntry, 0, aImage, aImage, true);
     241             : 
     242           0 :         pEntry->AddItem( pContextBmp );
     243             : 
     244           0 :         UnoTreeListItem * pUnoItem = new UnoTreeListItem( pEntry );
     245             : 
     246           0 :         if( !xNode->getNodeGraphicURL().isEmpty() )
     247             :         {
     248           0 :             pUnoItem->SetGraphicURL( xNode->getNodeGraphicURL() );
     249           0 :             Image aNodeImage;
     250           0 :             loadImage( xNode->getNodeGraphicURL(), aNodeImage );
     251           0 :             pUnoItem->SetImage( aNodeImage );
     252           0 :             mpTreeImpl->AdjustEntryHeight( aNodeImage );
     253             :         }
     254             : 
     255           0 :         pEntry->AddItem( pUnoItem );
     256             : 
     257           0 :         mpTreeImpl->insert( pEntry, pParent, nPos );
     258             : 
     259           0 :         if( !msDefaultExpandedGraphicURL.isEmpty() )
     260           0 :             mpTreeImpl->SetExpandedEntryBmp( pEntry, maDefaultExpandedImage );
     261             : 
     262           0 :         if( !msDefaultCollapsedGraphicURL.isEmpty() )
     263           0 :             mpTreeImpl->SetCollapsedEntryBmp( pEntry, maDefaultCollapsedImage );
     264             : 
     265           0 :         updateEntry( pEntry );
     266             :     }
     267           0 :     return pEntry;
     268             : }
     269             : 
     270             : 
     271             : 
     272           0 : bool TreeControlPeer::updateEntry( UnoTreeListEntry* pEntry )
     273             : {
     274           0 :     bool bChanged = false;
     275           0 :     if( pEntry && pEntry->mxNode.is() && mpTreeImpl )
     276             :     {
     277           0 :         const OUString aValue( getEntryString( pEntry->mxNode->getDisplayValue() ) );
     278           0 :         UnoTreeListItem* pUnoItem = dynamic_cast< UnoTreeListItem* >( pEntry->GetItem( 1 ) );
     279           0 :         if( pUnoItem )
     280             :         {
     281           0 :             if( aValue != pUnoItem->GetText() )
     282             :             {
     283           0 :                 pUnoItem->SetText( aValue );
     284           0 :                 bChanged = true;
     285             :             }
     286             : 
     287           0 :             if( pUnoItem->GetGraphicURL() != pEntry->mxNode->getNodeGraphicURL() )
     288             :             {
     289           0 :                 Image aImage;
     290           0 :                 if( loadImage( pEntry->mxNode->getNodeGraphicURL(), aImage ) )
     291             :                 {
     292           0 :                     pUnoItem->SetGraphicURL( pEntry->mxNode->getNodeGraphicURL() );
     293           0 :                     pUnoItem->SetImage( aImage );
     294           0 :                     mpTreeImpl->AdjustEntryHeight( aImage );
     295           0 :                     bChanged = true;
     296           0 :                 }
     297             :             }
     298             :         }
     299             : 
     300           0 :         if( bool(pEntry->mxNode->hasChildrenOnDemand()) != pEntry->HasChildrenOnDemand() )
     301             :         {
     302           0 :             pEntry->EnableChildrenOnDemand( pEntry->mxNode->hasChildrenOnDemand() );
     303           0 :             bChanged = true;
     304             :         }
     305             : 
     306           0 :         ImplContextGraphicItem* pContextGraphicItem = dynamic_cast< ImplContextGraphicItem* >( pEntry->GetItem( 0 ) );
     307           0 :         if( pContextGraphicItem )
     308             :         {
     309           0 :             if( pContextGraphicItem->msExpandedGraphicURL != pEntry->mxNode->getExpandedGraphicURL() )
     310             :             {
     311           0 :                 Image aImage;
     312           0 :                 if( loadImage( pEntry->mxNode->getExpandedGraphicURL(), aImage ) )
     313             :                 {
     314           0 :                     pContextGraphicItem->msExpandedGraphicURL = pEntry->mxNode->getExpandedGraphicURL();
     315           0 :                     mpTreeImpl->SetExpandedEntryBmp( pEntry, aImage );
     316           0 :                     bChanged = true;
     317           0 :                 }
     318             :             }
     319           0 :             if( pContextGraphicItem->msCollapsedGraphicURL != pEntry->mxNode->getCollapsedGraphicURL() )
     320             :             {
     321           0 :                 Image aImage;
     322           0 :                 if( loadImage( pEntry->mxNode->getCollapsedGraphicURL(), aImage ) )
     323             :                 {
     324           0 :                     pContextGraphicItem->msCollapsedGraphicURL = pEntry->mxNode->getCollapsedGraphicURL();
     325           0 :                     mpTreeImpl->SetCollapsedEntryBmp( pEntry, aImage );
     326           0 :                     bChanged = true;
     327           0 :                 }
     328             :             }
     329             :         }
     330             : 
     331           0 :         if( bChanged )
     332           0 :             mpTreeImpl->GetModel()->InvalidateEntry( pEntry );
     333             :     }
     334             : 
     335           0 :     return bChanged;
     336             : }
     337             : 
     338             : 
     339             : 
     340           0 : void TreeControlPeer::onSelectionChanged()
     341             : {
     342           0 :     Reference< XInterface > xSource( static_cast< ::cppu::OWeakObject* >( this ) );
     343           0 :     EventObject aEvent( xSource );
     344           0 :     maSelectionListeners.selectionChanged( aEvent );
     345           0 : }
     346             : 
     347             : 
     348             : 
     349           0 : void TreeControlPeer::onRequestChildNodes( const Reference< XTreeNode >& xNode )
     350             : {
     351             :     try
     352             :     {
     353           0 :         Reference< XInterface > xSource( static_cast< ::cppu::OWeakObject* >( this ) );
     354           0 :         TreeExpansionEvent aEvent( xSource, xNode );
     355           0 :         maTreeExpansionListeners.requestChildNodes( aEvent );
     356             :     }
     357           0 :     catch( Exception& )
     358             :     {
     359             :     }
     360           0 : }
     361             : 
     362             : 
     363             : 
     364           0 : bool TreeControlPeer::onExpanding( const Reference< XTreeNode >& xNode, bool bExpanding )
     365             : {
     366             :     try
     367             :     {
     368           0 :         Reference< XInterface > xSource( static_cast< ::cppu::OWeakObject* >( this ) );
     369           0 :         TreeExpansionEvent aEvent( xSource, xNode );
     370           0 :         if( bExpanding )
     371             :         {
     372           0 :             maTreeExpansionListeners.treeExpanding( aEvent );
     373             :         }
     374             :         else
     375             :         {
     376           0 :             maTreeExpansionListeners.treeCollapsing( aEvent );
     377           0 :         }
     378             :     }
     379           0 :     catch( Exception& )
     380             :     {
     381           0 :         return false;
     382             :     }
     383           0 :     return true;
     384             : }
     385             : 
     386             : 
     387             : 
     388           0 : void TreeControlPeer::onExpanded( const Reference< XTreeNode >& xNode, bool bExpanding )
     389             : {
     390             :     try
     391             :     {
     392           0 :         Reference< XInterface > xSource( static_cast< ::cppu::OWeakObject* >( this ) );
     393           0 :         TreeExpansionEvent aEvent( xSource, xNode );
     394             : 
     395           0 :         if( bExpanding )
     396             :         {
     397           0 :             maTreeExpansionListeners.treeExpanded( aEvent );
     398             :         }
     399             :         else
     400             :         {
     401           0 :             maTreeExpansionListeners.treeCollapsed( aEvent );
     402           0 :         }
     403             :     }
     404           0 :     catch( Exception& )
     405             :     {
     406             :     }
     407           0 : }
     408             : 
     409             : 
     410             : 
     411           0 : void TreeControlPeer::fillTree( UnoTreeListBoxImpl& rTree, const Reference< XTreeDataModel >& xDataModel )
     412             : {
     413           0 :     rTree.Clear();
     414             : 
     415           0 :     if( xDataModel.is() )
     416             :     {
     417           0 :         Reference< XTreeNode > xRootNode( xDataModel->getRoot() );
     418           0 :         if( xRootNode.is() )
     419             :         {
     420           0 :             if( mbIsRootDisplayed )
     421             :             {
     422           0 :                 addNode( rTree, xRootNode, 0 );
     423             :             }
     424             :             else
     425             :             {
     426           0 :                 const sal_Int32 nChildCount = xRootNode->getChildCount();
     427           0 :                 for( sal_Int32 nChild = 0; nChild < nChildCount; nChild++ )
     428           0 :                     addNode( rTree, xRootNode->getChildAt( nChild ), 0 );
     429             :             }
     430           0 :         }
     431             :     }
     432           0 : }
     433             : 
     434             : 
     435             : 
     436           0 : void TreeControlPeer::addNode( UnoTreeListBoxImpl& rTree, const Reference< XTreeNode >& xNode, UnoTreeListEntry* pParentEntry )
     437             : {
     438           0 :     if( xNode.is() )
     439             :     {
     440           0 :         UnoTreeListEntry* pEntry = createEntry( xNode, pParentEntry, TREELIST_APPEND );
     441           0 :         const sal_Int32 nChildCount = xNode->getChildCount();
     442           0 :         for( sal_Int32 nChild = 0; nChild < nChildCount; nChild++ )
     443           0 :             addNode( rTree, xNode->getChildAt( nChild ), pEntry );
     444             :     }
     445           0 : }
     446             : 
     447             : 
     448             : 
     449           0 : UnoTreeListBoxImpl& TreeControlPeer::getTreeListBoxOrThrow() const throw (RuntimeException )
     450             : {
     451           0 :     if( !mpTreeImpl )
     452           0 :         throw DisposedException();
     453           0 :     return *mpTreeImpl;
     454             : }
     455             : 
     456             : 
     457             : 
     458           0 : void TreeControlPeer::ChangeNodesSelection( const Any& rSelection, bool bSelect, bool bSetSelection ) throw( RuntimeException, IllegalArgumentException )
     459             : {
     460           0 :     SolarMutexGuard aGuard;
     461             : 
     462           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     463             : 
     464           0 :     Reference< XTreeNode > xTempNode;
     465             : 
     466           0 :     const Reference< XTreeNode > *pNodes = 0;
     467           0 :     sal_Int32 nCount = 0;
     468             : 
     469           0 :     if( rSelection.hasValue() )
     470             :     {
     471           0 :         switch( rSelection.getValueTypeClass() )
     472             :         {
     473             :         case TypeClass_INTERFACE:
     474             :             {
     475           0 :                 rSelection >>= xTempNode;
     476           0 :                 if( xTempNode.is() )
     477             :                 {
     478           0 :                     nCount = 1;
     479           0 :                     pNodes = &xTempNode;
     480             :                 }
     481           0 :                 break;
     482             :             }
     483             :         case TypeClass_SEQUENCE:
     484             :             {
     485           0 :                 if( rSelection.getValueType() == cppu::UnoType<Sequence< Reference< XTreeNode > >>::get() )
     486             :                 {
     487           0 :                     const Sequence< Reference< XTreeNode > >& rSeq( *static_cast<const Sequence< Reference< XTreeNode > > *>(rSelection.getValue()) );
     488           0 :                     nCount = rSeq.getLength();
     489           0 :                     if( nCount )
     490           0 :                         pNodes = rSeq.getConstArray();
     491             :                 }
     492           0 :                 break;
     493             :             }
     494             :         default:
     495           0 :             break;
     496             :         }
     497             : 
     498           0 :         if( nCount == 0 )
     499           0 :             throw IllegalArgumentException();
     500             :     }
     501             : 
     502           0 :     if( bSetSelection )
     503           0 :         rTree.SelectAll( false );
     504             : 
     505           0 :     if( pNodes && nCount )
     506             :     {
     507           0 :         while( nCount-- )
     508             :         {
     509           0 :             UnoTreeListEntry* pEntry = getEntry( *pNodes++ );
     510           0 :             rTree.Select( pEntry, bSelect );
     511             :         }
     512           0 :     }
     513           0 : }
     514             : 
     515             : 
     516             : // ::com::sun::star::view::XSelectionSupplier
     517             : 
     518             : 
     519           0 : sal_Bool SAL_CALL TreeControlPeer::select( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException, std::exception)
     520             : {
     521           0 :     SolarMutexGuard aGuard;
     522           0 :     ChangeNodesSelection( rSelection, true, true );
     523           0 :     return sal_True;
     524             : }
     525             : 
     526             : 
     527             : 
     528           0 : Any SAL_CALL TreeControlPeer::getSelection() throw (RuntimeException, std::exception)
     529             : {
     530           0 :     SolarMutexGuard aGuard;
     531             : 
     532           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     533             : 
     534           0 :     Any aRet;
     535             : 
     536           0 :     sal_uLong nSelectionCount = rTree.GetSelectionCount();
     537           0 :     if( nSelectionCount == 1 )
     538             :     {
     539           0 :         UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
     540           0 :         if( pEntry && pEntry->mxNode.is() )
     541           0 :             aRet <<= pEntry->mxNode;
     542             :     }
     543           0 :     else if( nSelectionCount > 1 )
     544             :     {
     545           0 :         Sequence< Reference< XTreeNode > > aSelection( nSelectionCount );
     546           0 :         Reference< XTreeNode >* pNodes = aSelection.getArray();
     547           0 :         UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
     548           0 :         while( pEntry && nSelectionCount )
     549             :         {
     550           0 :             *pNodes++ = pEntry->mxNode;
     551           0 :             pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
     552           0 :             --nSelectionCount;
     553             :         }
     554             : 
     555             :         OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
     556           0 :         aRet <<= aSelection;
     557             :     }
     558             : 
     559           0 :     return aRet;
     560             : }
     561             : 
     562             : 
     563             : 
     564           0 : void SAL_CALL TreeControlPeer::addSelectionChangeListener( const Reference< XSelectionChangeListener >& xListener ) throw (RuntimeException, std::exception)
     565             : {
     566           0 :     maSelectionListeners.addInterface( xListener );
     567           0 : }
     568             : 
     569             : 
     570             : 
     571           0 : void SAL_CALL TreeControlPeer::removeSelectionChangeListener( const Reference< XSelectionChangeListener >& xListener ) throw (RuntimeException, std::exception)
     572             : {
     573           0 :     maSelectionListeners.addInterface( xListener );
     574           0 : }
     575             : 
     576             : 
     577             : // ::com::sun::star::view::XMultiSelectionSupplier
     578             : 
     579             : 
     580           0 : sal_Bool SAL_CALL TreeControlPeer::addSelection( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException, std::exception)
     581             : {
     582           0 :     ChangeNodesSelection( rSelection, true, false );
     583           0 :     return sal_True;
     584             : }
     585             : 
     586             : 
     587             : 
     588           0 : void SAL_CALL TreeControlPeer::removeSelection( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException, std::exception)
     589             : {
     590           0 :     ChangeNodesSelection( rSelection, false, false );
     591           0 : }
     592             : 
     593             : 
     594             : 
     595           0 : void SAL_CALL TreeControlPeer::clearSelection() throw (RuntimeException, std::exception)
     596             : {
     597           0 :     SolarMutexGuard aGuard;
     598           0 :     getTreeListBoxOrThrow().SelectAll( false );
     599           0 : }
     600             : 
     601             : 
     602             : 
     603           0 : sal_Int32 SAL_CALL TreeControlPeer::getSelectionCount() throw (RuntimeException, std::exception)
     604             : {
     605           0 :     SolarMutexGuard aGuard;
     606           0 :     return getTreeListBoxOrThrow().GetSelectionCount();
     607             : }
     608             : 
     609             : 
     610             : 
     611           0 : class TreeSelectionEnumeration : public ::cppu::WeakImplHelper1< XEnumeration >
     612             : {
     613             : public:
     614             :     explicit TreeSelectionEnumeration( std::list< Any >& rSelection );
     615             :     virtual sal_Bool SAL_CALL hasMoreElements() throw (RuntimeException, std::exception) SAL_OVERRIDE;
     616             :     virtual Any SAL_CALL nextElement() throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) SAL_OVERRIDE;
     617             : 
     618             :     std::list< Any > maSelection;
     619             :     std::list< Any >::iterator maIter;
     620             : };
     621             : 
     622             : 
     623             : 
     624           0 : TreeSelectionEnumeration::TreeSelectionEnumeration( std::list< Any >& rSelection )
     625             : {
     626           0 :     maSelection.swap( rSelection );
     627           0 :     maIter = maSelection.begin();
     628           0 : }
     629             : 
     630             : 
     631             : 
     632           0 : sal_Bool SAL_CALL TreeSelectionEnumeration::hasMoreElements() throw (RuntimeException, std::exception)
     633             : {
     634           0 :     return maIter != maSelection.end();
     635             : }
     636             : 
     637             : 
     638             : 
     639           0 : Any SAL_CALL TreeSelectionEnumeration::nextElement() throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception)
     640             : {
     641           0 :     if( maIter == maSelection.end() )
     642           0 :         throw NoSuchElementException();
     643             : 
     644           0 :     return (*maIter++);
     645             : }
     646             : 
     647             : 
     648             : 
     649           0 : Reference< XEnumeration > SAL_CALL TreeControlPeer::createSelectionEnumeration() throw (RuntimeException, std::exception)
     650             : {
     651           0 :     SolarMutexGuard aGuard;
     652             : 
     653           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     654             : 
     655           0 :     sal_uInt32 nSelectionCount = rTree.GetSelectionCount();
     656           0 :     std::list< Any > aSelection( nSelectionCount );
     657             : 
     658           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
     659           0 :     while( pEntry && nSelectionCount )
     660             :     {
     661           0 :         aSelection.push_back( Any( pEntry->mxNode ) );
     662           0 :         pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
     663           0 :         --nSelectionCount;
     664             :     }
     665             : 
     666             :     OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
     667             : 
     668           0 :     return Reference< XEnumeration >( new TreeSelectionEnumeration( aSelection ) );
     669             : }
     670             : 
     671             : 
     672             : 
     673           0 : Reference< XEnumeration > SAL_CALL TreeControlPeer::createReverseSelectionEnumeration() throw (RuntimeException, std::exception)
     674             : {
     675           0 :     SolarMutexGuard aGuard;
     676             : 
     677           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     678             : 
     679           0 :     sal_uInt32 nSelectionCount = rTree.GetSelectionCount();
     680           0 :     std::list< Any > aSelection;
     681             : 
     682           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
     683           0 :     while( pEntry && nSelectionCount )
     684             :     {
     685           0 :         aSelection.push_front( Any( pEntry->mxNode ) );
     686           0 :         pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
     687           0 :         --nSelectionCount;
     688             :     }
     689             : 
     690             :     OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
     691             : 
     692           0 :     return Reference< XEnumeration >( new TreeSelectionEnumeration( aSelection ) );
     693             : }
     694             : 
     695             : 
     696             : // ::com::sun::star::awt::XTreeControl
     697             : 
     698             : 
     699           0 : OUString SAL_CALL TreeControlPeer::getDefaultExpandedGraphicURL() throw (::com::sun::star::uno::RuntimeException, std::exception)
     700             : {
     701           0 :     SolarMutexGuard aGuard;
     702           0 :     return msDefaultExpandedGraphicURL;
     703             : }
     704             : 
     705             : 
     706             : 
     707           0 : void SAL_CALL TreeControlPeer::setDefaultExpandedGraphicURL( const OUString& sDefaultExpandedGraphicURL ) throw (::com::sun::star::uno::RuntimeException, std::exception)
     708             : {
     709           0 :     SolarMutexGuard aGuard;
     710           0 :     if( msDefaultExpandedGraphicURL != sDefaultExpandedGraphicURL )
     711             :     {
     712           0 :         if( !sDefaultExpandedGraphicURL.isEmpty() )
     713           0 :             loadImage( sDefaultExpandedGraphicURL, maDefaultExpandedImage );
     714             :         else
     715           0 :             maDefaultExpandedImage = Image();
     716             : 
     717           0 :         UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     718             : 
     719           0 :         SvTreeListEntry* pEntry = rTree.First();
     720           0 :         while( pEntry )
     721             :         {
     722           0 :             ImplContextGraphicItem* pContextGraphicItem = dynamic_cast< ImplContextGraphicItem* >( pEntry->GetItem( 0 ) );
     723           0 :             if( pContextGraphicItem )
     724             :             {
     725           0 :                 if( pContextGraphicItem->msExpandedGraphicURL.isEmpty() )
     726           0 :                     rTree.SetExpandedEntryBmp( pEntry, maDefaultExpandedImage );
     727             :             }
     728           0 :             pEntry = rTree.Next( pEntry );
     729             :         }
     730             : 
     731           0 :         msDefaultExpandedGraphicURL = sDefaultExpandedGraphicURL;
     732           0 :     }
     733           0 : }
     734             : 
     735             : 
     736             : 
     737           0 : OUString SAL_CALL TreeControlPeer::getDefaultCollapsedGraphicURL() throw (::com::sun::star::uno::RuntimeException, std::exception)
     738             : {
     739           0 :     SolarMutexGuard aGuard;
     740           0 :     return msDefaultCollapsedGraphicURL;
     741             : }
     742             : 
     743             : 
     744             : 
     745           0 : void SAL_CALL TreeControlPeer::setDefaultCollapsedGraphicURL( const OUString& sDefaultCollapsedGraphicURL ) throw (::com::sun::star::uno::RuntimeException, std::exception)
     746             : {
     747           0 :     SolarMutexGuard aGuard;
     748           0 :     if( msDefaultCollapsedGraphicURL != sDefaultCollapsedGraphicURL )
     749             :     {
     750           0 :         if( !sDefaultCollapsedGraphicURL.isEmpty() )
     751           0 :             loadImage( sDefaultCollapsedGraphicURL, maDefaultCollapsedImage );
     752             :         else
     753           0 :             maDefaultCollapsedImage = Image();
     754             : 
     755           0 :         UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     756             : 
     757           0 :         SvTreeListEntry* pEntry = rTree.First();
     758           0 :         while( pEntry )
     759             :         {
     760           0 :             ImplContextGraphicItem* pContextGraphicItem = dynamic_cast< ImplContextGraphicItem* >( pEntry->GetItem( 0 ) );
     761           0 :             if( pContextGraphicItem )
     762             :             {
     763           0 :                 if( pContextGraphicItem->msCollapsedGraphicURL.isEmpty() )
     764           0 :                     rTree.SetCollapsedEntryBmp( pEntry, maDefaultCollapsedImage );
     765             :             }
     766           0 :             pEntry = rTree.Next( pEntry );
     767             :         }
     768             : 
     769           0 :         msDefaultCollapsedGraphicURL = sDefaultCollapsedGraphicURL;
     770           0 :     }
     771           0 : }
     772             : 
     773             : 
     774             : 
     775           0 : sal_Bool SAL_CALL TreeControlPeer::isNodeExpanded( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException, std::exception)
     776             : {
     777           0 :     SolarMutexGuard aGuard;
     778             : 
     779           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     780           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     781           0 :     return ( pEntry && rTree.IsExpanded( pEntry ) ) ? sal_True : sal_False;
     782             : }
     783             : 
     784             : 
     785             : 
     786           0 : sal_Bool SAL_CALL TreeControlPeer::isNodeCollapsed( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException, std::exception)
     787             : {
     788           0 :     SolarMutexGuard aGuard;
     789           0 :     return !isNodeExpanded( xNode );
     790             : }
     791             : 
     792             : 
     793             : 
     794           0 : void SAL_CALL TreeControlPeer::makeNodeVisible( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException, std::exception)
     795             : {
     796           0 :     SolarMutexGuard aGuard;
     797             : 
     798           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     799           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     800           0 :     if( pEntry )
     801           0 :         rTree.MakeVisible( pEntry );
     802           0 : }
     803             : 
     804             : 
     805             : 
     806           0 : sal_Bool SAL_CALL TreeControlPeer::isNodeVisible( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException, std::exception)
     807             : {
     808           0 :     SolarMutexGuard aGuard;
     809             : 
     810           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     811           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     812           0 :     return ( pEntry && rTree.IsEntryVisible( pEntry ) ) ? sal_True : sal_False;
     813             : }
     814             : 
     815             : 
     816             : 
     817           0 : void SAL_CALL TreeControlPeer::expandNode( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException, std::exception)
     818             : {
     819           0 :     SolarMutexGuard aGuard;
     820             : 
     821           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     822           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     823           0 :     if( pEntry )
     824           0 :         rTree.Expand( pEntry );
     825           0 : }
     826             : 
     827             : 
     828             : 
     829           0 : void SAL_CALL TreeControlPeer::collapseNode( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException, std::exception)
     830             : {
     831           0 :     SolarMutexGuard aGuard;
     832             : 
     833           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     834           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     835           0 :     if( pEntry )
     836           0 :         rTree.Collapse( pEntry );
     837           0 : }
     838             : 
     839             : 
     840             : 
     841           0 : void SAL_CALL TreeControlPeer::addTreeExpansionListener( const Reference< XTreeExpansionListener >& xListener ) throw (RuntimeException, std::exception)
     842             : {
     843           0 :     maTreeExpansionListeners.addInterface( xListener );
     844           0 : }
     845             : 
     846             : 
     847             : 
     848           0 : void SAL_CALL TreeControlPeer::removeTreeExpansionListener( const Reference< XTreeExpansionListener >& xListener ) throw (RuntimeException, std::exception)
     849             : {
     850           0 :     maTreeExpansionListeners.removeInterface( xListener );
     851           0 : }
     852             : 
     853             : 
     854             : 
     855           0 : Reference< XTreeNode > SAL_CALL TreeControlPeer::getNodeForLocation( sal_Int32 x, sal_Int32 y ) throw (RuntimeException, std::exception)
     856             : {
     857           0 :     SolarMutexGuard aGuard;
     858             : 
     859           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     860             : 
     861           0 :     Reference< XTreeNode > xNode;
     862             : 
     863           0 :     const Point aPos( x, y );
     864           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.GetEntry( aPos, true ) );
     865           0 :     if( pEntry )
     866           0 :         xNode = pEntry->mxNode;
     867             : 
     868           0 :     return xNode;
     869             : }
     870             : 
     871             : 
     872             : 
     873           0 : Reference< XTreeNode > SAL_CALL TreeControlPeer::getClosestNodeForLocation( sal_Int32 x, sal_Int32 y ) throw (RuntimeException, std::exception)
     874             : {
     875           0 :     SolarMutexGuard aGuard;
     876             : 
     877           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     878             : 
     879           0 :     Reference< XTreeNode > xNode;
     880             : 
     881           0 :     const Point aPos( x, y );
     882           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.GetEntry( aPos, true ) );
     883           0 :     if( pEntry )
     884           0 :         xNode = pEntry->mxNode;
     885             : 
     886           0 :     return xNode;
     887             : }
     888             : 
     889             : 
     890             : 
     891           0 : awt::Rectangle SAL_CALL TreeControlPeer::getNodeRect( const Reference< XTreeNode >& i_Node ) throw (IllegalArgumentException, RuntimeException, std::exception)
     892             : {
     893           0 :     SolarMutexGuard aGuard;
     894             : 
     895           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     896           0 :     UnoTreeListEntry* pEntry = getEntry( i_Node, true );
     897             : 
     898           0 :     ::Rectangle aEntryRect( rTree.GetFocusRect( pEntry, rTree.GetEntryPosition( pEntry ).Y() ) );
     899           0 :     return VCLUnoHelper::ConvertToAWTRect( aEntryRect );
     900             : }
     901             : 
     902             : 
     903             : 
     904           0 : sal_Bool SAL_CALL TreeControlPeer::isEditing(  ) throw (RuntimeException, std::exception)
     905             : {
     906           0 :     SolarMutexGuard aGuard;
     907             : 
     908           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     909           0 :     return rTree.IsEditingActive() ? sal_True : sal_False;
     910             : }
     911             : 
     912             : 
     913             : 
     914           0 : sal_Bool SAL_CALL TreeControlPeer::stopEditing() throw (RuntimeException, std::exception)
     915             : {
     916           0 :     SolarMutexGuard aGuard;
     917             : 
     918           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     919           0 :     if( rTree.IsEditingActive() )
     920             :     {
     921           0 :         rTree.EndEditing(false);
     922           0 :         return sal_True;
     923             :     }
     924             :     else
     925             :     {
     926           0 :         return sal_False;
     927           0 :     }
     928             : }
     929             : 
     930             : 
     931             : 
     932           0 : void SAL_CALL TreeControlPeer::cancelEditing(  ) throw (RuntimeException, std::exception)
     933             : {
     934           0 :     SolarMutexGuard aGuard;
     935             : 
     936           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     937           0 :     rTree.EndEditing(false);
     938           0 : }
     939             : 
     940             : 
     941             : 
     942           0 : void SAL_CALL TreeControlPeer::startEditingAtNode( const Reference< XTreeNode >& xNode ) throw (IllegalArgumentException, RuntimeException, std::exception)
     943             : {
     944           0 :     SolarMutexGuard aGuard;
     945             : 
     946           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
     947           0 :     UnoTreeListEntry* pEntry = getEntry( xNode );
     948           0 :     rTree.EditEntry( pEntry );
     949           0 : }
     950             : 
     951           0 : void SAL_CALL TreeControlPeer::addTreeEditListener( const Reference< XTreeEditListener >& xListener ) throw (RuntimeException, std::exception)
     952             : {
     953           0 :     maTreeEditListeners.addInterface( xListener );
     954           0 : }
     955             : 
     956           0 : void SAL_CALL TreeControlPeer::removeTreeEditListener( const Reference< XTreeEditListener >& xListener ) throw (RuntimeException, std::exception)
     957             : {
     958           0 :     maTreeEditListeners.removeInterface( xListener );
     959           0 : }
     960             : 
     961           0 : bool TreeControlPeer::onEditingEntry( UnoTreeListEntry* pEntry )
     962             : {
     963           0 :     if( mpTreeImpl && pEntry && pEntry->mxNode.is() && (maTreeEditListeners.getLength() > 0)  )
     964             :     {
     965             :         try
     966             :         {
     967           0 :             maTreeEditListeners.nodeEditing( pEntry->mxNode );
     968             :         }
     969           0 :         catch( VetoException& )
     970             :         {
     971           0 :             return false;
     972             :         }
     973           0 :         catch( Exception& )
     974             :         {
     975             :         }
     976             :     }
     977           0 :     return true;
     978             : }
     979             : 
     980           0 : bool TreeControlPeer::onEditedEntry( UnoTreeListEntry* pEntry, const OUString& rNewText )
     981             : {
     982           0 :     if( mpTreeImpl && pEntry && pEntry->mxNode.is() ) try
     983             :     {
     984           0 :         LockGuard aLockGuard( mnEditLock );
     985           0 :         if( maTreeEditListeners.getLength() > 0 )
     986             :         {
     987           0 :             maTreeEditListeners.nodeEdited( pEntry->mxNode, rNewText );
     988           0 :             return false;
     989             :         }
     990             :         else
     991             :         {
     992           0 :             Reference< XMutableTreeNode > xMutableNode( pEntry->mxNode, UNO_QUERY );
     993           0 :             if( xMutableNode.is() )
     994           0 :                 xMutableNode->setDisplayValue( Any( rNewText ) );
     995             :             else
     996           0 :                 return false;
     997           0 :         }
     998             : 
     999             :     }
    1000           0 :     catch( Exception& )
    1001             :     {
    1002             :     }
    1003             : 
    1004           0 :     return true;
    1005             : }
    1006             : 
    1007             : 
    1008             : // ::com::sun::star::awt::tree::TreeDataModelListener
    1009             : 
    1010             : 
    1011           0 : void SAL_CALL TreeControlPeer::treeNodesChanged( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException, std::exception)
    1012             : {
    1013           0 :     SolarMutexGuard aGuard;
    1014             : 
    1015           0 :     if( mnEditLock != 0 )
    1016           0 :         return;
    1017             : 
    1018           0 :     updateTree( rEvent, true );
    1019             : }
    1020             : 
    1021           0 : void SAL_CALL TreeControlPeer::treeNodesInserted( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException, std::exception)
    1022             : {
    1023           0 :     SolarMutexGuard aGuard;
    1024             : 
    1025           0 :     if( mnEditLock != 0 )
    1026           0 :         return;
    1027             : 
    1028           0 :     updateTree( rEvent, true );
    1029             : }
    1030             : 
    1031           0 : void SAL_CALL TreeControlPeer::treeNodesRemoved( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException, std::exception)
    1032             : {
    1033           0 :     SolarMutexGuard aGuard;
    1034             : 
    1035           0 :     if( mnEditLock != 0 )
    1036           0 :         return;
    1037             : 
    1038           0 :     updateTree( rEvent, true );
    1039             : }
    1040             : 
    1041           0 : void SAL_CALL TreeControlPeer::treeStructureChanged( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException, std::exception)
    1042             : {
    1043           0 :     SolarMutexGuard aGuard;
    1044             : 
    1045           0 :     if( mnEditLock != 0 )
    1046           0 :         return;
    1047             : 
    1048           0 :     updateTree( rEvent, true );
    1049             : }
    1050             : 
    1051           0 : void TreeControlPeer::updateTree( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent, bool bRecursive )
    1052             : {
    1053           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
    1054             : 
    1055           0 :     Sequence< Reference< XTreeNode > > Nodes;
    1056           0 :     Reference< XTreeNode > xNode( rEvent.ParentNode );
    1057           0 :     if( !xNode.is() && Nodes.getLength() )
    1058             :     {
    1059           0 :         xNode = Nodes[0];
    1060             :     }
    1061             : 
    1062           0 :     if( xNode.is() )
    1063           0 :         updateNode( rTree, xNode, bRecursive );
    1064           0 : }
    1065             : 
    1066           0 : void TreeControlPeer::updateNode( UnoTreeListBoxImpl& rTree, const Reference< XTreeNode >& xNode, bool bRecursive )
    1067             : {
    1068           0 :     if( xNode.is() )
    1069             :     {
    1070           0 :         UnoTreeListEntry* pNodeEntry = getEntry( xNode, false );
    1071             : 
    1072           0 :         if( !pNodeEntry )
    1073             :         {
    1074           0 :             Reference< XTreeNode > xParentNode( xNode->getParent() );
    1075           0 :             UnoTreeListEntry* pParentEntry = 0;
    1076           0 :             sal_uLong nChild = TREELIST_APPEND;
    1077             : 
    1078           0 :             if( xParentNode.is() )
    1079             :             {
    1080           0 :                 pParentEntry = getEntry( xParentNode  );
    1081           0 :                 nChild = xParentNode->getIndex( xNode );
    1082             :             }
    1083             : 
    1084           0 :             pNodeEntry = createEntry( xNode, pParentEntry, nChild );
    1085             :         }
    1086             : 
    1087           0 :         if( bRecursive )
    1088           0 :             updateChildNodes( rTree, xNode, pNodeEntry );
    1089             :     }
    1090           0 : }
    1091             : 
    1092           0 : void TreeControlPeer::updateChildNodes( UnoTreeListBoxImpl& rTree, const Reference< XTreeNode >& xParentNode, UnoTreeListEntry* pParentEntry )
    1093             : {
    1094           0 :     if( xParentNode.is() && pParentEntry )
    1095             :     {
    1096           0 :         UnoTreeListEntry* pCurrentChild = dynamic_cast< UnoTreeListEntry* >( rTree.FirstChild( pParentEntry ) );
    1097             : 
    1098           0 :         const sal_Int32 nChildCount = xParentNode->getChildCount();
    1099           0 :         for( sal_Int32 nChild = 0; nChild < nChildCount; nChild++ )
    1100             :         {
    1101           0 :             Reference< XTreeNode > xNode( xParentNode->getChildAt( nChild ) );
    1102           0 :             if( !pCurrentChild || ( pCurrentChild->mxNode != xNode ) )
    1103             :             {
    1104           0 :                 UnoTreeListEntry* pNodeEntry = getEntry( xNode, false );
    1105           0 :                 if( pNodeEntry == 0 )
    1106             :                 {
    1107             :                     // child node is not yet part of the tree, add it
    1108           0 :                     pCurrentChild = createEntry( xNode, pParentEntry, nChild );
    1109             :                 }
    1110           0 :                 else if( pNodeEntry != pCurrentChild )
    1111             :                 {
    1112             :                     // node is already part of the tree, but not on the correct position
    1113           0 :                     rTree.GetModel()->Move( pNodeEntry, pParentEntry, nChild );
    1114           0 :                     pCurrentChild = pNodeEntry;
    1115           0 :                     updateEntry( pCurrentChild );
    1116             :                 }
    1117             :             }
    1118             :             else
    1119             :             {
    1120             :                 // child node has entry and entry is equal to current entry,
    1121             :                 // so no structural changes happened
    1122           0 :                 updateEntry( pCurrentChild );
    1123             :             }
    1124             : 
    1125           0 :             pCurrentChild = dynamic_cast< UnoTreeListEntry* >( SvTreeListBox::NextSibling( pCurrentChild ) );
    1126           0 :         }
    1127             : 
    1128             :         // check if we have entries without nodes left, we need to remove them
    1129           0 :         while( pCurrentChild )
    1130             :         {
    1131           0 :             UnoTreeListEntry* pNextChild = dynamic_cast< UnoTreeListEntry* >( SvTreeListBox::NextSibling( pCurrentChild ) );
    1132           0 :             rTree.GetModel()->Remove( pCurrentChild );
    1133           0 :             pCurrentChild = pNextChild;
    1134             :         }
    1135             :     }
    1136           0 : }
    1137             : 
    1138           0 : OUString TreeControlPeer::getEntryString( const Any& rValue )
    1139             : {
    1140           0 :     OUString sValue;
    1141           0 :     if( rValue.hasValue() )
    1142             :     {
    1143           0 :         switch( rValue.getValueTypeClass() )
    1144             :         {
    1145             :         case TypeClass_SHORT:
    1146             :         case TypeClass_LONG:
    1147             :             {
    1148           0 :                 sal_Int32 nValue = 0;
    1149           0 :                 if( rValue >>= nValue )
    1150           0 :                     sValue = OUString::number( nValue );
    1151           0 :                 break;
    1152             :             }
    1153             :         case TypeClass_BYTE:
    1154             :         case TypeClass_UNSIGNED_SHORT:
    1155             :         case TypeClass_UNSIGNED_LONG:
    1156             :             {
    1157           0 :                 sal_uInt32 nValue = 0;
    1158           0 :                 if( rValue >>= nValue )
    1159           0 :                     sValue = OUString::number( nValue );
    1160           0 :                 break;
    1161             :             }
    1162             :         case TypeClass_HYPER:
    1163             :             {
    1164           0 :                 sal_Int64 nValue = 0;
    1165           0 :                 if( rValue >>= nValue )
    1166           0 :                     sValue = OUString::number( nValue );
    1167           0 :                 break;
    1168             :             }
    1169             :         case TypeClass_UNSIGNED_HYPER:
    1170             :             {
    1171           0 :                 sal_uInt64 nValue = 0;
    1172           0 :                 if( rValue >>= nValue )
    1173           0 :                     sValue = OUString::number( nValue );
    1174           0 :                 break;
    1175             :             }
    1176             :         case TypeClass_FLOAT:
    1177             :         case TypeClass_DOUBLE:
    1178             :             {
    1179           0 :                 double fValue = 0.0;
    1180           0 :                 if( rValue >>= fValue )
    1181           0 :                     sValue = OUString::number( fValue );
    1182           0 :                 break;
    1183             :             }
    1184             :         case TypeClass_STRING:
    1185           0 :             rValue >>= sValue;
    1186           0 :             break;
    1187             :     /*
    1188             :         case TypeClass_INTERFACE:
    1189             :             // @todo
    1190             :             break;
    1191             :         case TypeClass_SEQUENCE:
    1192             :             {
    1193             :                 Sequence< Any > aValues;
    1194             :                 if( aValue >>= aValues )
    1195             :                 {
    1196             :                     updateEntry( SvTreeListEntry& rEntry, aValues );
    1197             :                     return;
    1198             :                 }
    1199             :             }
    1200             :             break;
    1201             :     */
    1202             :         default:
    1203           0 :             break;
    1204             :         }
    1205             :     }
    1206           0 :     return sValue;
    1207             : }
    1208             : 
    1209             : // XEventListener
    1210           0 : void SAL_CALL TreeControlPeer::disposing( const ::com::sun::star::lang::EventObject& ) throw(::com::sun::star::uno::RuntimeException, std::exception)
    1211             : {
    1212             :     // model is disposed, so we clear our tree
    1213           0 :     SolarMutexGuard aGuard;
    1214           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
    1215           0 :     rTree.Clear();
    1216           0 :     mxDataModel.clear();
    1217           0 : }
    1218             : 
    1219           0 : void TreeControlPeer::onChangeDataModel( UnoTreeListBoxImpl& rTree, const Reference< XTreeDataModel >& xDataModel )
    1220             : {
    1221           0 :     if( xDataModel.is() && (mxDataModel == xDataModel) )
    1222           0 :         return; // do nothing
    1223             : 
    1224           0 :     Reference< XTreeDataModelListener > xListener( this );
    1225             : 
    1226           0 :     if( mxDataModel.is() )
    1227           0 :         mxDataModel->removeTreeDataModelListener( xListener );
    1228             : 
    1229           0 :     mxDataModel = xDataModel;
    1230             : 
    1231           0 :     fillTree( rTree, mxDataModel );
    1232             : 
    1233           0 :     if( mxDataModel.is() )
    1234           0 :         mxDataModel->addTreeDataModelListener( xListener );
    1235             : }
    1236             : 
    1237             : 
    1238             : // ::com::sun::star::awt::XLayoutConstrains
    1239             : 
    1240             : 
    1241           0 : ::com::sun::star::awt::Size TreeControlPeer::getMinimumSize() throw(RuntimeException, std::exception)
    1242             : {
    1243           0 :     SolarMutexGuard aGuard;
    1244             : 
    1245           0 :     ::com::sun::star::awt::Size aSz;
    1246             : /* todo
    1247             :     MultiLineEdit* pEdit = (MultiLineEdit*) GetWindow();
    1248             :     if ( pEdit )
    1249             :         aSz = AWTSize(pEdit->CalcMinimumSize());
    1250             : */
    1251           0 :     return aSz;
    1252             : }
    1253             : 
    1254           0 : ::com::sun::star::awt::Size TreeControlPeer::getPreferredSize() throw(RuntimeException, std::exception)
    1255             : {
    1256           0 :     return getMinimumSize();
    1257             : }
    1258             : 
    1259           0 : ::com::sun::star::awt::Size TreeControlPeer::calcAdjustedSize( const ::com::sun::star::awt::Size& rNewSize ) throw(RuntimeException, std::exception)
    1260             : {
    1261           0 :     SolarMutexGuard aGuard;
    1262             : 
    1263           0 :     ::com::sun::star::awt::Size aSz = rNewSize;
    1264             : /* todo
    1265             :     MultiLineEdit* pEdit = (MultiLineEdit*) GetWindow();
    1266             :     if ( pEdit )
    1267             :         aSz = AWTSize(pEdit->CalcAdjustedSize( VCLSize(rNewSize )));
    1268             : */
    1269           0 :     return aSz;
    1270             : }
    1271             : 
    1272             : 
    1273             : // ::com::sun::star::awt::XVclWindowPeer
    1274             : 
    1275             : 
    1276           0 : void TreeControlPeer::setProperty( const OUString& PropertyName, const Any& aValue) throw(RuntimeException, std::exception)
    1277             : {
    1278           0 :     SolarMutexGuard aGuard;
    1279             : 
    1280           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
    1281             : 
    1282           0 :     switch( GetPropertyId( PropertyName ) )
    1283             :     {
    1284             :         case BASEPROPERTY_HIDEINACTIVESELECTION:
    1285             :         {
    1286           0 :             bool bEnabled = false;
    1287           0 :             if ( aValue >>= bEnabled )
    1288             :             {
    1289           0 :                 WinBits nStyle = rTree.GetStyle();
    1290           0 :                 if ( bEnabled )
    1291           0 :                     nStyle |= WB_HIDESELECTION;
    1292             :                 else
    1293           0 :                     nStyle &= ~WB_HIDESELECTION;
    1294           0 :                 rTree.SetStyle( nStyle );
    1295             :             }
    1296             :         }
    1297           0 :         break;
    1298             : 
    1299             :         case BASEPROPERTY_TREE_SELECTIONTYPE:
    1300             :         {
    1301             :             SelectionType eSelectionType;
    1302           0 :             if( aValue >>= eSelectionType )
    1303             :             {
    1304             :                 SelectionMode eSelMode;
    1305           0 :                 switch( eSelectionType )
    1306             :                 {
    1307           0 :                 case SelectionType_SINGLE:  eSelMode = SINGLE_SELECTION; break;
    1308           0 :                 case SelectionType_RANGE:   eSelMode = RANGE_SELECTION; break;
    1309           0 :                 case SelectionType_MULTI:   eSelMode = MULTIPLE_SELECTION; break;
    1310             :     //          case SelectionType_NONE:
    1311           0 :                 default:                    eSelMode = NO_SELECTION; break;
    1312             :                 }
    1313           0 :                 if( rTree.GetSelectionMode() != eSelMode )
    1314           0 :                     rTree.SetSelectionMode( eSelMode );
    1315             :             }
    1316           0 :             break;
    1317             :         }
    1318             : 
    1319             :         case BASEPROPERTY_TREE_DATAMODEL:
    1320           0 :             onChangeDataModel( rTree, Reference< XTreeDataModel >( aValue, UNO_QUERY ) );
    1321           0 :             break;
    1322             :         case BASEPROPERTY_ROW_HEIGHT:
    1323             :         {
    1324           0 :             sal_Int32 nHeight = 0;
    1325           0 :             if( aValue >>= nHeight )
    1326           0 :                 rTree.SetEntryHeight( (short)nHeight );
    1327           0 :             break;
    1328             :         }
    1329             :         case BASEPROPERTY_TREE_EDITABLE:
    1330             :         {
    1331           0 :             bool bEnabled = false;
    1332           0 :             if( aValue >>= bEnabled )
    1333           0 :                 rTree.EnableInplaceEditing( bEnabled );
    1334           0 :             break;
    1335             :         }
    1336             :         case BASEPROPERTY_TREE_INVOKESSTOPNODEEDITING:
    1337           0 :             break; // @todo
    1338             :         case BASEPROPERTY_TREE_ROOTDISPLAYED:
    1339             :         {
    1340           0 :             bool bDisplayed = false;
    1341           0 :             if( (aValue >>= bDisplayed) && ( bDisplayed != mbIsRootDisplayed) )
    1342             :             {
    1343           0 :                 onChangeRootDisplayed(bDisplayed);
    1344             :             }
    1345           0 :             break;
    1346             :         }
    1347             :         case BASEPROPERTY_TREE_SHOWSHANDLES:
    1348             :         {
    1349           0 :             bool bEnabled = false;
    1350           0 :             if( aValue >>= bEnabled )
    1351             :             {
    1352           0 :                 WinBits nBits = rTree.GetStyle() & (~WB_HASLINES);
    1353           0 :                 if( bEnabled )
    1354           0 :                     nBits |= WB_HASLINES;
    1355           0 :                 if( nBits != rTree.GetStyle() )
    1356           0 :                     rTree.SetStyle( nBits );
    1357             :             }
    1358           0 :             break;
    1359             :         }
    1360             :         case BASEPROPERTY_TREE_SHOWSROOTHANDLES:
    1361             :         {
    1362           0 :             bool bEnabled = false;
    1363           0 :             if( aValue >>= bEnabled )
    1364             :             {
    1365           0 :                 WinBits nBits = rTree.GetStyle() & (~WB_HASLINESATROOT);
    1366           0 :                 if( bEnabled )
    1367           0 :                     nBits |= WB_HASLINESATROOT;
    1368           0 :                 if( nBits != rTree.GetStyle() )
    1369           0 :                     rTree.SetStyle( nBits );
    1370             :             }
    1371           0 :             break;
    1372             :         }
    1373             :         default:
    1374           0 :         VCLXWindow::setProperty( PropertyName, aValue );
    1375           0 :         break;
    1376           0 :     }
    1377           0 : }
    1378             : 
    1379           0 : Any TreeControlPeer::getProperty( const OUString& PropertyName ) throw(RuntimeException, std::exception)
    1380             : {
    1381           0 :     SolarMutexGuard aGuard;
    1382             : 
    1383           0 :     const sal_uInt16 nPropId = GetPropertyId( PropertyName );
    1384           0 :     if( (nPropId >= BASEPROPERTY_TREE_START) && (nPropId <= BASEPROPERTY_TREE_END) )
    1385             :     {
    1386           0 :         UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
    1387           0 :         switch(nPropId)
    1388             :         {
    1389             :         case BASEPROPERTY_TREE_SELECTIONTYPE:
    1390             :         {
    1391             :             SelectionType eSelectionType;
    1392             : 
    1393           0 :             SelectionMode eSelMode = rTree.GetSelectionMode();
    1394           0 :             switch( eSelMode )
    1395             :             {
    1396           0 :             case SINGLE_SELECTION:  eSelectionType = SelectionType_SINGLE; break;
    1397           0 :             case RANGE_SELECTION:   eSelectionType = SelectionType_RANGE; break;
    1398           0 :             case MULTIPLE_SELECTION:eSelectionType = SelectionType_MULTI; break;
    1399             : //          case NO_SELECTION:
    1400           0 :             default:                eSelectionType = SelectionType_NONE; break;
    1401             :             }
    1402           0 :             return Any( eSelectionType );
    1403             :         }
    1404             :         case BASEPROPERTY_ROW_HEIGHT:
    1405           0 :             return Any( (sal_Int32)rTree.GetEntryHeight() );
    1406             :         case BASEPROPERTY_TREE_DATAMODEL:
    1407           0 :             return Any( mxDataModel );
    1408             :         case BASEPROPERTY_TREE_EDITABLE:
    1409           0 :             return Any( rTree.IsInplaceEditingEnabled() ? sal_True : sal_False );
    1410             :         case BASEPROPERTY_TREE_INVOKESSTOPNODEEDITING:
    1411           0 :             return Any( sal_True ); // @todo
    1412             :         case BASEPROPERTY_TREE_ROOTDISPLAYED:
    1413           0 :             return Any( mbIsRootDisplayed );
    1414             :         case BASEPROPERTY_TREE_SHOWSHANDLES:
    1415           0 :             return Any( (rTree.GetStyle() & WB_HASLINES) != 0 ? sal_True : sal_False );
    1416             :         case BASEPROPERTY_TREE_SHOWSROOTHANDLES:
    1417           0 :             return Any( (rTree.GetStyle() & WB_HASLINESATROOT) != 0 ? sal_True : sal_False );
    1418             :         }
    1419             :     }
    1420           0 :     return VCLXWindow::getProperty( PropertyName );
    1421             : }
    1422             : 
    1423           0 : void TreeControlPeer::onChangeRootDisplayed( bool bIsRootDisplayed )
    1424             : {
    1425           0 :     if( mbIsRootDisplayed == bIsRootDisplayed )
    1426           0 :         return;
    1427             : 
    1428           0 :     mbIsRootDisplayed = bIsRootDisplayed;
    1429             : 
    1430           0 :     UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
    1431             : 
    1432           0 :     if( rTree.GetEntryCount() == 0 )
    1433           0 :         return;
    1434             : 
    1435             :     // todo
    1436           0 :     fillTree( rTree, mxDataModel );
    1437           0 :     if( mbIsRootDisplayed )
    1438             :     {
    1439             :     }
    1440             :     else
    1441             :     {
    1442             :     }
    1443             : }
    1444             : 
    1445           0 : bool TreeControlPeer::loadImage( const OUString& rURL, Image& rImage )
    1446             : {
    1447           0 :     if( !mxGraphicProvider.is() )
    1448             :     {
    1449           0 :         mxGraphicProvider = graphic::GraphicProvider::create(
    1450           0 :             comphelper::getProcessComponentContext());
    1451             :     }
    1452             : 
    1453             :     try
    1454             :     {
    1455           0 :         ::com::sun::star::beans::PropertyValues aProps( 1 );
    1456           0 :         aProps[0].Name = "URL";
    1457           0 :         aProps[0].Value <<= rURL;
    1458             : 
    1459           0 :         Reference< XGraphic > xGraphic( mxGraphicProvider->queryGraphic( aProps ) );
    1460             : 
    1461           0 :         Graphic aGraphic( xGraphic );
    1462           0 :         rImage = Image(aGraphic.GetBitmapEx());
    1463           0 :         return true;
    1464             :     }
    1465           0 :     catch( Exception& )
    1466             :     {
    1467             :     }
    1468             : 
    1469           0 :     return false;
    1470             : }
    1471             : 
    1472             : 
    1473             : // class UnoTreeListBoxImpl
    1474             : 
    1475             : 
    1476           0 : UnoTreeListBoxImpl::UnoTreeListBoxImpl( TreeControlPeer* pPeer, vcl::Window* pParent, WinBits nWinStyle )
    1477             : : SvTreeListBox( pParent, nWinStyle )
    1478           0 : , mxPeer( pPeer )
    1479             : {
    1480           0 :     SetStyle( WB_BORDER | WB_HASLINES |WB_HASBUTTONS | WB_HASLINESATROOT | WB_HASBUTTONSATROOT | WB_HSCROLL );
    1481           0 :     SetNodeDefaultImages();
    1482           0 :     SetSelectHdl( LINK(this, UnoTreeListBoxImpl, OnSelectionChangeHdl) );
    1483           0 :     SetDeselectHdl( LINK(this, UnoTreeListBoxImpl, OnSelectionChangeHdl) );
    1484             : 
    1485           0 :     SetExpandingHdl( LINK(this, UnoTreeListBoxImpl, OnExpandingHdl) );
    1486           0 :     SetExpandedHdl( LINK(this, UnoTreeListBoxImpl, OnExpandedHdl) );
    1487             : 
    1488           0 : }
    1489             : 
    1490             : 
    1491             : 
    1492           0 : UnoTreeListBoxImpl::~UnoTreeListBoxImpl()
    1493             : {
    1494           0 :     disposeOnce();
    1495           0 : }
    1496             : 
    1497           0 : void UnoTreeListBoxImpl::dispose()
    1498             : {
    1499           0 :     if( mxPeer.is() )
    1500           0 :         mxPeer->disposeControl();
    1501           0 :     SvTreeListBox::dispose();
    1502           0 : }
    1503             : 
    1504             : 
    1505             : 
    1506           0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnSelectionChangeHdl)
    1507             : {
    1508           0 :     if( mxPeer.is() )
    1509           0 :         mxPeer->onSelectionChanged();
    1510           0 :     return 0;
    1511             : }
    1512             : 
    1513             : 
    1514             : 
    1515           0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnExpandingHdl)
    1516             : {
    1517           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( GetHdlEntry() );
    1518             : 
    1519           0 :     if( pEntry && mxPeer.is() )
    1520             :     {
    1521           0 :         return mxPeer->onExpanding( pEntry->mxNode, !IsExpanded( pEntry ) ) ? 1 : 0;
    1522             :     }
    1523           0 :     return 0;
    1524             : }
    1525             : 
    1526             : 
    1527             : 
    1528           0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnExpandedHdl)
    1529             : {
    1530           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( GetHdlEntry() );
    1531           0 :     if( pEntry && mxPeer.is() )
    1532             :     {
    1533           0 :         mxPeer->onExpanded( pEntry->mxNode, IsExpanded( pEntry ) );
    1534             :     }
    1535           0 :     return 0;
    1536             : }
    1537             : 
    1538             : 
    1539             : 
    1540           0 : sal_uInt32 UnoTreeListBoxImpl::insert( SvTreeListEntry* pEntry,SvTreeListEntry* pParent,sal_uLong nPos )
    1541             : {
    1542           0 :     if( pParent )
    1543           0 :         return SvTreeListBox::Insert( pEntry, pParent, nPos );
    1544             :     else
    1545           0 :         return SvTreeListBox::Insert( pEntry, nPos );
    1546             : }
    1547             : 
    1548             : 
    1549             : 
    1550           0 : void UnoTreeListBoxImpl::RequestingChildren( SvTreeListEntry* pParent )
    1551             : {
    1552           0 :     UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( pParent );
    1553           0 :     if( pEntry && pEntry->mxNode.is() && mxPeer.is() )
    1554           0 :         mxPeer->onRequestChildNodes( pEntry->mxNode );
    1555           0 : }
    1556             : 
    1557             : 
    1558             : 
    1559           0 : bool UnoTreeListBoxImpl::EditingEntry( SvTreeListEntry* pEntry, Selection& )
    1560             : {
    1561           0 :     return mxPeer.is() && mxPeer->onEditingEntry( dynamic_cast< UnoTreeListEntry* >( pEntry ) );
    1562             : }
    1563             : 
    1564             : 
    1565             : 
    1566           0 : bool UnoTreeListBoxImpl::EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewText )
    1567             : {
    1568           0 :     return mxPeer.is() && mxPeer->onEditedEntry( dynamic_cast< UnoTreeListEntry* >( pEntry ), rNewText );
    1569             : }
    1570             : 
    1571             : 
    1572             : // class UnoTreeListItem
    1573             : 
    1574             : 
    1575           0 : UnoTreeListItem::UnoTreeListItem( SvTreeListEntry* pEntry )
    1576           0 : : SvLBoxString(pEntry, 0, OUString())
    1577             : {
    1578           0 : }
    1579             : 
    1580             : 
    1581             : 
    1582           0 : UnoTreeListItem::UnoTreeListItem()
    1583           0 : : SvLBoxString()
    1584             : {
    1585           0 : }
    1586             : 
    1587             : 
    1588             : 
    1589           0 : UnoTreeListItem::~UnoTreeListItem()
    1590             : {
    1591           0 : }
    1592             : 
    1593             : 
    1594             : 
    1595           0 : void UnoTreeListItem::Paint(
    1596             :     const Point& rPos, SvTreeListBox& rDev, vcl::RenderContext& rRenderContext, const SvViewDataEntry* /*pView*/, const SvTreeListEntry& rEntry)
    1597             : {
    1598           0 :     Point aPos(rPos);
    1599           0 :     Size aSize(GetSize(&rDev, &rEntry));
    1600           0 :     if (!!maImage)
    1601             :     {
    1602           0 :         rRenderContext.DrawImage(aPos, maImage, rDev.IsEnabled() ? DrawImageFlags::NONE : DrawImageFlags::Disable);
    1603           0 :         int nWidth = maImage.GetSizePixel().Width() + 6;
    1604           0 :         aPos.X() += nWidth;
    1605           0 :         aSize.Width() -= nWidth;
    1606             :     }
    1607           0 :     rRenderContext.DrawText(Rectangle(aPos,aSize),maText, rDev.IsEnabled() ? DrawTextFlags::NONE : DrawTextFlags::Disable);
    1608           0 : }
    1609             : 
    1610             : 
    1611             : 
    1612           0 : SvLBoxItem* UnoTreeListItem::Create() const
    1613             : {
    1614           0 :     return new UnoTreeListItem;
    1615             : }
    1616             : 
    1617             : 
    1618             : 
    1619           0 : void UnoTreeListItem::Clone( SvLBoxItem* pSource )
    1620             : {
    1621           0 :     UnoTreeListItem* pSourceItem = dynamic_cast< UnoTreeListItem* >( pSource );
    1622           0 :     if( pSourceItem )
    1623             :     {
    1624           0 :         maText = pSourceItem->maText;
    1625           0 :         maImage = pSourceItem->maImage;
    1626             :     }
    1627           0 : }
    1628             : 
    1629             : 
    1630             : 
    1631           0 : void UnoTreeListItem::SetImage( const Image& rImage )
    1632             : {
    1633           0 :     maImage = rImage;
    1634           0 : }
    1635             : 
    1636             : 
    1637             : 
    1638             : 
    1639             : 
    1640             : 
    1641           0 : void UnoTreeListItem::SetGraphicURL( const OUString& rGraphicURL )
    1642             : {
    1643           0 :     maGraphicURL = rGraphicURL;
    1644           0 : }
    1645             : 
    1646             : 
    1647             : 
    1648           0 : void UnoTreeListItem::InitViewData( SvTreeListBox* pView,SvTreeListEntry* pEntry, SvViewDataItem* pViewData)
    1649             : {
    1650           0 :     if( !pViewData )
    1651           0 :         pViewData = pView->GetViewDataItem( pEntry, this );
    1652             : 
    1653           0 :     pViewData->maSize = maImage.GetSizePixel();
    1654             : 
    1655           0 :     const Size aTextSize(pView->GetTextWidth( maText ), pView->GetTextHeight());
    1656           0 :     if( pViewData->maSize.Width() )
    1657             :     {
    1658           0 :         pViewData->maSize.Width() += 6 + aTextSize.Width();
    1659           0 :         if( pViewData->maSize.Height() < aTextSize.Height() )
    1660           0 :             pViewData->maSize.Height() = aTextSize.Height();
    1661             :     }
    1662             :     else
    1663             :     {
    1664           0 :         pViewData->maSize = aTextSize;
    1665             :     }
    1666           0 : }
    1667             : 
    1668             : 
    1669             : 
    1670           0 : UnoTreeListEntry::UnoTreeListEntry( const Reference< XTreeNode >& xNode, TreeControlPeer* pPeer )
    1671             : : SvTreeListEntry()
    1672             : , mxNode( xNode )
    1673           0 : , mpPeer( pPeer )
    1674             : {
    1675           0 :     if( mpPeer )
    1676           0 :         mpPeer->addEntry( this );
    1677           0 : }
    1678             : 
    1679             : 
    1680             : 
    1681           0 : UnoTreeListEntry::~UnoTreeListEntry()
    1682             : {
    1683           0 :     if( mpPeer )
    1684           0 :         mpPeer->removeEntry( this );
    1685         798 : }
    1686             : 
    1687             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11