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 ::rtl::OUString;
43 : using namespace ::com::sun::star;
44 : using namespace ::com::sun::star::uno;
45 : using namespace ::com::sun::star::lang;
46 : using namespace ::com::sun::star::awt::tree;
47 : using namespace ::com::sun::star::beans;
48 : using namespace ::com::sun::star::view;
49 : using namespace ::com::sun::star::container;
50 : using namespace ::com::sun::star::util;
51 : using namespace ::com::sun::star::graphic;
52 :
53 : struct LockGuard
54 : {
55 : public:
56 0 : LockGuard( sal_Int32& rLock )
57 0 : : mrLock( rLock )
58 : {
59 0 : rLock++;
60 0 : }
61 :
62 0 : ~LockGuard()
63 : {
64 0 : mrLock--;
65 0 : }
66 :
67 : sal_Int32& mrLock;
68 : };
69 :
70 :
71 : // --------------------------------------------------------------------
72 :
73 0 : class ImplContextGraphicItem : public SvLBoxContextBmp
74 : {
75 : public:
76 0 : ImplContextGraphicItem( SvTreeListEntry* pEntry,sal_uInt16 nFlags,Image& rI1,Image& rI2, bool bExpanded)
77 0 : : SvLBoxContextBmp(pEntry, nFlags, rI1, rI2, bExpanded) {}
78 :
79 : OUString msExpandedGraphicURL;
80 : OUString msCollapsedGraphicURL;
81 : };
82 :
83 : // --------------------------------------------------------------------
84 :
85 : class UnoTreeListBoxImpl : public SvTreeListBox
86 : {
87 : public:
88 : UnoTreeListBoxImpl( TreeControlPeer* pPeer, Window* pParent, WinBits nWinStyle );
89 : ~UnoTreeListBoxImpl();
90 :
91 : sal_uInt32 insert( SvTreeListEntry* pEntry,SvTreeListEntry* pParent,sal_uLong nPos=LIST_APPEND );
92 :
93 : virtual void RequestingChildren( SvTreeListEntry* pParent );
94 :
95 : virtual sal_Bool EditingEntry( SvTreeListEntry* pEntry, Selection& );
96 : virtual sal_Bool EditedEntry( SvTreeListEntry* pEntry, const rtl::OUString& rNewText );
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 : UnoTreeListItem( SvTreeListEntry* );
112 : UnoTreeListItem();
113 : virtual ~UnoTreeListItem();
114 : void InitViewData( SvTreeListBox*,SvTreeListEntry*,SvViewDataItem* );
115 : Image GetImage() const;
116 : void SetImage( const Image& rImage );
117 : OUString GetGraphicURL() const;
118 : void SetGraphicURL( const OUString& rGraphicURL );
119 : virtual void Paint(
120 : const Point& rPos, SvTreeListBox& rOutDev, const SvViewDataEntry* pView, const SvTreeListEntry* pEntry);
121 : SvLBoxItem* Create() const;
122 : void Clone( SvLBoxItem* pSource );
123 :
124 : private:
125 : OUString maGraphicURL;
126 : Image maImage;
127 : };
128 :
129 : // --------------------------------------------------------------------
130 :
131 : class UnoTreeListEntry : public SvTreeListEntry
132 : {
133 : public:
134 : UnoTreeListEntry( const Reference< XTreeNode >& xNode, TreeControlPeer* pPeer );
135 : virtual ~UnoTreeListEntry();
136 :
137 : Reference< XTreeNode > mxNode;
138 : TreeControlPeer* mpPeer;
139 : };
140 :
141 0 : TreeControlPeer::TreeControlPeer()
142 : : maSelectionListeners( *this )
143 : , maTreeExpansionListeners( *this )
144 : , maTreeEditListeners( *this )
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 : Window* TreeControlPeer::createVclControl( Window* pParent, sal_Int64 nWinStyle )
209 : {
210 0 : mpTreeImpl = new UnoTreeListBoxImpl( 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( 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 /* = LIST_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( (pEntry->mxNode->hasChildrenOnDemand() == sal_True) != (pEntry->HasChildrenOnDemand() == sal_True) )
301 : {
302 0 : pEntry->EnableChildrenOnDemand( pEntry->mxNode->hasChildrenOnDemand() ? sal_True : sal_False );
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, LIST_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 0 : Sequence< XTreeNode > aTempSeq;
466 :
467 0 : const Reference< XTreeNode > *pNodes = 0;
468 0 : sal_Int32 nCount = 0;
469 :
470 0 : if( rSelection.hasValue() )
471 : {
472 0 : switch( rSelection.getValueTypeClass() )
473 : {
474 : case TypeClass_INTERFACE:
475 : {
476 0 : rSelection >>= xTempNode;
477 0 : if( xTempNode.is() )
478 : {
479 0 : nCount = 1;
480 0 : pNodes = &xTempNode;
481 : }
482 0 : break;
483 : }
484 : case TypeClass_SEQUENCE:
485 : {
486 0 : if( rSelection.getValueType() == ::getCppuType( (const Sequence< Reference< XTreeNode > > *) 0 ) )
487 : {
488 0 : const Sequence< Reference< XTreeNode > >& rSeq( *(const Sequence< Reference< XTreeNode > > *)rSelection.getValue() );
489 0 : nCount = rSeq.getLength();
490 0 : if( nCount )
491 0 : pNodes = rSeq.getConstArray();
492 : }
493 0 : break;
494 : }
495 : default:
496 0 : break;
497 : }
498 :
499 0 : if( nCount == 0 )
500 0 : throw IllegalArgumentException();
501 : }
502 :
503 0 : if( bSetSelection )
504 0 : rTree.SelectAll( sal_False );
505 :
506 0 : if( pNodes && nCount )
507 : {
508 0 : while( nCount-- )
509 : {
510 0 : UnoTreeListEntry* pEntry = getEntry( *pNodes++ );
511 0 : rTree.Select( pEntry, bSelect ? sal_True : sal_False );
512 : }
513 0 : }
514 0 : }
515 :
516 : // -------------------------------------------------------------------
517 : // ::com::sun::star::view::XSelectionSupplier
518 : // -------------------------------------------------------------------
519 :
520 0 : sal_Bool SAL_CALL TreeControlPeer::select( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException)
521 : {
522 0 : SolarMutexGuard aGuard;
523 0 : ChangeNodesSelection( rSelection, true, true );
524 0 : return sal_True;
525 : }
526 :
527 : // -------------------------------------------------------------------
528 :
529 0 : Any SAL_CALL TreeControlPeer::getSelection() throw (RuntimeException)
530 : {
531 0 : SolarMutexGuard aGuard;
532 :
533 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
534 :
535 0 : Any aRet;
536 :
537 0 : sal_uLong nSelectionCount = rTree.GetSelectionCount();
538 0 : if( nSelectionCount == 1 )
539 : {
540 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
541 0 : if( pEntry && pEntry->mxNode.is() )
542 0 : aRet <<= pEntry->mxNode;
543 : }
544 0 : else if( nSelectionCount > 1 )
545 : {
546 0 : Sequence< Reference< XTreeNode > > aSelection( nSelectionCount );
547 0 : Reference< XTreeNode >* pNodes = aSelection.getArray();
548 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
549 0 : while( pEntry && nSelectionCount )
550 : {
551 0 : *pNodes++ = pEntry->mxNode;
552 0 : pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
553 0 : --nSelectionCount;
554 : }
555 :
556 : OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
557 0 : aRet <<= aSelection;
558 : }
559 :
560 0 : return aRet;
561 : }
562 :
563 : // -------------------------------------------------------------------
564 :
565 0 : void SAL_CALL TreeControlPeer::addSelectionChangeListener( const Reference< XSelectionChangeListener >& xListener ) throw (RuntimeException)
566 : {
567 0 : maSelectionListeners.addInterface( xListener );
568 0 : }
569 :
570 : // -------------------------------------------------------------------
571 :
572 0 : void SAL_CALL TreeControlPeer::removeSelectionChangeListener( const Reference< XSelectionChangeListener >& xListener ) throw (RuntimeException)
573 : {
574 0 : maSelectionListeners.addInterface( xListener );
575 0 : }
576 :
577 : // -------------------------------------------------------------------
578 : // ::com::sun::star::view::XMultiSelectionSupplier
579 : // -------------------------------------------------------------------
580 :
581 0 : sal_Bool SAL_CALL TreeControlPeer::addSelection( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException)
582 : {
583 0 : ChangeNodesSelection( rSelection, true, false );
584 0 : return sal_True;
585 : }
586 :
587 : // -------------------------------------------------------------------
588 :
589 0 : void SAL_CALL TreeControlPeer::removeSelection( const Any& rSelection ) throw (IllegalArgumentException, RuntimeException)
590 : {
591 0 : ChangeNodesSelection( rSelection, false, false );
592 0 : }
593 :
594 : // -------------------------------------------------------------------
595 :
596 0 : void SAL_CALL TreeControlPeer::clearSelection() throw (RuntimeException)
597 : {
598 0 : SolarMutexGuard aGuard;
599 0 : getTreeListBoxOrThrow().SelectAll( sal_False );
600 0 : }
601 :
602 : // -------------------------------------------------------------------
603 :
604 0 : sal_Int32 SAL_CALL TreeControlPeer::getSelectionCount() throw (RuntimeException)
605 : {
606 0 : SolarMutexGuard aGuard;
607 0 : return getTreeListBoxOrThrow().GetSelectionCount();
608 : }
609 :
610 : // -------------------------------------------------------------------
611 :
612 0 : class TreeSelectionEnumeration : public ::cppu::WeakImplHelper1< XEnumeration >
613 : {
614 : public:
615 : TreeSelectionEnumeration( std::list< Any >& rSelection );
616 : virtual ::sal_Bool SAL_CALL hasMoreElements() throw (RuntimeException);
617 : virtual Any SAL_CALL nextElement() throw (NoSuchElementException, WrappedTargetException, RuntimeException);
618 :
619 : std::list< Any > maSelection;
620 : std::list< Any >::iterator maIter;
621 : };
622 :
623 : // -------------------------------------------------------------------
624 :
625 0 : TreeSelectionEnumeration::TreeSelectionEnumeration( std::list< Any >& rSelection )
626 : {
627 0 : maSelection.swap( rSelection );
628 0 : maIter = maSelection.begin();
629 0 : }
630 :
631 : // -------------------------------------------------------------------
632 :
633 0 : ::sal_Bool SAL_CALL TreeSelectionEnumeration::hasMoreElements() throw (RuntimeException)
634 : {
635 0 : return maIter != maSelection.end();
636 : }
637 :
638 : // -------------------------------------------------------------------
639 :
640 0 : Any SAL_CALL TreeSelectionEnumeration::nextElement() throw (NoSuchElementException, WrappedTargetException, RuntimeException)
641 : {
642 0 : if( maIter == maSelection.end() )
643 0 : throw NoSuchElementException();
644 :
645 0 : return (*maIter++);
646 : }
647 :
648 : // -------------------------------------------------------------------
649 :
650 0 : Reference< XEnumeration > SAL_CALL TreeControlPeer::createSelectionEnumeration() throw (RuntimeException)
651 : {
652 0 : SolarMutexGuard aGuard;
653 :
654 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
655 :
656 0 : sal_uInt32 nSelectionCount = rTree.GetSelectionCount();
657 0 : std::list< Any > aSelection( nSelectionCount );
658 :
659 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
660 0 : while( pEntry && nSelectionCount )
661 : {
662 0 : aSelection.push_back( Any( pEntry->mxNode ) );
663 0 : pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
664 0 : --nSelectionCount;
665 : }
666 :
667 : OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
668 :
669 0 : return Reference< XEnumeration >( new TreeSelectionEnumeration( aSelection ) );
670 : }
671 :
672 : // -------------------------------------------------------------------
673 :
674 0 : Reference< XEnumeration > SAL_CALL TreeControlPeer::createReverseSelectionEnumeration() throw (RuntimeException)
675 : {
676 0 : SolarMutexGuard aGuard;
677 :
678 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
679 :
680 0 : sal_uInt32 nSelectionCount = rTree.GetSelectionCount();
681 0 : std::list< Any > aSelection;
682 :
683 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.FirstSelected() );
684 0 : while( pEntry && nSelectionCount )
685 : {
686 0 : aSelection.push_front( Any( pEntry->mxNode ) );
687 0 : pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.NextSelected( pEntry ) );
688 0 : --nSelectionCount;
689 : }
690 :
691 : OSL_ASSERT( (pEntry == 0) && (nSelectionCount == 0) );
692 :
693 0 : return Reference< XEnumeration >( new TreeSelectionEnumeration( aSelection ) );
694 : }
695 :
696 : // --------------------------------------------------------------------
697 : // ::com::sun::star::awt::XTreeControl
698 : // --------------------------------------------------------------------
699 :
700 0 : OUString SAL_CALL TreeControlPeer::getDefaultExpandedGraphicURL() throw (::com::sun::star::uno::RuntimeException)
701 : {
702 0 : SolarMutexGuard aGuard;
703 0 : return msDefaultExpandedGraphicURL;
704 : }
705 :
706 : // --------------------------------------------------------------------
707 :
708 0 : void SAL_CALL TreeControlPeer::setDefaultExpandedGraphicURL( const ::rtl::OUString& sDefaultExpandedGraphicURL ) throw (::com::sun::star::uno::RuntimeException)
709 : {
710 0 : SolarMutexGuard aGuard;
711 0 : if( msDefaultExpandedGraphicURL != sDefaultExpandedGraphicURL )
712 : {
713 0 : if( !sDefaultExpandedGraphicURL.isEmpty() )
714 0 : loadImage( sDefaultExpandedGraphicURL, maDefaultExpandedImage );
715 : else
716 0 : maDefaultExpandedImage = Image();
717 :
718 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
719 :
720 0 : SvTreeListEntry* pEntry = rTree.First();
721 0 : while( pEntry )
722 : {
723 0 : ImplContextGraphicItem* pContextGraphicItem = dynamic_cast< ImplContextGraphicItem* >( pEntry->GetItem( 0 ) );
724 0 : if( pContextGraphicItem )
725 : {
726 0 : if( pContextGraphicItem->msExpandedGraphicURL.isEmpty() )
727 0 : rTree.SetExpandedEntryBmp( pEntry, maDefaultExpandedImage );
728 : }
729 0 : pEntry = rTree.Next( pEntry );
730 : }
731 :
732 0 : msDefaultExpandedGraphicURL = sDefaultExpandedGraphicURL;
733 0 : }
734 0 : }
735 :
736 : // --------------------------------------------------------------------
737 :
738 0 : OUString SAL_CALL TreeControlPeer::getDefaultCollapsedGraphicURL() throw (::com::sun::star::uno::RuntimeException)
739 : {
740 0 : SolarMutexGuard aGuard;
741 0 : return msDefaultCollapsedGraphicURL;
742 : }
743 :
744 : // --------------------------------------------------------------------
745 :
746 0 : void SAL_CALL TreeControlPeer::setDefaultCollapsedGraphicURL( const ::rtl::OUString& sDefaultCollapsedGraphicURL ) throw (::com::sun::star::uno::RuntimeException)
747 : {
748 0 : SolarMutexGuard aGuard;
749 0 : if( msDefaultCollapsedGraphicURL != sDefaultCollapsedGraphicURL )
750 : {
751 0 : if( !sDefaultCollapsedGraphicURL.isEmpty() )
752 0 : loadImage( sDefaultCollapsedGraphicURL, maDefaultCollapsedImage );
753 : else
754 0 : maDefaultCollapsedImage = Image();
755 :
756 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
757 :
758 0 : SvTreeListEntry* pEntry = rTree.First();
759 0 : while( pEntry )
760 : {
761 0 : ImplContextGraphicItem* pContextGraphicItem = dynamic_cast< ImplContextGraphicItem* >( pEntry->GetItem( 0 ) );
762 0 : if( pContextGraphicItem )
763 : {
764 0 : if( pContextGraphicItem->msCollapsedGraphicURL.isEmpty() )
765 0 : rTree.SetCollapsedEntryBmp( pEntry, maDefaultCollapsedImage );
766 : }
767 0 : pEntry = rTree.Next( pEntry );
768 : }
769 :
770 0 : msDefaultCollapsedGraphicURL = sDefaultCollapsedGraphicURL;
771 0 : }
772 0 : }
773 :
774 : // --------------------------------------------------------------------
775 :
776 0 : sal_Bool SAL_CALL TreeControlPeer::isNodeExpanded( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException)
777 : {
778 0 : SolarMutexGuard aGuard;
779 :
780 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
781 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
782 0 : return ( pEntry && rTree.IsExpanded( pEntry ) ) ? sal_True : sal_False;
783 : }
784 :
785 : // -------------------------------------------------------------------
786 :
787 0 : sal_Bool SAL_CALL TreeControlPeer::isNodeCollapsed( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException)
788 : {
789 0 : SolarMutexGuard aGuard;
790 0 : return !isNodeExpanded( xNode );
791 : }
792 :
793 : // -------------------------------------------------------------------
794 :
795 0 : void SAL_CALL TreeControlPeer::makeNodeVisible( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException)
796 : {
797 0 : SolarMutexGuard aGuard;
798 :
799 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
800 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
801 0 : if( pEntry )
802 0 : rTree.MakeVisible( pEntry );
803 0 : }
804 :
805 : // -------------------------------------------------------------------
806 :
807 0 : sal_Bool SAL_CALL TreeControlPeer::isNodeVisible( const Reference< XTreeNode >& xNode ) throw (RuntimeException, IllegalArgumentException)
808 : {
809 0 : SolarMutexGuard aGuard;
810 :
811 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
812 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
813 0 : return ( pEntry && rTree.IsEntryVisible( pEntry ) ) ? sal_True : sal_False;
814 : }
815 :
816 : // -------------------------------------------------------------------
817 :
818 0 : void SAL_CALL TreeControlPeer::expandNode( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException)
819 : {
820 0 : SolarMutexGuard aGuard;
821 :
822 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
823 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
824 0 : if( pEntry )
825 0 : rTree.Expand( pEntry );
826 0 : }
827 :
828 : // -------------------------------------------------------------------
829 :
830 0 : void SAL_CALL TreeControlPeer::collapseNode( const Reference< XTreeNode >& xNode ) throw (RuntimeException, ExpandVetoException, IllegalArgumentException)
831 : {
832 0 : SolarMutexGuard aGuard;
833 :
834 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
835 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
836 0 : if( pEntry )
837 0 : rTree.Collapse( pEntry );
838 0 : }
839 :
840 : // -------------------------------------------------------------------
841 :
842 0 : void SAL_CALL TreeControlPeer::addTreeExpansionListener( const Reference< XTreeExpansionListener >& xListener ) throw (RuntimeException)
843 : {
844 0 : maTreeExpansionListeners.addInterface( xListener );
845 0 : }
846 :
847 : // -------------------------------------------------------------------
848 :
849 0 : void SAL_CALL TreeControlPeer::removeTreeExpansionListener( const Reference< XTreeExpansionListener >& xListener ) throw (RuntimeException)
850 : {
851 0 : maTreeExpansionListeners.removeInterface( xListener );
852 0 : }
853 :
854 : // -------------------------------------------------------------------
855 :
856 0 : Reference< XTreeNode > SAL_CALL TreeControlPeer::getNodeForLocation( sal_Int32 x, sal_Int32 y ) throw (RuntimeException)
857 : {
858 0 : SolarMutexGuard aGuard;
859 :
860 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
861 :
862 0 : Reference< XTreeNode > xNode;
863 :
864 0 : const Point aPos( x, y );
865 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.GetEntry( aPos, sal_True ) );
866 0 : if( pEntry )
867 0 : xNode = pEntry->mxNode;
868 :
869 0 : return xNode;
870 : }
871 :
872 : // -------------------------------------------------------------------
873 :
874 0 : Reference< XTreeNode > SAL_CALL TreeControlPeer::getClosestNodeForLocation( sal_Int32 x, sal_Int32 y ) throw (RuntimeException)
875 : {
876 0 : SolarMutexGuard aGuard;
877 :
878 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
879 :
880 0 : Reference< XTreeNode > xNode;
881 :
882 0 : const Point aPos( x, y );
883 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( rTree.GetEntry( aPos, sal_True ) );
884 0 : if( pEntry )
885 0 : xNode = pEntry->mxNode;
886 :
887 0 : return xNode;
888 : }
889 :
890 : // -------------------------------------------------------------------
891 :
892 0 : awt::Rectangle SAL_CALL TreeControlPeer::getNodeRect( const Reference< XTreeNode >& i_Node ) throw (IllegalArgumentException, RuntimeException)
893 : {
894 0 : SolarMutexGuard aGuard;
895 :
896 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
897 0 : UnoTreeListEntry* pEntry = getEntry( i_Node, true );
898 :
899 0 : ::Rectangle aEntryRect( rTree.GetFocusRect( pEntry, rTree.GetEntryPosition( pEntry ).Y() ) );
900 0 : return VCLUnoHelper::ConvertToAWTRect( aEntryRect );
901 : }
902 :
903 : // -------------------------------------------------------------------
904 :
905 0 : sal_Bool SAL_CALL TreeControlPeer::isEditing( ) throw (RuntimeException)
906 : {
907 0 : SolarMutexGuard aGuard;
908 :
909 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
910 0 : return rTree.IsEditingActive() ? sal_True : sal_False;
911 : }
912 :
913 : // -------------------------------------------------------------------
914 :
915 0 : sal_Bool SAL_CALL TreeControlPeer::stopEditing() throw (RuntimeException)
916 : {
917 0 : SolarMutexGuard aGuard;
918 :
919 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
920 0 : if( rTree.IsEditingActive() )
921 : {
922 0 : rTree.EndEditing(sal_False);
923 0 : return sal_True;
924 : }
925 : else
926 : {
927 0 : return sal_False;
928 0 : }
929 : }
930 :
931 : // -------------------------------------------------------------------
932 :
933 0 : void SAL_CALL TreeControlPeer::cancelEditing( ) throw (RuntimeException)
934 : {
935 0 : SolarMutexGuard aGuard;
936 :
937 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
938 0 : rTree.EndEditing(sal_False);
939 0 : }
940 :
941 : // -------------------------------------------------------------------
942 :
943 0 : void SAL_CALL TreeControlPeer::startEditingAtNode( const Reference< XTreeNode >& xNode ) throw (IllegalArgumentException, RuntimeException)
944 : {
945 0 : SolarMutexGuard aGuard;
946 :
947 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
948 0 : UnoTreeListEntry* pEntry = getEntry( xNode );
949 0 : rTree.EditEntry( pEntry );
950 0 : }
951 :
952 0 : void SAL_CALL TreeControlPeer::addTreeEditListener( const Reference< XTreeEditListener >& xListener ) throw (RuntimeException)
953 : {
954 0 : maTreeEditListeners.addInterface( xListener );
955 0 : }
956 :
957 0 : void SAL_CALL TreeControlPeer::removeTreeEditListener( const Reference< XTreeEditListener >& xListener ) throw (RuntimeException)
958 : {
959 0 : maTreeEditListeners.removeInterface( xListener );
960 0 : }
961 :
962 0 : bool TreeControlPeer::onEditingEntry( UnoTreeListEntry* pEntry )
963 : {
964 0 : if( mpTreeImpl && pEntry && pEntry->mxNode.is() && (maTreeEditListeners.getLength() > 0) )
965 : {
966 : try
967 : {
968 0 : maTreeEditListeners.nodeEditing( pEntry->mxNode );
969 : }
970 0 : catch( VetoException& )
971 : {
972 0 : return false;
973 : }
974 0 : catch( Exception& )
975 : {
976 : }
977 : }
978 0 : return true;
979 : }
980 :
981 0 : bool TreeControlPeer::onEditedEntry( UnoTreeListEntry* pEntry, const rtl::OUString& rNewText )
982 : {
983 0 : if( mpTreeImpl && pEntry && pEntry->mxNode.is() ) try
984 : {
985 0 : LockGuard aLockGuard( mnEditLock );
986 0 : if( maTreeEditListeners.getLength() > 0 )
987 : {
988 0 : maTreeEditListeners.nodeEdited( pEntry->mxNode, rNewText );
989 0 : return false;
990 : }
991 : else
992 : {
993 0 : Reference< XMutableTreeNode > xMutableNode( pEntry->mxNode, UNO_QUERY );
994 0 : if( xMutableNode.is() )
995 0 : xMutableNode->setDisplayValue( Any( rNewText ) );
996 : else
997 0 : return false;
998 0 : }
999 :
1000 : }
1001 0 : catch( Exception& )
1002 : {
1003 : }
1004 :
1005 0 : return true;
1006 : }
1007 :
1008 : // --------------------------------------------------------------------
1009 : // ::com::sun::star::awt::tree::TreeDataModelListener
1010 : // --------------------------------------------------------------------
1011 :
1012 0 : void SAL_CALL TreeControlPeer::treeNodesChanged( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException)
1013 : {
1014 0 : SolarMutexGuard aGuard;
1015 :
1016 0 : if( mnEditLock != 0 )
1017 0 : return;
1018 :
1019 0 : updateTree( rEvent, true );
1020 : }
1021 :
1022 0 : void SAL_CALL TreeControlPeer::treeNodesInserted( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException)
1023 : {
1024 0 : SolarMutexGuard aGuard;
1025 :
1026 0 : if( mnEditLock != 0 )
1027 0 : return;
1028 :
1029 0 : updateTree( rEvent, true );
1030 : }
1031 :
1032 0 : void SAL_CALL TreeControlPeer::treeNodesRemoved( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException)
1033 : {
1034 0 : SolarMutexGuard aGuard;
1035 :
1036 0 : if( mnEditLock != 0 )
1037 0 : return;
1038 :
1039 0 : updateTree( rEvent, true );
1040 : }
1041 :
1042 0 : void SAL_CALL TreeControlPeer::treeStructureChanged( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent ) throw (RuntimeException)
1043 : {
1044 0 : SolarMutexGuard aGuard;
1045 :
1046 0 : if( mnEditLock != 0 )
1047 0 : return;
1048 :
1049 0 : updateTree( rEvent, true );
1050 : }
1051 :
1052 0 : void TreeControlPeer::updateTree( const ::com::sun::star::awt::tree::TreeDataModelEvent& rEvent, bool bRecursive )
1053 : {
1054 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
1055 :
1056 0 : Sequence< Reference< XTreeNode > > Nodes;
1057 0 : Reference< XTreeNode > xNode( rEvent.ParentNode );
1058 0 : if( !xNode.is() && Nodes.getLength() )
1059 : {
1060 0 : xNode = Nodes[0];
1061 : }
1062 :
1063 0 : if( xNode.is() )
1064 0 : updateNode( rTree, xNode, bRecursive );
1065 0 : }
1066 :
1067 0 : void TreeControlPeer::updateNode( UnoTreeListBoxImpl& rTree, const Reference< XTreeNode >& xNode, bool bRecursive )
1068 : {
1069 0 : if( xNode.is() )
1070 : {
1071 0 : UnoTreeListEntry* pNodeEntry = getEntry( xNode, false );
1072 :
1073 0 : if( !pNodeEntry )
1074 : {
1075 0 : Reference< XTreeNode > xParentNode( xNode->getParent() );
1076 0 : UnoTreeListEntry* pParentEntry = 0;
1077 0 : sal_uLong nChild = LIST_APPEND;
1078 :
1079 0 : if( xParentNode.is() )
1080 : {
1081 0 : pParentEntry = getEntry( xParentNode );
1082 0 : nChild = xParentNode->getIndex( xNode );
1083 : }
1084 :
1085 0 : pNodeEntry = createEntry( xNode, pParentEntry, nChild );
1086 : }
1087 :
1088 0 : if( bRecursive )
1089 0 : updateChildNodes( rTree, xNode, pNodeEntry );
1090 : }
1091 0 : }
1092 :
1093 0 : void TreeControlPeer::updateChildNodes( UnoTreeListBoxImpl& rTree, const Reference< XTreeNode >& xParentNode, UnoTreeListEntry* pParentEntry )
1094 : {
1095 0 : if( xParentNode.is() && pParentEntry )
1096 : {
1097 0 : UnoTreeListEntry* pCurrentChild = dynamic_cast< UnoTreeListEntry* >( rTree.FirstChild( pParentEntry ) );
1098 :
1099 0 : const sal_Int32 nChildCount = xParentNode->getChildCount();
1100 0 : for( sal_Int32 nChild = 0; nChild < nChildCount; nChild++ )
1101 : {
1102 0 : Reference< XTreeNode > xNode( xParentNode->getChildAt( nChild ) );
1103 0 : if( !pCurrentChild || ( pCurrentChild->mxNode != xNode ) )
1104 : {
1105 0 : UnoTreeListEntry* pNodeEntry = getEntry( xNode, false );
1106 0 : if( pNodeEntry == 0 )
1107 : {
1108 : // child node is not yet part of the tree, add it
1109 0 : pCurrentChild = createEntry( xNode, pParentEntry, nChild );
1110 : }
1111 0 : else if( pNodeEntry != pCurrentChild )
1112 : {
1113 : // node is already part of the tree, but not on the correct position
1114 0 : rTree.GetModel()->Move( pNodeEntry, pParentEntry, nChild );
1115 0 : pCurrentChild = pNodeEntry;
1116 0 : updateEntry( pCurrentChild );
1117 : }
1118 : }
1119 : else
1120 : {
1121 : // child node has entry and entry is equal to current entry,
1122 : // so no structural changes happened
1123 0 : updateEntry( pCurrentChild );
1124 : }
1125 :
1126 0 : pCurrentChild = dynamic_cast< UnoTreeListEntry* >( rTree.NextSibling( pCurrentChild ) );
1127 0 : }
1128 :
1129 : // check if we have entries without nodes left, we need to remove them
1130 0 : while( pCurrentChild )
1131 : {
1132 0 : UnoTreeListEntry* pNextChild = dynamic_cast< UnoTreeListEntry* >( rTree.NextSibling( pCurrentChild ) );
1133 0 : rTree.GetModel()->Remove( pCurrentChild );
1134 0 : pCurrentChild = pNextChild;
1135 : }
1136 : }
1137 0 : }
1138 :
1139 0 : OUString TreeControlPeer::getEntryString( const Any& rValue )
1140 : {
1141 0 : OUString sValue;
1142 0 : if( rValue.hasValue() )
1143 : {
1144 0 : switch( rValue.getValueTypeClass() )
1145 : {
1146 : case TypeClass_SHORT:
1147 : case TypeClass_LONG:
1148 : {
1149 0 : sal_Int32 nValue = 0;
1150 0 : if( rValue >>= nValue )
1151 0 : sValue = OUString::valueOf( nValue );
1152 : break;
1153 : }
1154 : case TypeClass_BYTE:
1155 : case TypeClass_UNSIGNED_SHORT:
1156 : case TypeClass_UNSIGNED_LONG:
1157 : {
1158 0 : sal_uInt32 nValue = 0;
1159 0 : if( rValue >>= nValue )
1160 0 : sValue = OUString::valueOf( (sal_Int64)nValue );
1161 : break;
1162 : }
1163 : case TypeClass_HYPER:
1164 : {
1165 0 : sal_Int64 nValue = 0;
1166 0 : if( rValue >>= nValue )
1167 0 : sValue = OUString::valueOf( nValue );
1168 : break;
1169 : }
1170 : case TypeClass_UNSIGNED_HYPER:
1171 : {
1172 0 : sal_uInt64 nValue = 0;
1173 0 : if( rValue >>= nValue )
1174 0 : sValue = OUString::valueOf( (sal_Int64)nValue );
1175 : break;
1176 : }
1177 : case TypeClass_FLOAT:
1178 : case TypeClass_DOUBLE:
1179 : {
1180 0 : double fValue = 0.0;
1181 0 : if( rValue >>= fValue )
1182 0 : sValue = OUString::valueOf( fValue );
1183 : break;
1184 : }
1185 : case TypeClass_STRING:
1186 0 : rValue >>= sValue;
1187 0 : break;
1188 : /*
1189 : case TypeClass_INTERFACE:
1190 : // @todo
1191 : break;
1192 : case TypeClass_SEQUENCE:
1193 : {
1194 : Sequence< Any > aValues;
1195 : if( aValue >>= aValues )
1196 : {
1197 : updateEntry( SvTreeListEntry& rEntry, aValues );
1198 : return;
1199 : }
1200 : }
1201 : break;
1202 : */
1203 : default:
1204 0 : break;
1205 : }
1206 : }
1207 0 : return sValue;
1208 : }
1209 :
1210 : // XEventListener
1211 0 : void SAL_CALL TreeControlPeer::disposing( const ::com::sun::star::lang::EventObject& ) throw(::com::sun::star::uno::RuntimeException)
1212 : {
1213 : // model is disposed, so we clear our tree
1214 0 : SolarMutexGuard aGuard;
1215 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
1216 0 : rTree.Clear();
1217 0 : mxDataModel.clear();
1218 0 : }
1219 :
1220 0 : void TreeControlPeer::onChangeDataModel( UnoTreeListBoxImpl& rTree, const Reference< XTreeDataModel >& xDataModel )
1221 : {
1222 0 : if( xDataModel.is() && (mxDataModel == xDataModel) )
1223 0 : return; // do nothing
1224 :
1225 0 : Reference< XTreeDataModelListener > xListener( this );
1226 :
1227 0 : if( mxDataModel.is() )
1228 0 : mxDataModel->removeTreeDataModelListener( xListener );
1229 :
1230 0 : if( !xDataModel.is() )
1231 : {
1232 0 : static const OUString aSN( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.tree.DefaultTreeDataModel" ) );
1233 0 : Reference< XMultiServiceFactory > xORB( ::comphelper::getProcessServiceFactory() );
1234 0 : if( xORB.is() )
1235 : {
1236 0 : mxDataModel.query( xORB->createInstance( aSN ) );
1237 0 : }
1238 : }
1239 :
1240 0 : mxDataModel = xDataModel;
1241 :
1242 0 : fillTree( rTree, mxDataModel );
1243 :
1244 0 : if( mxDataModel.is() )
1245 0 : mxDataModel->addTreeDataModelListener( xListener );
1246 : }
1247 :
1248 : // --------------------------------------------------------------------
1249 : // ::com::sun::star::awt::XLayoutConstrains
1250 : // --------------------------------------------------------------------
1251 :
1252 0 : ::com::sun::star::awt::Size TreeControlPeer::getMinimumSize() throw(RuntimeException)
1253 : {
1254 0 : SolarMutexGuard aGuard;
1255 :
1256 0 : ::com::sun::star::awt::Size aSz;
1257 : /* todo
1258 : MultiLineEdit* pEdit = (MultiLineEdit*) GetWindow();
1259 : if ( pEdit )
1260 : aSz = AWTSize(pEdit->CalcMinimumSize());
1261 : */
1262 0 : return aSz;
1263 : }
1264 :
1265 0 : ::com::sun::star::awt::Size TreeControlPeer::getPreferredSize() throw(RuntimeException)
1266 : {
1267 0 : return getMinimumSize();
1268 : }
1269 :
1270 0 : ::com::sun::star::awt::Size TreeControlPeer::calcAdjustedSize( const ::com::sun::star::awt::Size& rNewSize ) throw(RuntimeException)
1271 : {
1272 0 : SolarMutexGuard aGuard;
1273 :
1274 0 : ::com::sun::star::awt::Size aSz = rNewSize;
1275 : /* todo
1276 : MultiLineEdit* pEdit = (MultiLineEdit*) GetWindow();
1277 : if ( pEdit )
1278 : aSz = AWTSize(pEdit->CalcAdjustedSize( VCLSize(rNewSize )));
1279 : */
1280 0 : return aSz;
1281 : }
1282 :
1283 : // --------------------------------------------------------------------
1284 : // ::com::sun::star::awt::XVclWindowPeer
1285 : // --------------------------------------------------------------------
1286 :
1287 0 : void TreeControlPeer::setProperty( const ::rtl::OUString& PropertyName, const Any& aValue) throw(RuntimeException)
1288 : {
1289 0 : SolarMutexGuard aGuard;
1290 :
1291 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
1292 :
1293 0 : switch( GetPropertyId( PropertyName ) )
1294 : {
1295 : case BASEPROPERTY_HIDEINACTIVESELECTION:
1296 : {
1297 0 : sal_Bool bEnabled = sal_False;
1298 0 : if ( aValue >>= bEnabled )
1299 : {
1300 0 : WinBits nStyle = rTree.GetStyle();
1301 0 : if ( bEnabled )
1302 0 : nStyle |= WB_HIDESELECTION;
1303 : else
1304 0 : nStyle &= ~WB_HIDESELECTION;
1305 0 : rTree.SetStyle( nStyle );
1306 : }
1307 : }
1308 0 : break;
1309 :
1310 : case BASEPROPERTY_TREE_SELECTIONTYPE:
1311 : {
1312 : SelectionType eSelectionType;
1313 0 : if( aValue >>= eSelectionType )
1314 : {
1315 : SelectionMode eSelMode;
1316 0 : switch( eSelectionType )
1317 : {
1318 0 : case SelectionType_SINGLE: eSelMode = SINGLE_SELECTION; break;
1319 0 : case SelectionType_RANGE: eSelMode = RANGE_SELECTION; break;
1320 0 : case SelectionType_MULTI: eSelMode = MULTIPLE_SELECTION; break;
1321 : // case SelectionType_NONE:
1322 0 : default: eSelMode = NO_SELECTION; break;
1323 : }
1324 0 : if( rTree.GetSelectionMode() != eSelMode )
1325 0 : rTree.SetSelectionMode( eSelMode );
1326 : }
1327 : break;
1328 : }
1329 :
1330 : case BASEPROPERTY_TREE_DATAMODEL:
1331 0 : onChangeDataModel( rTree, Reference< XTreeDataModel >( aValue, UNO_QUERY ) );
1332 0 : break;
1333 : case BASEPROPERTY_ROW_HEIGHT:
1334 : {
1335 0 : sal_Int32 nHeight = 0;
1336 0 : if( aValue >>= nHeight )
1337 0 : rTree.SetEntryHeight( (short)nHeight );
1338 : break;
1339 : }
1340 : case BASEPROPERTY_TREE_EDITABLE:
1341 : {
1342 0 : sal_Bool bEnabled = false;
1343 0 : if( aValue >>= bEnabled )
1344 0 : rTree.EnableInplaceEditing( bEnabled ? sal_True : sal_False );
1345 : break;
1346 : }
1347 : case BASEPROPERTY_TREE_INVOKESSTOPNODEEDITING:
1348 0 : break; // @todo
1349 : case BASEPROPERTY_TREE_ROOTDISPLAYED:
1350 : {
1351 0 : sal_Bool bDisplayed = false;
1352 0 : if( (aValue >>= bDisplayed) && ( bDisplayed != mbIsRootDisplayed) )
1353 : {
1354 0 : onChangeRootDisplayed(bDisplayed);
1355 : }
1356 : break;
1357 : }
1358 : case BASEPROPERTY_TREE_SHOWSHANDLES:
1359 : {
1360 0 : sal_Bool bEnabled = false;
1361 0 : if( aValue >>= bEnabled )
1362 : {
1363 0 : WinBits nBits = rTree.GetStyle() & (~WB_HASLINES);
1364 0 : if( bEnabled )
1365 0 : nBits |= WB_HASLINES;
1366 0 : if( nBits != rTree.GetStyle() )
1367 0 : rTree.SetStyle( nBits );
1368 : }
1369 : break;
1370 : }
1371 : case BASEPROPERTY_TREE_SHOWSROOTHANDLES:
1372 : {
1373 0 : sal_Bool bEnabled = false;
1374 0 : if( aValue >>= bEnabled )
1375 : {
1376 0 : WinBits nBits = rTree.GetStyle() & (~WB_HASLINESATROOT);
1377 0 : if( bEnabled )
1378 0 : nBits |= WB_HASLINESATROOT;
1379 0 : if( nBits != rTree.GetStyle() )
1380 0 : rTree.SetStyle( nBits );
1381 : }
1382 : break;
1383 : }
1384 : default:
1385 0 : VCLXWindow::setProperty( PropertyName, aValue );
1386 0 : break;
1387 0 : }
1388 0 : }
1389 :
1390 0 : Any TreeControlPeer::getProperty( const ::rtl::OUString& PropertyName ) throw(RuntimeException)
1391 : {
1392 0 : SolarMutexGuard aGuard;
1393 :
1394 0 : const sal_uInt16 nPropId = GetPropertyId( PropertyName );
1395 0 : if( (nPropId >= BASEPROPERTY_TREE_START) && (nPropId <= BASEPROPERTY_TREE_END) )
1396 : {
1397 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
1398 0 : switch(nPropId)
1399 : {
1400 : case BASEPROPERTY_HIDEINACTIVESELECTION:
1401 0 : return Any( ( rTree.GetStyle() & WB_HIDESELECTION ) != 0 ? sal_True : sal_False );
1402 :
1403 : case BASEPROPERTY_TREE_SELECTIONTYPE:
1404 : {
1405 : SelectionType eSelectionType;
1406 :
1407 0 : SelectionMode eSelMode = rTree.GetSelectionMode();
1408 0 : switch( eSelMode )
1409 : {
1410 0 : case SINGLE_SELECTION: eSelectionType = SelectionType_SINGLE; break;
1411 0 : case RANGE_SELECTION: eSelectionType = SelectionType_RANGE; break;
1412 0 : case MULTIPLE_SELECTION:eSelectionType = SelectionType_MULTI; break;
1413 : // case NO_SELECTION:
1414 0 : default: eSelectionType = SelectionType_NONE; break;
1415 : }
1416 0 : return Any( eSelectionType );
1417 : }
1418 : case BASEPROPERTY_ROW_HEIGHT:
1419 0 : return Any( (sal_Int32)rTree.GetEntryHeight() );
1420 : case BASEPROPERTY_TREE_DATAMODEL:
1421 0 : return Any( mxDataModel );
1422 : case BASEPROPERTY_TREE_EDITABLE:
1423 0 : return Any( rTree.IsInplaceEditingEnabled() ? sal_True : sal_False );
1424 : case BASEPROPERTY_TREE_INVOKESSTOPNODEEDITING:
1425 0 : return Any( sal_True ); // @todo
1426 : case BASEPROPERTY_TREE_ROOTDISPLAYED:
1427 0 : return Any( mbIsRootDisplayed );
1428 : case BASEPROPERTY_TREE_SHOWSHANDLES:
1429 0 : return Any( (rTree.GetStyle() & WB_HASLINES) != 0 ? sal_True : sal_False );
1430 : case BASEPROPERTY_TREE_SHOWSROOTHANDLES:
1431 0 : return Any( (rTree.GetStyle() & WB_HASLINESATROOT) != 0 ? sal_True : sal_False );
1432 : }
1433 : }
1434 0 : return VCLXWindow::getProperty( PropertyName );
1435 : }
1436 :
1437 0 : void TreeControlPeer::onChangeRootDisplayed( sal_Bool bIsRootDisplayed )
1438 : {
1439 0 : if( mbIsRootDisplayed == bIsRootDisplayed )
1440 0 : return;
1441 :
1442 0 : mbIsRootDisplayed = bIsRootDisplayed;
1443 :
1444 0 : UnoTreeListBoxImpl& rTree = getTreeListBoxOrThrow();
1445 :
1446 0 : if( rTree.GetEntryCount() == 0 )
1447 0 : return;
1448 :
1449 : // todo
1450 0 : fillTree( rTree, mxDataModel );
1451 0 : if( mbIsRootDisplayed )
1452 : {
1453 : }
1454 : else
1455 : {
1456 : }
1457 : }
1458 :
1459 0 : bool TreeControlPeer::loadImage( const ::rtl::OUString& rURL, Image& rImage )
1460 : {
1461 0 : if( !mxGraphicProvider.is() )
1462 : {
1463 0 : Reference< XComponentContext > xContext( ::comphelper::getProcessComponentContext() );
1464 0 : Reference< XInterface > x( graphic::GraphicProvider::create(xContext) );
1465 0 : mxGraphicProvider.query( x );
1466 0 : mxGraphicProvider = Reference< XGraphicProvider >( x, UNO_QUERY );
1467 : }
1468 :
1469 0 : if( mxGraphicProvider.is() ) try
1470 : {
1471 0 : ::com::sun::star::beans::PropertyValues aProps( 1 );
1472 0 : aProps[0].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( "URL" ) );
1473 0 : aProps[0].Value <<= rURL;
1474 :
1475 0 : Reference< XGraphic > xGraphic( mxGraphicProvider->queryGraphic( aProps ) );
1476 :
1477 0 : Graphic aGraphic( xGraphic );
1478 0 : rImage = aGraphic.GetBitmapEx();
1479 0 : return true;
1480 : }
1481 0 : catch( Exception& )
1482 : {
1483 : }
1484 :
1485 0 : return false;
1486 : }
1487 :
1488 : // ====================================================================
1489 : // class UnoTreeListBoxImpl
1490 : // ====================================================================
1491 :
1492 0 : UnoTreeListBoxImpl::UnoTreeListBoxImpl( TreeControlPeer* pPeer, Window* pParent, WinBits nWinStyle )
1493 : : SvTreeListBox( pParent, nWinStyle )
1494 0 : , mxPeer( pPeer )
1495 : {
1496 0 : SetStyle( WB_BORDER | WB_HASLINES |WB_HASBUTTONS | WB_HASLINESATROOT | WB_HASBUTTONSATROOT | WB_HSCROLL );
1497 0 : SetNodeDefaultImages();
1498 0 : SetSelectHdl( LINK(this, UnoTreeListBoxImpl, OnSelectionChangeHdl) );
1499 0 : SetDeselectHdl( LINK(this, UnoTreeListBoxImpl, OnSelectionChangeHdl) );
1500 :
1501 0 : SetExpandingHdl( LINK(this, UnoTreeListBoxImpl, OnExpandingHdl) );
1502 0 : SetExpandedHdl( LINK(this, UnoTreeListBoxImpl, OnExpandedHdl) );
1503 :
1504 0 : }
1505 :
1506 : // --------------------------------------------------------------------
1507 :
1508 0 : UnoTreeListBoxImpl::~UnoTreeListBoxImpl()
1509 : {
1510 0 : if( mxPeer.is() )
1511 0 : mxPeer->disposeControl();
1512 0 : }
1513 :
1514 : // --------------------------------------------------------------------
1515 :
1516 0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnSelectionChangeHdl)
1517 : {
1518 0 : if( mxPeer.is() )
1519 0 : mxPeer->onSelectionChanged();
1520 0 : return 0;
1521 : }
1522 :
1523 : // --------------------------------------------------------------------
1524 :
1525 0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnExpandingHdl)
1526 : {
1527 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( GetHdlEntry() );
1528 :
1529 0 : if( pEntry && mxPeer.is() )
1530 : {
1531 0 : return mxPeer->onExpanding( pEntry->mxNode, !IsExpanded( pEntry ) ) ? 1 : 0;
1532 : }
1533 0 : return 0;
1534 : }
1535 :
1536 : // --------------------------------------------------------------------
1537 :
1538 0 : IMPL_LINK_NOARG(UnoTreeListBoxImpl, OnExpandedHdl)
1539 : {
1540 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( GetHdlEntry() );
1541 0 : if( pEntry && mxPeer.is() )
1542 : {
1543 0 : mxPeer->onExpanded( pEntry->mxNode, IsExpanded( pEntry ) );
1544 : }
1545 0 : return 0;
1546 : }
1547 :
1548 : // --------------------------------------------------------------------
1549 :
1550 0 : sal_uInt32 UnoTreeListBoxImpl::insert( SvTreeListEntry* pEntry,SvTreeListEntry* pParent,sal_uLong nPos )
1551 : {
1552 0 : if( pParent )
1553 0 : return SvTreeListBox::Insert( pEntry, pParent, nPos );
1554 : else
1555 0 : return SvTreeListBox::Insert( pEntry, nPos );
1556 : }
1557 :
1558 : // --------------------------------------------------------------------
1559 :
1560 0 : void UnoTreeListBoxImpl::RequestingChildren( SvTreeListEntry* pParent )
1561 : {
1562 0 : UnoTreeListEntry* pEntry = dynamic_cast< UnoTreeListEntry* >( pParent );
1563 0 : if( pEntry && pEntry->mxNode.is() && mxPeer.is() )
1564 0 : mxPeer->onRequestChildNodes( pEntry->mxNode );
1565 0 : }
1566 :
1567 : // --------------------------------------------------------------------
1568 :
1569 0 : sal_Bool UnoTreeListBoxImpl::EditingEntry( SvTreeListEntry* pEntry, Selection& )
1570 : {
1571 0 : return mxPeer.is() ? mxPeer->onEditingEntry( dynamic_cast< UnoTreeListEntry* >( pEntry ) ) : false;
1572 : }
1573 :
1574 : // --------------------------------------------------------------------
1575 :
1576 0 : sal_Bool UnoTreeListBoxImpl::EditedEntry( SvTreeListEntry* pEntry, const rtl::OUString& rNewText )
1577 : {
1578 0 : return mxPeer.is() ? mxPeer->onEditedEntry( dynamic_cast< UnoTreeListEntry* >( pEntry ), rNewText ) : false;
1579 : }
1580 :
1581 : // ====================================================================
1582 : // class UnoTreeListItem
1583 : // ====================================================================
1584 :
1585 0 : UnoTreeListItem::UnoTreeListItem( SvTreeListEntry* pEntry )
1586 0 : : SvLBoxString(pEntry, 0, rtl::OUString())
1587 : {
1588 0 : }
1589 :
1590 : // --------------------------------------------------------------------
1591 :
1592 0 : UnoTreeListItem::UnoTreeListItem()
1593 0 : : SvLBoxString()
1594 : {
1595 0 : }
1596 :
1597 : // --------------------------------------------------------------------
1598 :
1599 0 : UnoTreeListItem::~UnoTreeListItem()
1600 : {
1601 0 : }
1602 :
1603 : // --------------------------------------------------------------------
1604 :
1605 0 : void UnoTreeListItem::Paint(
1606 : const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* /*pView*/, const SvTreeListEntry* pEntry)
1607 : {
1608 0 : Point aPos( rPos );
1609 0 : if (pEntry)
1610 : {
1611 0 : Size aSize( GetSize(&rDev, pEntry) );
1612 0 : if( !!maImage )
1613 : {
1614 0 : rDev.DrawImage( aPos, maImage, rDev.IsEnabled() ? 0 : IMAGE_DRAW_DISABLE );
1615 0 : int nWidth = maImage.GetSizePixel().Width() + 6;
1616 0 : aPos.X() += nWidth;
1617 0 : aSize.Width() -= nWidth;
1618 : }
1619 0 : rDev.DrawText( Rectangle(aPos,aSize),maText, rDev.IsEnabled() ? 0 : TEXT_DRAW_DISABLE );
1620 : }
1621 : else
1622 : {
1623 0 : if( !!maImage )
1624 : {
1625 0 : rDev.DrawImage( aPos, maImage, rDev.IsEnabled() ? 0 : IMAGE_DRAW_DISABLE);
1626 0 : aPos.X() += maImage.GetSizePixel().Width() + 6;
1627 : }
1628 0 : rDev.DrawText( aPos, maText);
1629 : }
1630 0 : }
1631 :
1632 : // --------------------------------------------------------------------
1633 :
1634 0 : SvLBoxItem* UnoTreeListItem::Create() const
1635 : {
1636 0 : return new UnoTreeListItem;
1637 : }
1638 :
1639 : // --------------------------------------------------------------------
1640 :
1641 0 : void UnoTreeListItem::Clone( SvLBoxItem* pSource )
1642 : {
1643 0 : UnoTreeListItem* pSourceItem = dynamic_cast< UnoTreeListItem* >( pSource );
1644 0 : if( pSourceItem )
1645 : {
1646 0 : maText = pSourceItem->maText;
1647 0 : maImage = pSourceItem->maImage;
1648 : }
1649 0 : }
1650 :
1651 : // --------------------------------------------------------------------
1652 :
1653 0 : void UnoTreeListItem::SetImage( const Image& rImage )
1654 : {
1655 0 : maImage = rImage;
1656 0 : }
1657 :
1658 : // --------------------------------------------------------------------
1659 :
1660 0 : OUString UnoTreeListItem::GetGraphicURL() const
1661 : {
1662 0 : return maGraphicURL;
1663 : }
1664 :
1665 : // --------------------------------------------------------------------
1666 :
1667 0 : void UnoTreeListItem::SetGraphicURL( const OUString& rGraphicURL )
1668 : {
1669 0 : maGraphicURL = rGraphicURL;
1670 0 : }
1671 :
1672 : // --------------------------------------------------------------------
1673 :
1674 0 : void UnoTreeListItem::InitViewData( SvTreeListBox* pView,SvTreeListEntry* pEntry, SvViewDataItem* pViewData)
1675 : {
1676 0 : if( !pViewData )
1677 0 : pViewData = pView->GetViewDataItem( pEntry, this );
1678 :
1679 0 : pViewData->maSize = maImage.GetSizePixel();
1680 :
1681 0 : const Size aTextSize(pView->GetTextWidth( maText ), pView->GetTextHeight());
1682 0 : if( pViewData->maSize.Width() )
1683 : {
1684 0 : pViewData->maSize.Width() += 6 + aTextSize.Width();
1685 0 : if( pViewData->maSize.Height() < aTextSize.Height() )
1686 0 : pViewData->maSize.Height() = aTextSize.Height();
1687 : }
1688 : else
1689 : {
1690 0 : pViewData->maSize = aTextSize;
1691 : }
1692 0 : }
1693 :
1694 : // --------------------------------------------------------------------
1695 :
1696 0 : UnoTreeListEntry::UnoTreeListEntry( const Reference< XTreeNode >& xNode, TreeControlPeer* pPeer )
1697 : : SvTreeListEntry()
1698 : , mxNode( xNode )
1699 0 : , mpPeer( pPeer )
1700 : {
1701 0 : if( mpPeer )
1702 0 : mpPeer->addEntry( this );
1703 0 : }
1704 :
1705 : // --------------------------------------------------------------------
1706 :
1707 0 : UnoTreeListEntry::~UnoTreeListEntry()
1708 : {
1709 0 : if( mpPeer )
1710 0 : mpPeer->removeEntry( this );
1711 0 : }
1712 :
1713 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|