LCOV - code coverage report
Current view: top level - libreoffice/cui/source/customize - selector.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 434 0.0 %
Date: 2012-12-27 Functions: 0 43 0.0 %
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             : #include <vcl/help.hxx>
      21             : #include <vcl/msgbox.hxx>
      22             : #include <vcl/metric.hxx>
      23             : #include <vcl/vclmedit.hxx>
      24             : #include "selector.hxx"
      25             : #include <dialmgr.hxx>
      26             : #include <svx/fmresids.hrc> // for RID_SVXIMG_...
      27             : #include <svx/dialmgr.hxx>  // for RID_SVXIMG_...
      28             : #include <cuires.hrc>
      29             : #include <sfx2/app.hxx>
      30             : #include <sfx2/msg.hxx>
      31             : #include <sfx2/msgpool.hxx>
      32             : #include <sfx2/minfitem.hxx>
      33             : #include <sfx2/objsh.hxx>
      34             : #include <sfx2/dispatch.hxx>
      35             : 
      36             : #include <comphelper/documentinfo.hxx>
      37             : #include <comphelper/processfactory.hxx>
      38             : 
      39             : #include <com/sun/star/beans/XPropertySet.hpp>
      40             : #include <com/sun/star/script/provider/XScriptProviderSupplier.hpp>
      41             : #include <com/sun/star/script/provider/XScriptProvider.hpp>
      42             : #include <com/sun/star/script/browse/XBrowseNode.hpp>
      43             : #include <com/sun/star/script/browse/BrowseNodeTypes.hpp>
      44             : #include <com/sun/star/script/browse/XBrowseNodeFactory.hpp>
      45             : #include <com/sun/star/script/browse/BrowseNodeFactoryViewTypes.hpp>
      46             : #include <com/sun/star/frame/ModuleManager.hpp>
      47             : #include <com/sun/star/frame/Desktop.hpp>
      48             : #include <com/sun/star/container/XEnumerationAccess.hpp>
      49             : #include <com/sun/star/container/XEnumeration.hpp>
      50             : #include <com/sun/star/document/XEmbeddedScripts.hpp>
      51             : #include <com/sun/star/document/XScriptInvocationContext.hpp>
      52             : #include <com/sun/star/frame/XDispatchInformationProvider.hpp>
      53             : #include <com/sun/star/frame/DispatchInformation.hpp>
      54             : #include <com/sun/star/container/XChild.hpp>
      55             : #include <com/sun/star/frame/UICommandDescription.hpp>
      56             : 
      57             : using ::rtl::OUString;
      58             : using namespace ::com::sun::star;
      59             : using namespace ::com::sun::star::uno;
      60             : using namespace ::com::sun::star::script;
      61             : using namespace ::com::sun::star::frame;
      62             : using namespace ::com::sun::star::document;
      63             : using namespace ::com::sun::star::container;
      64             : 
      65             : #include <svtools/imagemgr.hxx>
      66             : #include "svtools/treelistentry.hxx"
      67             : #include <tools/urlobj.hxx>
      68             : #include <tools/diagnose_ex.h>
      69             : 
      70             : /*
      71             :  * The implementations of SvxConfigFunctionListBox and
      72             :  * SvxConfigGroupListBox are copied from sfx2/source/dialog/cfg.cxx
      73             :  */
      74           0 : SvxConfigFunctionListBox::SvxConfigFunctionListBox(Window* pParent)
      75             :     : SvTreeListBox(pParent, WB_CLIPCHILDREN | WB_HSCROLL | WB_SORT | WB_TABSTOP)
      76             :     , pCurEntry(0)
      77           0 :     , m_pDraggingEntry(0)
      78             : {
      79           0 :     GetModel()->SetSortMode( SortAscending );
      80             : 
      81             :     // Timer for the BallonHelp
      82           0 :     aTimer.SetTimeout( 200 );
      83             :     aTimer.SetTimeoutHdl(
      84           0 :         LINK( this, SvxConfigFunctionListBox, TimerHdl ) );
      85           0 : }
      86             : 
      87           0 : extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxConfigFunctionListBox(Window *pParent, VclBuilder::stringmap &)
      88             : {
      89           0 :     return new SvxConfigFunctionListBox(pParent);
      90             : }
      91             : 
      92           0 : SvxConfigFunctionListBox::~SvxConfigFunctionListBox()
      93             : {
      94           0 :     ClearAll();
      95           0 : }
      96             : 
      97           0 : SvTreeListEntry* SvxConfigFunctionListBox::GetLastSelectedEntry()
      98             : {
      99           0 :     if ( m_pDraggingEntry != NULL )
     100             :     {
     101           0 :         return m_pDraggingEntry;
     102             :     }
     103             :     else
     104             :     {
     105           0 :         return FirstSelected();
     106             :     }
     107             : }
     108             : 
     109           0 : void SvxConfigFunctionListBox::MouseMove( const MouseEvent& rMEvt )
     110             : {
     111           0 :     Point aMousePos = rMEvt.GetPosPixel();
     112           0 :     pCurEntry = GetCurEntry();
     113             : 
     114           0 :     if ( pCurEntry && GetEntry( aMousePos ) == pCurEntry )
     115           0 :         aTimer.Start();
     116             :     else
     117             :     {
     118           0 :         Help::ShowBalloon( this, aMousePos, String() );
     119           0 :         aTimer.Stop();
     120             :     }
     121           0 : }
     122             : 
     123             : 
     124           0 : IMPL_LINK_NOARG(SvxConfigFunctionListBox, TimerHdl)
     125             : {
     126           0 :     aTimer.Stop();
     127           0 :     Point aMousePos = GetPointerPosPixel();
     128           0 :     SvTreeListEntry *pEntry = GetCurEntry();
     129           0 :     if ( pEntry && GetEntry( aMousePos ) == pEntry && pCurEntry == pEntry )
     130           0 :         Help::ShowBalloon( this, OutputToScreenPixel( aMousePos ), GetHelpText( pEntry ) );
     131           0 :     return 0L;
     132             : }
     133             : 
     134           0 : void SvxConfigFunctionListBox::ClearAll()
     135             : {
     136           0 :     aArr.clear();
     137           0 :     Clear();
     138           0 : }
     139             : 
     140           0 : String SvxConfigFunctionListBox::GetHelpText( SvTreeListEntry *pEntry )
     141             : {
     142             :     SvxGroupInfo_Impl *pInfo =
     143           0 :         pEntry ? (SvxGroupInfo_Impl*) pEntry->GetUserData(): 0;
     144             : 
     145           0 :     if ( pInfo )
     146             :     {
     147           0 :         if ( pInfo->nKind == SVX_CFGFUNCTION_SLOT )
     148             :         {
     149           0 :             OUString aCmdURL( pInfo->sURL );
     150             : 
     151           0 :             OUString aHelpText = Application::GetHelp()->GetHelpText( aCmdURL, this );
     152             : 
     153           0 :             return aHelpText;
     154             :         }
     155           0 :         else if ( pInfo->nKind == SVX_CFGFUNCTION_SCRIPT )
     156             :         {
     157           0 :             return pInfo->sHelpText;
     158             :         }
     159             :     }
     160             : 
     161           0 :     return String();
     162             : }
     163             : 
     164           0 : void SvxConfigFunctionListBox::FunctionSelected()
     165             : {
     166           0 :     Help::ShowBalloon( this, Point(), String() );
     167           0 : }
     168             : 
     169             : // drag and drop support
     170           0 : DragDropMode SvxConfigFunctionListBox::NotifyStartDrag(
     171             :     TransferDataContainer& /*aTransferDataContainer*/, SvTreeListEntry* pEntry )
     172             : {
     173           0 :     m_pDraggingEntry = pEntry;
     174           0 :     return GetDragDropMode();
     175             : }
     176             : 
     177           0 : void SvxConfigFunctionListBox::DragFinished( sal_Int8 /*nDropAction*/ )
     178             : {
     179           0 :     m_pDraggingEntry = NULL;
     180           0 : }
     181             : 
     182             : sal_Int8
     183           0 : SvxConfigFunctionListBox::AcceptDrop( const AcceptDropEvent& /*rEvt*/ )
     184             : {
     185           0 :     return DND_ACTION_NONE;
     186             : }
     187             : 
     188           0 : SvxConfigGroupListBox::SvxConfigGroupListBox(Window* pParent)
     189             :     : SvTreeListBox(pParent,
     190             :             WB_CLIPCHILDREN | WB_HSCROLL | WB_HASBUTTONS | WB_HASLINES | WB_HASLINESATROOT | WB_HASBUTTONSATROOT | WB_TABSTOP)
     191             :     , m_bShowSlots(false)
     192           0 :     , m_hdImage(CUI_RES(RID_CUIIMG_HARDDISK))
     193           0 :     , m_libImage(CUI_RES(RID_CUIIMG_LIB))
     194           0 :     , m_macImage(CUI_RES(RID_CUIIMG_MACRO))
     195           0 :     , m_docImage(CUI_RES(RID_CUIIMG_DOC))
     196           0 :     , m_sMyMacros(CUI_RESSTR(RID_SVXSTR_MYMACROS))
     197           0 :     , m_sProdMacros(CUI_RESSTR(RID_SVXSTR_PRODMACROS))
     198             : {
     199           0 :     ImageList aNavigatorImages( SVX_RES( RID_SVXIMGLIST_FMEXPL ) );
     200             : 
     201             :     SetNodeBitmaps(
     202             :         aNavigatorImages.GetImage( RID_SVXIMG_COLLAPSEDNODE ),
     203             :         aNavigatorImages.GetImage( RID_SVXIMG_EXPANDEDNODE )
     204           0 :     );
     205           0 : }
     206             : 
     207           0 : extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxConfigGroupListBox(Window *pParent, VclBuilder::stringmap &)
     208             : {
     209           0 :     return new SvxConfigGroupListBox(pParent);
     210             : }
     211             : 
     212           0 : SvxConfigGroupListBox::~SvxConfigGroupListBox()
     213             : {
     214           0 :     ClearAll();
     215           0 : }
     216             : 
     217           0 : void SvxConfigGroupListBox::ClearAll()
     218             : {
     219           0 :     aArr.clear();
     220           0 :     Clear();
     221           0 : }
     222             : 
     223             : //-----------------------------------------------
     224             : namespace
     225             : {
     226             :     //...........................................
     227             :     /** examines a component whether it supports XEmbeddedScripts, or provides access to such a
     228             :         component by implementing XScriptInvocationContext.
     229             :         @return
     230             :             the model which supports the embedded scripts, or <NULL/> if it cannot find such a
     231             :             model
     232             :     */
     233           0 :     static Reference< XModel > lcl_getDocumentWithScripts_throw( const Reference< XInterface >& _rxComponent )
     234             :     {
     235           0 :         Reference< XEmbeddedScripts > xScripts( _rxComponent, UNO_QUERY );
     236           0 :         if ( !xScripts.is() )
     237             :         {
     238           0 :             Reference< XScriptInvocationContext > xContext( _rxComponent, UNO_QUERY );
     239           0 :             if ( xContext.is() )
     240           0 :                 xScripts.set( xContext->getScriptContainer(), UNO_QUERY );
     241             :         }
     242             : 
     243           0 :         return Reference< XModel >( xScripts, UNO_QUERY );
     244             :     }
     245             : 
     246             :     //...........................................
     247           0 :     static Reference< XModel > lcl_getScriptableDocument_nothrow( const Reference< XFrame >& _rxFrame )
     248             :     {
     249           0 :         Reference< XModel > xDocument;
     250             : 
     251             :         // examine our associated frame
     252             :         try
     253             :         {
     254             :             OSL_ENSURE( _rxFrame.is(), "lcl_getScriptableDocument_nothrow: you need to pass a frame to this dialog/tab page!" );
     255           0 :             if ( _rxFrame.is() )
     256             :             {
     257             :                 // first try the model in the frame
     258           0 :                 Reference< XController > xController( _rxFrame->getController(), UNO_SET_THROW );
     259           0 :                 xDocument = lcl_getDocumentWithScripts_throw( xController->getModel() );
     260             : 
     261           0 :                 if ( !xDocument.is() )
     262             :                 {
     263             :                     // if there is no suitable document in the frame, try the controller
     264           0 :                     xDocument = lcl_getDocumentWithScripts_throw( _rxFrame->getController() );
     265           0 :                 }
     266             :             }
     267             :         }
     268           0 :         catch( const Exception& )
     269             :         {
     270             :             DBG_UNHANDLED_EXCEPTION();
     271             :         }
     272             : 
     273           0 :         return xDocument;
     274             :     }
     275             : }
     276             : 
     277           0 : void SvxConfigGroupListBox::fillScriptList( const Reference< browse::XBrowseNode >& _rxRootNode, SvTreeListEntry* _pParentEntry, bool _bCheapChildrenOnDemand )
     278             : {
     279             :     OSL_PRECOND( _rxRootNode.is(), "SvxConfigGroupListBox::fillScriptList: invalid root node!" );
     280           0 :     if ( !_rxRootNode.is() )
     281           0 :         return;
     282             : 
     283             :     try
     284             :     {
     285           0 :         if ( _rxRootNode->hasChildNodes() )
     286             :         {
     287             :             Sequence< Reference< browse::XBrowseNode > > children =
     288           0 :                 _rxRootNode->getChildNodes();
     289             : 
     290           0 :             sal_Bool bIsRootNode = _rxRootNode->getName() == "Root";
     291             : 
     292             :             /* To mimic current starbasic behaviour we
     293             :             need to make sure that only the current document
     294             :             is displayed in the config tree. Tests below
     295             :             set the bDisplay flag to sal_False if the current
     296             :             node is a first level child of the Root and is NOT
     297             :             either the current document, user or share */
     298           0 :             OUString sCurrentDocTitle;
     299           0 :             Reference< XModel > xWorkingDocument = lcl_getScriptableDocument_nothrow( m_xFrame );
     300           0 :             if ( xWorkingDocument.is() )
     301             :             {
     302           0 :                 sCurrentDocTitle = ::comphelper::DocumentInfo::getDocumentTitle( xWorkingDocument );
     303             :             }
     304             : 
     305           0 :             for ( long n = 0; n < children.getLength(); ++n )
     306             :             {
     307           0 :                 Reference< browse::XBrowseNode >& theChild = children[n];
     308             :                 //#139111# some crash reports show that it might be unset
     309           0 :                 if ( !theChild.is() )
     310           0 :                     continue;
     311           0 :                 ::rtl::OUString sUIName = theChild->getName();
     312           0 :                 sal_Bool bDisplay = sal_True;
     313             : 
     314           0 :                 if  (   bIsRootNode
     315           0 :                     ||  ( m_bShowSlots && _pParentEntry && ( GetModel()->GetDepth( _pParentEntry ) == 0 ) )
     316             :                         // if we show slots (as in the customize dialog)
     317             :                         // then the user & share are added at depth=1
     318             :                     )
     319             :                 {
     320           0 :                     if ( sUIName == "user" )
     321             :                     {
     322           0 :                         sUIName = m_sMyMacros;
     323           0 :                         bIsRootNode = sal_True;
     324             :                     }
     325           0 :                     else if ( sUIName == "share" )
     326             :                     {
     327           0 :                         sUIName = m_sProdMacros;
     328           0 :                         bIsRootNode = sal_True;
     329             :                     }
     330           0 :                     else if ( !sUIName.equals( sCurrentDocTitle ) )
     331             :                     {
     332           0 :                         bDisplay = sal_False;
     333             :                     }
     334             :                 }
     335             : 
     336           0 :                 if ( !bDisplay )
     337           0 :                     continue;
     338             : 
     339           0 :                 if ( children[n]->getType() == browse::BrowseNodeTypes::SCRIPT )
     340           0 :                     continue;
     341             : 
     342           0 :                 SvTreeListEntry* pNewEntry = InsertEntry( sUIName, _pParentEntry );
     343             : 
     344           0 :                 Image aImage = GetImage( theChild, comphelper::getProcessComponentContext(), bIsRootNode );
     345           0 :                 SetExpandedEntryBmp( pNewEntry, aImage );
     346           0 :                 SetCollapsedEntryBmp( pNewEntry, aImage );
     347             : 
     348             :                 SvxGroupInfo_Impl* pInfo =
     349           0 :                     new SvxGroupInfo_Impl( SVX_CFGGROUP_SCRIPTCONTAINER, 0, theChild );
     350           0 :                 pNewEntry->SetUserData( pInfo );
     351           0 :                 aArr.push_back( pInfo );
     352             : 
     353           0 :                 if ( _bCheapChildrenOnDemand )
     354             :                 {
     355             :                     /* i30923 - Would be nice if there was a better
     356             :                     * way to determine if a basic lib had children
     357             :                     * without having to ask for them (which forces
     358             :                     * the library to be loaded */
     359           0 :                     pNewEntry->EnableChildrenOnDemand( sal_True );
     360             :                 }
     361             :                 else
     362             :                 {
     363             :                     // if there are granchildren we're interested in, display the '+' before
     364             :                     // the entry, but do not yet expand
     365             :                     Sequence< Reference< browse::XBrowseNode > > grandchildren =
     366           0 :                         children[n]->getChildNodes();
     367             : 
     368           0 :                     for ( sal_Int32 m = 0; m < grandchildren.getLength(); ++m )
     369             :                     {
     370           0 :                         if ( grandchildren[m]->getType() == browse::BrowseNodeTypes::CONTAINER )
     371             :                         {
     372           0 :                             pNewEntry->EnableChildrenOnDemand( sal_True );
     373           0 :                             break;
     374             :                         }
     375           0 :                     }
     376             :                 }
     377           0 :             }
     378             :         }
     379             :     }
     380           0 :     catch (const Exception&)
     381             :     {
     382             :         DBG_UNHANDLED_EXCEPTION();
     383             :     }
     384             : }
     385             : 
     386           0 : void SvxConfigGroupListBox::Init(bool bShowSlots, const Reference< frame::XFrame >& xFrame)
     387             : {
     388           0 :     m_bShowSlots = bShowSlots;
     389           0 :     m_xFrame.set(xFrame);
     390             : 
     391           0 :     SetUpdateMode(sal_False);
     392           0 :     ClearAll();
     393             : 
     394             :     Reference< XComponentContext > xContext(
     395           0 :         comphelper::getProcessComponentContext() );
     396             : 
     397             :     // are we showing builtin commands?
     398           0 :     if ( m_bShowSlots && m_xFrame.is() )
     399             :     {
     400             :         Reference< lang::XMultiComponentFactory > xMCF =
     401           0 :             xContext->getServiceManager();
     402             : 
     403             :         Reference< frame::XDispatchInformationProvider > xDIP(
     404           0 :             m_xFrame, UNO_QUERY );
     405             : 
     406           0 :         Reference< frame::XModuleManager2 > xModuleManager( frame::ModuleManager::create(xContext) );
     407             : 
     408           0 :         OUString aModuleId;
     409             :         try{
     410           0 :             aModuleId = xModuleManager->identify( m_xFrame );
     411           0 :         }catch(const uno::Exception&)
     412           0 :             { aModuleId = ::rtl::OUString(); }
     413             : 
     414             :         Reference< container::XNameAccess > const xNameAccess(
     415           0 :                 frame::UICommandDescription::create(xContext) );
     416           0 :         xNameAccess->getByName( aModuleId ) >>= m_xModuleCommands;
     417             : 
     418             :         Reference< container::XNameAccess > xAllCategories(
     419           0 :             xMCF->createInstanceWithContext(
     420             :                 OUString(RTL_CONSTASCII_USTRINGPARAM(
     421             :                     "com.sun.star.ui.UICategoryDescription" )),
     422           0 :                 xContext ),
     423           0 :             UNO_QUERY );
     424             : 
     425           0 :         Reference< container::XNameAccess > xModuleCategories;
     426           0 :         if ( xAllCategories.is() )
     427             :         {
     428           0 :             if ( !aModuleId.isEmpty() )
     429             :             {
     430             :                 try
     431             :                 {
     432             :                     xModuleCategories = Reference< container::XNameAccess >(
     433           0 :                            xAllCategories->getByName( aModuleId ), UNO_QUERY );
     434             :                 }
     435           0 :                 catch ( container::NoSuchElementException& )
     436             :                 {
     437             :                 }
     438             :             }
     439             : 
     440           0 :             if ( !xModuleCategories.is() )
     441             :             {
     442           0 :                 xModuleCategories = xAllCategories;
     443             :             }
     444             :         }
     445             : 
     446           0 :         if ( xModuleCategories.is() )
     447             :         {
     448             :             Sequence< sal_Int16 > gids =
     449           0 :                 xDIP->getSupportedCommandGroups();
     450             : 
     451           0 :             for ( sal_Int32 i = 0; i < gids.getLength(); ++i )
     452             :             {
     453           0 :                 Sequence< frame::DispatchInformation > commands;
     454             :                 try
     455             :                 {
     456             :                     commands =
     457           0 :                         xDIP->getConfigurableDispatchInformation( gids[i] );
     458             :                 }
     459           0 :                 catch ( container::NoSuchElementException& )
     460             :                 {
     461           0 :                     continue;
     462             :                 }
     463             : 
     464           0 :                 if ( commands.getLength() == 0 )
     465             :                 {
     466           0 :                     continue;
     467             :                 }
     468             : 
     469           0 :                 sal_Int32 gid = gids[i];
     470           0 :                 OUString idx = OUString::valueOf( gid );
     471           0 :                 OUString group = idx;
     472             :                 try
     473             :                 {
     474           0 :                     xModuleCategories->getByName( idx ) >>= group;
     475             :                 }
     476           0 :                 catch ( container::NoSuchElementException& )
     477             :                 {
     478             :                 }
     479             : 
     480           0 :                 SvTreeListEntry *pEntry = InsertEntry( group, NULL );
     481             : 
     482             :                 SvxGroupInfo_Impl *pInfo =
     483           0 :                     new SvxGroupInfo_Impl( SVX_CFGGROUP_FUNCTION, gids[i] );
     484           0 :                 aArr.push_back( pInfo );
     485             : 
     486           0 :                 pEntry->SetUserData( pInfo );
     487           0 :             }
     488           0 :         }
     489             :     }
     490             : 
     491             :     // Add Scripting Framework entries
     492           0 :     Reference< browse::XBrowseNode > rootNode;
     493             : 
     494             :     try
     495             :     {
     496           0 :         Reference< browse::XBrowseNodeFactory > xFac( xContext->getValueByName(
     497           0 :                                                           OUString(RTL_CONSTASCII_USTRINGPARAM( "/singletons/com.sun.star.script.browse.theBrowseNodeFactory")) ), UNO_QUERY_THROW );
     498           0 :         rootNode.set( xFac->createView( browse::BrowseNodeFactoryViewTypes::MACROSELECTOR ) );
     499             :     }
     500           0 :     catch( const Exception& )
     501             :     {
     502             :         DBG_UNHANDLED_EXCEPTION();
     503             :     }
     504             : 
     505           0 :     if ( rootNode.is() )
     506             :     {
     507           0 :         if ( m_bShowSlots )
     508             :         {
     509             :             SvxGroupInfo_Impl *pInfo =
     510           0 :                 new SvxGroupInfo_Impl( SVX_CFGGROUP_SCRIPTCONTAINER, 0, rootNode );
     511             : 
     512           0 :             String aTitle = CUI_RESSTR(RID_SVXSTR_PRODMACROS);
     513             : 
     514           0 :             SvTreeListEntry *pNewEntry = InsertEntry( aTitle, NULL );
     515           0 :             pNewEntry->SetUserData( pInfo );
     516           0 :             pNewEntry->EnableChildrenOnDemand( sal_True );
     517           0 :             aArr.push_back( pInfo );
     518             :         }
     519             :         else
     520             :         {
     521           0 :             fillScriptList( rootNode, NULL, false );
     522             :         }
     523             :     }
     524           0 :     MakeVisible( GetEntry( 0,0 ) );
     525           0 :     SetUpdateMode( sal_True );
     526           0 : }
     527             : 
     528           0 : Image SvxConfigGroupListBox::GetImage(
     529             :     Reference< browse::XBrowseNode > node,
     530             :     Reference< XComponentContext > xCtx,
     531             :     bool bIsRootNode
     532             : )
     533             : {
     534           0 :     Image aImage;
     535           0 :     if ( bIsRootNode )
     536             :     {
     537           0 :         if ( node->getName() == "user" || node->getName() == "share" )
     538             :         {
     539           0 :             aImage = m_hdImage;
     540             :         }
     541             :         else
     542             :         {
     543           0 :             OUString factoryURL;
     544           0 :             OUString nodeName = node->getName();
     545           0 :             Reference<XInterface> xDocumentModel = getDocumentModel(xCtx, nodeName );
     546           0 :             if ( xDocumentModel.is() )
     547             :             {
     548           0 :                 Reference< frame::XModuleManager2 > xModuleManager( frame::ModuleManager::create(xCtx) );
     549             :                 // get the long name of the document:
     550           0 :                 OUString appModule( xModuleManager->identify(
     551           0 :                                     xDocumentModel ) );
     552           0 :                 Sequence<beans::PropertyValue> moduleDescr;
     553           0 :                 Any aAny = xModuleManager->getByName(appModule);
     554           0 :                 if( sal_True != ( aAny >>= moduleDescr ) )
     555             :                 {
     556           0 :                     throw RuntimeException(OUString(RTL_CONSTASCII_USTRINGPARAM("SFTreeListBox::Init: failed to get PropertyValue")), Reference< XInterface >());
     557             :                 }
     558             :                 beans::PropertyValue const * pmoduleDescr =
     559           0 :                     moduleDescr.getConstArray();
     560           0 :                 for ( sal_Int32 pos = moduleDescr.getLength(); pos--; )
     561             :                 {
     562           0 :                     if ( pmoduleDescr[ pos ].Name == "ooSetupFactoryEmptyDocumentURL" )
     563             :                     {
     564           0 :                         pmoduleDescr[ pos ].Value >>= factoryURL;
     565           0 :                         break;
     566             :                     }
     567           0 :                 }
     568             :             }
     569           0 :             if( !factoryURL.isEmpty() )
     570             :             {
     571           0 :                 aImage = SvFileInformationManager::GetFileImage( INetURLObject(factoryURL), false );
     572             :             }
     573             :             else
     574             :             {
     575           0 :                 aImage = m_docImage;
     576           0 :             }
     577             :         }
     578             :     }
     579             :     else
     580             :     {
     581           0 :         if( node->getType() == browse::BrowseNodeTypes::SCRIPT )
     582           0 :             aImage = m_macImage;
     583             :         else
     584           0 :             aImage = m_libImage;
     585             :     }
     586           0 :     return aImage;
     587             : }
     588             : 
     589             : Reference< XInterface  >
     590           0 : SvxConfigGroupListBox::getDocumentModel(
     591             :     Reference< XComponentContext >& xCtx, OUString& docName )
     592             : {
     593           0 :     Reference< XInterface > xModel;
     594           0 :     Reference< frame::XDesktop2 > desktop = Desktop::create(xCtx);
     595             : 
     596             :     Reference< container::XEnumerationAccess > componentsAccess =
     597           0 :         desktop->getComponents();
     598             :     Reference< container::XEnumeration > components =
     599           0 :         componentsAccess->createEnumeration();
     600           0 :     while (components->hasMoreElements())
     601             :     {
     602             :         Reference< frame::XModel > model(
     603           0 :             components->nextElement(), UNO_QUERY );
     604           0 :         if ( model.is() )
     605             :         {
     606           0 :             OUString sTdocUrl = ::comphelper::DocumentInfo::getDocumentTitle( model );
     607           0 :             if( sTdocUrl.equals( docName ) )
     608             :             {
     609           0 :                 xModel = model;
     610             :                 break;
     611           0 :             }
     612             :         }
     613           0 :     }
     614           0 :     return xModel;
     615             : }
     616             : 
     617           0 : void SvxConfigGroupListBox::GroupSelected()
     618             : {
     619           0 :     SvTreeListEntry *pEntry = FirstSelected();
     620           0 :     SvxGroupInfo_Impl *pInfo = (SvxGroupInfo_Impl*) pEntry->GetUserData();
     621           0 :     pFunctionListBox->SetUpdateMode(sal_False);
     622           0 :     pFunctionListBox->ClearAll();
     623           0 :     if ( pInfo->nKind != SVX_CFGGROUP_FUNCTION &&
     624             :              pInfo->nKind != SVX_CFGGROUP_SCRIPTCONTAINER )
     625             :     {
     626           0 :         pFunctionListBox->SetUpdateMode(sal_True);
     627           0 :         return;
     628             :     }
     629             : 
     630           0 :     switch ( pInfo->nKind )
     631             :     {
     632             :         case SVX_CFGGROUP_FUNCTION :
     633             :         {
     634           0 :             SvTreeListEntry *_pEntry = FirstSelected();
     635           0 :             if ( _pEntry != NULL )
     636             :             {
     637             :                 SvxGroupInfo_Impl *_pInfo =
     638           0 :                     (SvxGroupInfo_Impl*) _pEntry->GetUserData();
     639             : 
     640             :                 Reference< frame::XDispatchInformationProvider > xDIP(
     641           0 :                     m_xFrame, UNO_QUERY );
     642             : 
     643           0 :                 Sequence< frame::DispatchInformation > commands;
     644             :                 try
     645             :                 {
     646           0 :                     commands = xDIP->getConfigurableDispatchInformation(
     647           0 :                         _pInfo->nOrd );
     648             :                 }
     649           0 :                 catch ( container::NoSuchElementException& )
     650             :                 {
     651             :                 }
     652             : 
     653           0 :                 for ( sal_Int32 i = 0; i < commands.getLength(); ++i )
     654             :                 {
     655           0 :                     if ( commands[i].Command.isEmpty() )
     656             :                     {
     657           0 :                         continue;
     658             :                     }
     659             : 
     660           0 :                     Image aImage;
     661             : 
     662           0 :                     OUString aCmdURL( commands[i].Command );
     663             : 
     664           0 :                     if ( m_pImageProvider )
     665             :                     {
     666           0 :                         aImage = m_pImageProvider->GetImage( aCmdURL );
     667             :                     }
     668             : 
     669           0 :                     OUString aLabel;
     670             :                     try
     671             :                     {
     672           0 :                         Any a = m_xModuleCommands->getByName( aCmdURL );
     673           0 :                         Sequence< beans::PropertyValue > aPropSeq;
     674             : 
     675           0 :                         if ( a >>= aPropSeq )
     676             :                         {
     677           0 :                             for ( sal_Int32 k = 0; k < aPropSeq.getLength(); ++k )
     678             :                             {
     679           0 :                                 if ( aPropSeq[k].Name == "Name" )
     680             :                                 {
     681           0 :                                     aPropSeq[k].Value >>= aLabel;
     682           0 :                                     break;
     683             :                                 }
     684             :                             }
     685           0 :                         }
     686             :                     }
     687           0 :                     catch ( container::NoSuchElementException& )
     688             :                     {
     689             :                     }
     690             : 
     691           0 :                     if ( aLabel.isEmpty() )
     692             :                     {
     693           0 :                         aLabel = commands[i].Command;
     694             :                     }
     695             : 
     696           0 :                     SvTreeListEntry* pFuncEntry = NULL;
     697           0 :                     if ( !!aImage )
     698             :                     {
     699             :                         pFuncEntry = pFunctionListBox->InsertEntry(
     700           0 :                             aLabel, aImage, aImage );
     701             :                     }
     702             :                     else
     703             :                     {
     704             :                         pFuncEntry = pFunctionListBox->InsertEntry(
     705           0 :                             aLabel, NULL );
     706             :                     }
     707             : 
     708             :                     SvxGroupInfo_Impl *_pGroupInfo = new SvxGroupInfo_Impl(
     709           0 :                         SVX_CFGFUNCTION_SLOT, 123, aCmdURL, ::rtl::OUString() );
     710             : 
     711           0 :                     pFunctionListBox->aArr.push_back( _pGroupInfo );
     712             : 
     713           0 :                     pFuncEntry->SetUserData( _pGroupInfo );
     714           0 :                 }
     715             :             }
     716           0 :             break;
     717             :         }
     718             : 
     719             :         case SVX_CFGGROUP_SCRIPTCONTAINER:
     720             :         {
     721           0 :             Reference< browse::XBrowseNode > rootNode( pInfo->xBrowseNode );
     722             : 
     723             :             try {
     724           0 :                 if ( rootNode->hasChildNodes() )
     725             :                 {
     726             :                     Sequence< Reference< browse::XBrowseNode > > children =
     727           0 :                         rootNode->getChildNodes();
     728             : 
     729           0 :                     for ( sal_Int32 n = 0; n < children.getLength(); ++n )
     730             :                     {
     731           0 :                         if (!children[n].is())
     732           0 :                             continue;
     733           0 :                         if (children[n]->getType() == browse::BrowseNodeTypes::SCRIPT)
     734             :                         {
     735           0 :                             OUString uri;
     736           0 :                             OUString description;
     737             : 
     738           0 :                             Reference < beans::XPropertySet >xPropSet( children[n], UNO_QUERY );
     739           0 :                             if (!xPropSet.is())
     740             :                             {
     741           0 :                                 continue;
     742             :                             }
     743             : 
     744           0 :                             Any value = xPropSet->getPropertyValue(
     745           0 :                                 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("URI")));
     746           0 :                             value >>= uri;
     747             : 
     748             :                             try
     749             :                             {
     750           0 :                                 value = xPropSet->getPropertyValue(
     751           0 :                                     rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Description")));
     752           0 :                                 value >>= description;
     753             :                             }
     754           0 :                             catch (Exception &) {
     755             :                                 // do nothing, the description will be empty
     756             :                             }
     757             : 
     758             :                             SvxGroupInfo_Impl* _pGroupInfo =
     759             :                                 new SvxGroupInfo_Impl(
     760           0 :                                     SVX_CFGFUNCTION_SCRIPT, 123, uri, description );
     761             : 
     762           0 :                             Image aImage = GetImage( children[n], Reference< XComponentContext >(), sal_False );
     763             :                             SvTreeListEntry* pNewEntry =
     764           0 :                                 pFunctionListBox->InsertEntry( children[n]->getName(), NULL );
     765           0 :                             pFunctionListBox->SetExpandedEntryBmp( pNewEntry, aImage );
     766           0 :                             pFunctionListBox->SetCollapsedEntryBmp(pNewEntry, aImage );
     767             : 
     768           0 :                             pNewEntry->SetUserData( _pGroupInfo );
     769             : 
     770           0 :                             pFunctionListBox->aArr.push_back( _pGroupInfo );
     771             : 
     772             :                         }
     773           0 :                     }
     774             :                 }
     775             :             }
     776           0 :             catch (const Exception&)
     777             :             {
     778             :                 DBG_UNHANDLED_EXCEPTION();
     779             :             }
     780           0 :             break;
     781             :         }
     782             : 
     783             :         default:
     784             :         {
     785           0 :             return;
     786             :         }
     787             :     }
     788             : 
     789           0 :     if ( pFunctionListBox->GetEntryCount() )
     790           0 :         pFunctionListBox->Select( pFunctionListBox->GetEntry( 0, 0 ) );
     791             : 
     792           0 :     pFunctionListBox->SetUpdateMode(sal_True);
     793             : }
     794             : 
     795           0 : sal_Bool SvxConfigGroupListBox::Expand( SvTreeListEntry* pParent )
     796             : {
     797           0 :     sal_Bool bRet = SvTreeListBox::Expand( pParent );
     798           0 :     if ( bRet )
     799             :     {
     800           0 :         sal_uLong nEntries = GetOutputSizePixel().Height() / GetEntryHeight();
     801             : 
     802           0 :         sal_uLong nChildCount = GetVisibleChildCount( pParent );
     803             : 
     804           0 :         if ( nChildCount+1 > nEntries )
     805             :         {
     806           0 :             MakeVisible( pParent, sal_True );
     807             :         }
     808             :         else
     809             :         {
     810           0 :             SvTreeListEntry *pEntry = GetFirstEntryInView();
     811           0 :             sal_uLong nParentPos = 0;
     812           0 :             while ( pEntry && pEntry != pParent )
     813             :             {
     814           0 :                 ++nParentPos;
     815           0 :                 pEntry = GetNextEntryInView( pEntry );
     816             :             }
     817             : 
     818           0 :             if ( nParentPos + nChildCount + 1 > nEntries )
     819           0 :                 ScrollOutputArea( (short)( nEntries - ( nParentPos + nChildCount + 1 ) ) );
     820             :         }
     821             :     }
     822             : 
     823           0 :     return bRet;
     824             : }
     825             : 
     826           0 : void SvxConfigGroupListBox::RequestingChildren( SvTreeListEntry *pEntry )
     827             : {
     828           0 :     SvxGroupInfo_Impl *pInfo = (SvxGroupInfo_Impl*) pEntry->GetUserData();
     829           0 :     pInfo->bWasOpened = sal_True;
     830           0 :     switch ( pInfo->nKind )
     831             :     {
     832             :         case SVX_CFGGROUP_SCRIPTCONTAINER:
     833             :         {
     834           0 :             if ( !GetChildCount( pEntry ) )
     835             :             {
     836           0 :                 Reference< browse::XBrowseNode > rootNode( pInfo->xBrowseNode ) ;
     837           0 :                 fillScriptList( rootNode, pEntry, true /* i30923 */ );
     838             :             }
     839           0 :             break;
     840             :         }
     841             : 
     842             :         default:
     843             :             OSL_FAIL( "Falscher Gruppentyp!" );
     844           0 :             break;
     845             :     }
     846           0 : }
     847             : 
     848             : /*
     849             :  * Implementation of SvxScriptSelectorDialog
     850             :  *
     851             :  * This dialog is used for selecting Slot API commands
     852             :  * and Scripting Framework Scripts.
     853             :  */
     854             : 
     855           0 : SvxScriptSelectorDialog::SvxScriptSelectorDialog(
     856             :     Window* pParent, sal_Bool bShowSlots, const Reference< frame::XFrame >& xFrame)
     857             :     : ModelessDialog(pParent, "MacroSelectorDialog", "cui/ui/macroselectordialog.ui")
     858           0 :     , m_bShowSlots(bShowSlots)
     859             : {
     860           0 :     get<FixedText>("libraryft")->Show(!m_bShowSlots);
     861           0 :     get<FixedText>("categoryft")->Show(m_bShowSlots);
     862           0 :     get<FixedText>("macronameft")->Show(!m_bShowSlots);
     863           0 :     get<FixedText>("commandsft")->Show(m_bShowSlots);
     864           0 :     get(m_pDescriptionText, "description");
     865           0 :     get(m_pCommands, "commands");
     866           0 :     if (m_bShowSlots)
     867             :     {
     868             :         // If we are showing Slot API commands update labels in the UI, and
     869             :         // enable drag'n'drop
     870           0 :         SetText(CUI_RESSTR(RID_SVXSTR_SELECTOR_ADD_COMMANDS));
     871           0 :         m_pCommands->SetDragDropMode( SV_DRAGDROP_APP_COPY );
     872             : 
     873           0 :         get(m_pCancelButton, "close");
     874           0 :         get(m_pDialogDescription, "helptoolbar");
     875           0 :         get(m_pOKButton, "add");
     876             :     }
     877             :     else
     878             :     {
     879           0 :         get(m_pCancelButton, "cancel");
     880           0 :         get(m_pDialogDescription, "helpmacro");
     881           0 :         get(m_pOKButton, "ok");
     882             :     }
     883           0 :     m_pCancelButton->Show();
     884           0 :     m_pDialogDescription->Show();
     885           0 :     m_pOKButton->Show();
     886             : 
     887           0 :     get(m_pCategories, "categories");
     888           0 :     m_pCategories->SetFunctionListBox(m_pCommands);
     889           0 :     m_pCategories->Init(bShowSlots, xFrame);
     890             : 
     891             :     m_pCategories->SetSelectHdl(
     892           0 :             LINK( this, SvxScriptSelectorDialog, SelectHdl ) );
     893           0 :     m_pCommands->SetSelectHdl( LINK( this, SvxScriptSelectorDialog, SelectHdl ) );
     894           0 :     m_pCommands->SetDoubleClickHdl( LINK( this, SvxScriptSelectorDialog, FunctionDoubleClickHdl ) );
     895             : 
     896           0 :     m_pOKButton->SetClickHdl( LINK( this, SvxScriptSelectorDialog, ClickHdl ) );
     897           0 :     m_pCancelButton->SetClickHdl( LINK( this, SvxScriptSelectorDialog, ClickHdl ) );
     898             : 
     899           0 :     m_sDefaultDesc = m_pDescriptionText->GetText();
     900             : 
     901           0 :     UpdateUI();
     902           0 : }
     903             : 
     904           0 : SvxScriptSelectorDialog::~SvxScriptSelectorDialog()
     905             : {
     906           0 : }
     907             : 
     908           0 : IMPL_LINK( SvxScriptSelectorDialog, SelectHdl, Control*, pCtrl )
     909             : {
     910           0 :     if (pCtrl == m_pCategories)
     911             :     {
     912           0 :         m_pCategories->GroupSelected();
     913             :     }
     914           0 :     else if (pCtrl == m_pCommands)
     915             :     {
     916           0 :         m_pCommands->FunctionSelected();
     917             :     }
     918           0 :     UpdateUI();
     919           0 :     return 0;
     920             : }
     921             : 
     922           0 : IMPL_LINK( SvxScriptSelectorDialog, FunctionDoubleClickHdl, Control*, pCtrl )
     923             : {
     924             :     (void)pCtrl;
     925           0 :     if (m_pOKButton->IsEnabled())
     926           0 :         return ClickHdl(m_pOKButton);
     927           0 :     return 0;
     928             : }
     929             : 
     930             : // Check if command is selected and enable the OK button accordingly
     931             : // Grab the help text for this id if available and update the description field
     932             : void
     933           0 : SvxScriptSelectorDialog::UpdateUI()
     934             : {
     935           0 :     OUString url = GetScriptURL();
     936           0 :     if ( url != NULL && !url.isEmpty() )
     937             :     {
     938             :         OUString sMessage =
     939           0 :             m_pCommands->GetHelpText(m_pCommands->FirstSelected());
     940           0 :         m_pDescriptionText->SetText(sMessage.isEmpty() ? m_sDefaultDesc : sMessage);
     941             : 
     942           0 :         m_pOKButton->Enable( sal_True );
     943             :     }
     944             :     else
     945             :     {
     946           0 :         m_pDescriptionText->SetText(m_sDefaultDesc);
     947           0 :         m_pOKButton->Enable( sal_False );
     948           0 :     }
     949           0 : }
     950             : 
     951           0 : IMPL_LINK( SvxScriptSelectorDialog, ClickHdl, Button *, pButton )
     952             : {
     953           0 :     if (pButton == m_pCancelButton)
     954             :     {
     955             :         // If we are displaying Slot API commands then the dialog is being
     956             :         // run from Tools/Configure and we should not close it, just hide it
     957           0 :         if ( m_bShowSlots == sal_False )
     958             :         {
     959           0 :             EndDialog( RET_CANCEL );
     960             :         }
     961             :         else
     962             :         {
     963           0 :             Hide();
     964             :         }
     965             :     }
     966           0 :     else if (pButton == m_pOKButton)
     967             :     {
     968           0 :         GetAddHdl().Call( this );
     969             : 
     970             :         // If we are displaying Slot API commands then this the dialog is being
     971             :         // run from Tools/Configure and we should not close it
     972           0 :         if ( m_bShowSlots == sal_False )
     973             :         {
     974           0 :             EndDialog( RET_OK );
     975             :         }
     976             :         else
     977             :         {
     978             :             // Select the next entry in the list if possible
     979           0 :             SvTreeListEntry* current = m_pCommands->FirstSelected();
     980           0 :             SvTreeListEntry* next = m_pCommands->NextSibling( current );
     981             : 
     982           0 :             if ( next != NULL )
     983             :             {
     984           0 :                 m_pCommands->Select( next );
     985             :             }
     986             :         }
     987             :     }
     988             : 
     989           0 :     return 0;
     990             : }
     991             : 
     992             : void
     993           0 : SvxScriptSelectorDialog::SetRunLabel()
     994             : {
     995           0 :     m_pOKButton->SetText(CUI_RESSTR(RID_SVXSTR_SELECTOR_RUN));
     996           0 : }
     997             : 
     998             : void
     999           0 : SvxScriptSelectorDialog::SetDialogDescription( const String& rDescription )
    1000             : {
    1001           0 :     m_pDialogDescription->SetText( rDescription );
    1002           0 : }
    1003             : 
    1004             : String
    1005           0 : SvxScriptSelectorDialog::GetScriptURL() const
    1006             : {
    1007           0 :     OUString result;
    1008             : 
    1009           0 :     SvTreeListEntry *pEntry = const_cast< SvxScriptSelectorDialog* >( this )->m_pCommands->GetLastSelectedEntry();
    1010           0 :     if ( pEntry )
    1011             :     {
    1012           0 :         SvxGroupInfo_Impl *pData = (SvxGroupInfo_Impl*) pEntry->GetUserData();
    1013           0 :         if  (   ( pData->nKind == SVX_CFGFUNCTION_SLOT )
    1014             :             ||  ( pData->nKind == SVX_CFGFUNCTION_SCRIPT )
    1015             :             )
    1016             :         {
    1017           0 :             result = pData->sURL;
    1018             :         }
    1019             :     }
    1020             : 
    1021           0 :     return result;
    1022             : }
    1023             : 
    1024             : String
    1025           0 : SvxScriptSelectorDialog::GetSelectedDisplayName()
    1026             : {
    1027           0 :     return m_pCommands->GetEntryText( m_pCommands->GetLastSelectedEntry() );
    1028             : }
    1029             : 
    1030             : String
    1031           0 : SvxScriptSelectorDialog::GetSelectedHelpText()
    1032             : {
    1033           0 :     return m_pCommands->GetHelpText( m_pCommands->GetLastSelectedEntry() );
    1034             : }
    1035             : 
    1036             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10