/************************************************************************* * * $RCSfile: selector.cxx,v $ * * $Revision: 1.2 $ * * last change: $Author: rt $ $Date: 2004-05-19 08:47:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifndef _SV_HELP_HXX //autogen #include #endif #ifndef _MSGBOX_HXX //autogen #include #endif #ifndef _SV_METRIC_HXX //autogen #include #endif #ifndef _SBXCLASS_HXX //autogen #include #endif #ifndef _SB_SBSTAR_HXX //autogen #include #endif #ifndef __SBX_SBXMETHOD_HXX //autogen #include #endif #ifndef _SB_SBMOD_HXX //autogen #include #endif #ifndef _BASMGR_HXX //autogen #include #endif #pragma hdrstop #include "selector.hxx" #include "dialmgr.hxx" #include "selector.hrc" #include "fmresids.hrc" #include "dialogs.hrc" #include #include #include #include #include #include #include #ifndef _UNOTOOLS_PROCESSFACTORY_HXX_ #include #endif #ifndef _UNOTOOLS_CONFIGMGR_HXX_ #include #endif #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_ #include #endif #ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_PROVIDER_XSCRIPTPROVIDERSUPPLIER_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_PROVIDER_XSCRIPTPROVIDER_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_BROWSE_XBROWSENODE_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_BROWSE_BROWSENODETYPES_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_BROWSE_BROWSENODEFACTORY_HPP_ #include #endif #ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_BROWSE_BROWSENODEFACTORYVIEWTYPE_HPP_ #include #endif using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::drafts::com::sun::star::script; #define _SVSTDARR_STRINGSDTOR #include SV_IMPL_PTRARR(SvxGroupInfoArr_Impl, SvxGroupInfoPtr); /* * The implementations of SvxConfigFunctionListBox_Impl and * SvxConfigGroupListBox_Impl are copied from sfx2/source/dialog/cfg.cxx */ SvxConfigFunctionListBox_Impl::SvxConfigFunctionListBox_Impl( Window* pParent, const ResId& rResId) : SvTreeListBox( pParent, rResId ) , pCurEntry( 0 ) { SetWindowBits( GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_SORT ); GetModel()->SetSortMode( SortAscending ); // Timer f"ur die BallonHelp aTimer.SetTimeout( 200 ); aTimer.SetTimeoutHdl( LINK( this, SvxConfigFunctionListBox_Impl, TimerHdl ) ); } SvxConfigFunctionListBox_Impl::~SvxConfigFunctionListBox_Impl() { ClearAll(); } void SvxConfigFunctionListBox_Impl::MouseMove( const MouseEvent& rMEvt ) { Point aMousePos = rMEvt.GetPosPixel(); pCurEntry = GetCurEntry(); if ( pCurEntry && GetEntry( aMousePos ) == pCurEntry ) aTimer.Start(); else { Help::ShowBalloon( this, aMousePos, String() ); aTimer.Stop(); } } IMPL_LINK( SvxConfigFunctionListBox_Impl, TimerHdl, Timer*, pTimer) { aTimer.Stop(); Point aMousePos = GetPointerPosPixel(); SvLBoxEntry *pEntry = GetCurEntry(); if ( pEntry && GetEntry( aMousePos ) == pEntry && pCurEntry == pEntry ) Help::ShowBalloon( this, OutputToScreenPixel( aMousePos ), GetHelpText( pEntry ) ); return 0L; } void SvxConfigFunctionListBox_Impl::ClearAll() { USHORT nCount = aArr.Count(); for ( USHORT i=0; inKind == SFX_CFGFUNCTION_MACRO || pData->nKind == SFX_CFGFUNCTION_SCRIPT ) { SfxMacroInfo *pInfo = (SfxMacroInfo*) pData->pObject; SFX_APP()->GetMacroConfig()->ReleaseSlotId( pInfo->GetSlotId() ); delete pInfo; } if ( pData->nKind == SFX_CFGGROUP_SCRIPTCONTAINER ) { XInterface* xi = static_cast(pData->pObject); if (xi != NULL) { xi->release(); } } delete pData; } aArr.Remove( 0, nCount ); Clear(); } SvLBoxEntry* SvxConfigFunctionListBox_Impl::GetEntry_Impl( const String& rName ) { SvLBoxEntry *pEntry = First(); while ( pEntry ) { if ( GetEntryText( pEntry ) == rName ) return pEntry; pEntry = Next( pEntry ); } return NULL; } SvLBoxEntry* SvxConfigFunctionListBox_Impl::GetEntry_Impl( USHORT nId ) { SvLBoxEntry *pEntry = First(); while ( pEntry ) { SvxGroupInfo_Impl *pData = (SvxGroupInfo_Impl*) pEntry->GetUserData(); if ( pData && pData->nOrd == nId ) return pEntry; pEntry = Next( pEntry ); } return NULL; } SfxMacroInfo* SvxConfigFunctionListBox_Impl::GetMacroInfo() { SvLBoxEntry *pEntry = FirstSelected(); if ( pEntry ) { SvxGroupInfo_Impl *pData = (SvxGroupInfo_Impl*) pEntry->GetUserData(); if ( pData && ( pData->nKind == SFX_CFGFUNCTION_MACRO || pData->nKind == SFX_CFGFUNCTION_SCRIPT ) ) return (SfxMacroInfo*) pData->pObject; } return 0; } USHORT SvxConfigFunctionListBox_Impl::GetId( SvLBoxEntry *pEntry ) { SvxGroupInfo_Impl *pData = pEntry ? (SvxGroupInfo_Impl*) pEntry->GetUserData() : 0; if ( pData ) return pData->nOrd; return 0; } String SvxConfigFunctionListBox_Impl::GetHelpText( SvLBoxEntry *pEntry ) { // Information zum selektierten Entry aus den Userdaten holen SvxGroupInfo_Impl *pInfo = pEntry ? (SvxGroupInfo_Impl*) pEntry->GetUserData(): 0; if ( pInfo ) { if ( pInfo->nKind == SFX_CFGFUNCTION_SLOT ) { // Eintrag ist eine Funktion, Hilfe aus der Office-Hilfe USHORT nId = pInfo->nOrd; String aText = Application::GetHelp()->GetHelpText( nId, this ); if ( !aText.Len() ) SFX_SLOTPOOL().GetSlotName( nId, &aText ); return aText; } else { // Eintrag ist ein Macro, Hilfe aus der MacroInfo SfxMacroInfo *pMacInfo = (SfxMacroInfo*) pInfo->pObject; return pMacInfo->GetHelpText(); } } return String(); } void SvxConfigFunctionListBox_Impl::FunctionSelected() { Help::ShowBalloon( this, Point(), String() ); } SvxConfigGroupListBox_Impl::SvxConfigGroupListBox_Impl( Window* pParent, const ResId& rResId, ULONG nConfigMode ) : SvTreeListBox( pParent, rResId ) , nMode( nConfigMode ), bShowSF( FALSE ), bShowBasic( TRUE ) { SetWindowBits( GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_HASBUTTONS | WB_HASLINES | WB_HASLINESATROOT | WB_HASBUTTONSATROOT ); ImageList aNavigatorImages( SVX_RES( RID_SVXIMGLIST_FMEXPL ) ); SetNodeBitmaps( aNavigatorImages.GetImage( RID_SVXIMG_COLLAPSEDNODE ), aNavigatorImages.GetImage( RID_SVXIMG_EXPANDEDNODE ), BMP_COLOR_NORMAL ); SetNodeBitmaps( aNavigatorImages.GetImage( RID_SVXIMG_COLLAPSEDNODE ), aNavigatorImages.GetImage( RID_SVXIMG_EXPANDEDNODE ), BMP_COLOR_HIGHCONTRAST ); // Check configuration to see whether only Basic macros, // only Scripting Framework scripts, or both should be listed Any value; sal_Bool tmp; value = ::utl::ConfigManager::GetConfigManager()->GetLocalProperty( ::rtl::OUString::createFromAscii( "Office.Scripting/ScriptDisplaySettings/ShowBasic" ) ); value >>= tmp; if (tmp == sal_True) { bShowBasic = TRUE; } else { bShowBasic = FALSE; } value = ::utl::ConfigManager::GetConfigManager()->GetLocalProperty( ::rtl::OUString::createFromAscii( "Office.Scripting/ScriptDisplaySettings/ShowSF" ) ); value >>= tmp; if (tmp == sal_True) { bShowSF = TRUE; } else { bShowSF = FALSE; } } SvxConfigGroupListBox_Impl::~SvxConfigGroupListBox_Impl() { ClearAll(); } void SvxConfigGroupListBox_Impl::ClearAll() { USHORT nCount = aArr.Count(); for ( USHORT i=0; inKind == SFX_CFGGROUP_SCRIPTCONTAINER ) { XInterface* xi = static_cast(pData->pObject); if (xi != NULL) { xi->release(); } } delete pData; } aArr.Remove( 0, nCount ); Clear(); } String SvxConfigGroupListBox_Impl::GetGroup() { SvLBoxEntry *pEntry = FirstSelected(); while ( pEntry ) { SvxGroupInfo_Impl *pInfo = (SvxGroupInfo_Impl*) pEntry->GetUserData(); if ( pInfo->nKind == SFX_CFGGROUP_FUNCTION ) { return GetEntryText( pEntry ); break; } if ( pInfo->nKind == SFX_CFGGROUP_BASICMGR ) { BasicManager *pMgr = (BasicManager*) pInfo->pObject; return pMgr->GetName(); break; } if ( pInfo->nKind == SFX_CFGGROUP_DOCBASICMGR ) { SfxObjectShell *pDoc = (SfxObjectShell*) pInfo->pObject; return pDoc->GetTitle(); break; } pEntry = GetParent( pEntry ); } return String(); } void SvxConfigGroupListBox_Impl::Init( SvStringsDtor *pArr, SfxSlotPool* pPool ) { SetUpdateMode(FALSE); ClearAll(); // Remove all old entries from treelist box SfxApplication *pSfxApp = SFX_APP(); // Verwendet wird der aktuelle Slotpool if ( nMode ) { pSlotPool = pPool ? pPool : &SFX_SLOTPOOL(); for ( USHORT i=1; iGetGroupCount(); i++ ) { // Gruppe anw"ahlen ( Gruppe 0 ist intern ) String aName = pSlotPool->SeekGroup( i ); const SfxSlot *pSfxSlot = pSlotPool->FirstSlot(); if ( pSfxSlot ) { // Check if all entries are not useable. Don't // insert a group without any useable function. sal_Bool bActiveEntries = sal_False; while ( pSfxSlot ) { USHORT nId = pSfxSlot->GetSlotId(); if ( pSfxSlot->GetMode() & nMode ) { bActiveEntries = sal_True; break; } pSfxSlot = pSlotPool->NextSlot(); } if ( bActiveEntries ) { // Wenn Gruppe nicht leer SvLBoxEntry *pEntry = InsertEntry( aName, NULL ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_FUNCTION, i ); aArr.Insert( pInfo, aArr.Count() ); pEntry->SetUserData( pInfo ); } } } } if ( bShowBasic ) { // Basics einsammeln pSfxApp->EnterBasicCall(); String aMacroName(' '); aMacroName += String( ResId( STR_BASICMACROS, DIALOG_MGR() ) ); // Zuerst AppBasic BasicManager *pAppBasicMgr = pSfxApp->GetBasicManager(); BOOL bInsert = TRUE; if ( pArr ) { bInsert = FALSE; for ( USHORT n=0; nCount(); n++ ) { if ( *(*pArr)[n] == pSfxApp->GetName() ) { bInsert = TRUE; break; } } } if ( bInsert ) { pAppBasicMgr->SetName( pSfxApp->GetName() ); if ( pAppBasicMgr->GetLibCount() ) { // Nur einf"ugen, wenn Bibliotheken vorhanden ::rtl::OUString aAppBasTitle; utl::ConfigManager::GetDirectConfigProperty( utl::ConfigManager::PRODUCTNAME) >>= aAppBasTitle; aAppBasTitle += aMacroName; SvLBoxEntry *pEntry = InsertEntry( aAppBasTitle, 0 ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_BASICMGR, 0, pAppBasicMgr ); aArr.Insert( pInfo, aArr.Count() ); pEntry->SetUserData( pInfo ); pEntry->EnableChildsOnDemand( TRUE ); // Expand( pEntry ); } } //SfxObjectShell *pDoc = SfxObjectShell::GetFirst(); SfxObjectShell *pDoc = SfxObjectShell::GetWorkingDocument(); //while ( pDoc ) if ( pDoc ) { BOOL bInsert = TRUE; if ( pArr ) { bInsert = FALSE; for ( USHORT n=0; nCount(); n++ ) { if ( *(*pArr)[n] == pDoc->GetTitle() ) { bInsert = TRUE; break; } } } if ( bInsert ) { BasicManager *pBasicMgr = pDoc->GetBasicManager(); if ( pBasicMgr != pAppBasicMgr && pBasicMgr->GetLibCount() ) { pBasicMgr->SetName( pDoc->GetTitle() ); // Nur einf"ugen, wenn eigenes Basic mit Bibliotheken SvLBoxEntry *pEntry = InsertEntry( pDoc->GetTitle().Append(aMacroName), NULL ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_DOCBASICMGR, 0, pDoc ); aArr.Insert( pInfo, aArr.Count() ); pEntry->SetUserData( pInfo ); pEntry->EnableChildsOnDemand( TRUE ); // Expand( pEntry ); } } //pDoc = SfxObjectShell::GetNext(*pDoc); } pSfxApp->LeaveBasicCall(); } SfxObjectShell *tmp = SfxObjectShell::GetWorkingDocument(); if ( bShowSF ) { // Add Scripting Framework entries Reference< browse::XBrowseNode > rootNode; try { Reference < beans::XPropertySet > xProps( ::comphelper::getProcessServiceFactory(), UNO_QUERY_THROW ); Reference< XComponentContext > xCtx( xProps->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DefaultContext" ))), UNO_QUERY_THROW ); Reference< browse::XBrowseNodeFactory > xFac( xCtx->getValueByName( ::rtl::OUString::createFromAscii( "/singletons/drafts.com.sun.star.script.browse.theBrowseNodeFactory") ), UNO_QUERY_THROW ); rootNode.set( xFac->getView( browse::BrowseNodeFactoryViewType::SCRIPTSELECTOR ) ); //rootNode.set( xFac->getView( browse::BrowseNodeFactoryViewType::SCRIPTORGANIZER ) ); } catch( Exception& e ) { OSL_TRACE(" Caught some exception whilst retrieving browse nodes from factory... Exception: %s", ::rtl::OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US ).pData->buffer ); // TODO exception handling } if ( rootNode.is() ) { if ( nMode ) { /* We call acquire on the XBrowseNode so that it does not get autodestructed and become invalid when accessed later. */ rootNode->acquire(); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_SCRIPTCONTAINER, 0, static_cast(rootNode.get())); String aTitle = String( ResId( STR_SELECTOR_MACROS, DIALOG_MGR() ) ); SvLBoxEntry *pNewEntry = InsertEntry( aTitle, NULL ); pNewEntry->SetUserData( pInfo ); pNewEntry->EnableChildsOnDemand( TRUE ); aArr.Insert( pInfo, aArr.Count() ); } else { try { if ( rootNode->hasChildNodes() ) { Sequence< Reference< browse::XBrowseNode > > children = rootNode->getChildNodes(); BOOL bIsRootNode = FALSE; ::rtl::OUString user = ::rtl::OUString::createFromAscii("user"); ::rtl::OUString share = ::rtl::OUString::createFromAscii("share"); if ( rootNode->getName().equals(::rtl::OUString::createFromAscii("Root") )) { bIsRootNode = TRUE; } for ( ULONG n = 0; n < children.getLength(); n++ ) { Reference< browse::XBrowseNode >& theChild = children[n]; BOOL bDisplay = TRUE; /* To mimic current starbasic behaviour we need to make sure that only the current document is displayed in the config tree. Tests below set the bDisplay flag to FALSE if the current node is a first level child of the Root and is NOT either the current document, user or share */ ::rtl::OUString currentDocTitle; if ( SfxObjectShell::GetWorkingDocument() ) { currentDocTitle = SfxObjectShell::GetWorkingDocument()->GetTitle(); } if ( bIsRootNode ) { if ( ! ((theChild->getName().equals( user ) || theChild->getName().equals( share ) || theChild->getName().equals( currentDocTitle ) ) ) ) { bDisplay=FALSE; } } if (children[n]->getType() != browse::BrowseNodeTypes::SCRIPT && bDisplay ) { /* We call acquire on the XBrowseNode so that it does not get autodestructed and become invalid when accessed later. */ theChild->acquire(); SvxGroupInfo_Impl* pInfo = new SvxGroupInfo_Impl(SFX_CFGGROUP_SCRIPTCONTAINER, 0, static_cast( theChild.get())); SvLBoxEntry* pNewEntry = InsertEntry( theChild->getName(), NULL); pNewEntry->SetUserData( pInfo ); aArr.Insert( pInfo, aArr.Count() ); if ( children[n]->hasChildNodes() ) { Sequence< Reference< browse::XBrowseNode > > grandchildren = children[n]->getChildNodes(); for ( ULONG m = 0; m < grandchildren.getLength(); m++ ) { if ( grandchildren[m]->getType() == browse::BrowseNodeTypes::CONTAINER ) { pNewEntry->EnableChildsOnDemand( TRUE ); m = grandchildren.getLength(); } } } } } } } catch (RuntimeException &e) { // do nothing, the entry will not be displayed in the UI } } } } MakeVisible( GetEntry( 0,0 ) ); SetUpdateMode( TRUE ); } void SvxConfigGroupListBox_Impl::GroupSelected() { SvLBoxEntry *pEntry = FirstSelected(); SvxGroupInfo_Impl *pInfo = (SvxGroupInfo_Impl*) pEntry->GetUserData(); pFunctionListBox->SetUpdateMode(FALSE); pFunctionListBox->ClearAll(); if ( pInfo->nKind != SFX_CFGGROUP_FUNCTION && pInfo->nKind != SFX_CFGGROUP_BASICMOD && pInfo->nKind != SFX_CFGGROUP_SCRIPTCONTAINER ) { pFunctionListBox->SetUpdateMode(TRUE); return; } switch ( pInfo->nKind ) { case SFX_CFGGROUP_FUNCTION : { USHORT nGroup = pInfo->nOrd; String aSelectedGroup = pSlotPool->SeekGroup( nGroup ); if ( aSelectedGroup != String() ) { const SfxSlot *pSfxSlot = pSlotPool->FirstSlot(); while ( pSfxSlot ) { USHORT nId = pSfxSlot->GetSlotId(); if ( pSfxSlot->GetMode() & nMode ) { String aName = pSlotPool->GetSlotName_Impl( *pSfxSlot ); if ( aName.Len() && !pFunctionListBox->GetEntry_Impl( nId ) ) { #ifdef DBG_UTIL if ( pFunctionListBox->GetEntry_Impl( aName ) ) DBG_WARNINGFILE( "function name already exits" ); #endif // Wenn die Namen unterschiedlich sind, dann auch die Funktion, denn zu // einer Id liefert der Slotpool immer den gleichen Namen! SvLBoxEntry* pFuncEntry = pFunctionListBox->InsertEntry( aName, NULL ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGFUNCTION_SLOT, nId ); pFunctionListBox->aArr.Insert( pInfo, pFunctionListBox->aArr.Count() ); pFuncEntry->SetUserData( pInfo ); } } pSfxSlot = pSlotPool->NextSlot(); } } break; } case SFX_CFGGROUP_BASICMOD : { SvLBoxEntry *pLibEntry = GetParent( pEntry ); SvxGroupInfo_Impl *pLibInfo = (SvxGroupInfo_Impl*) pLibEntry->GetUserData(); SvLBoxEntry *pBasEntry = GetParent( pLibEntry ); SvxGroupInfo_Impl *pBasInfo = (SvxGroupInfo_Impl*) pBasEntry->GetUserData(); StarBASIC *pLib = (StarBASIC*) pLibInfo->pObject; SfxObjectShell *pDoc = NULL; if ( pBasInfo->nKind == SFX_CFGGROUP_DOCBASICMGR ) pDoc = (SfxObjectShell*) pBasInfo->pObject; SbModule *pMod = (SbModule*) pInfo->pObject; for ( USHORT nMeth=0; nMeth < pMod->GetMethods()->Count(); nMeth++ ) { SbxMethod *pMeth = (SbxMethod*)pMod->GetMethods()->Get(nMeth); SfxMacroInfoPtr pInf = new SfxMacroInfo( pDoc, pLib->GetName(), pMod->GetName(), pMeth->GetName()); if ( pMeth->GetInfo() ) pInf->SetHelpText( pMeth->GetInfo()->GetComment() ); USHORT nId = SFX_APP()->GetMacroConfig()->GetSlotId( pInf ); if ( !nId ) break; // Kein Slot mehr frei SvLBoxEntry* pFuncEntry = pFunctionListBox->InsertEntry( pMeth->GetName(), NULL ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGFUNCTION_MACRO, nId, pInf ); pFunctionListBox->aArr.Insert( pInfo, pFunctionListBox->aArr.Count() ); pFuncEntry->SetUserData( pInfo ); } break; } case SFX_CFGGROUP_SCRIPTCONTAINER: { if ( !GetChildCount( pEntry ) ) { Reference< browse::XBrowseNode > rootNode( reinterpret_cast< browse::XBrowseNode* >( pInfo->pObject ) ) ; try { if ( rootNode->hasChildNodes() ) { Sequence< Reference< browse::XBrowseNode > > children = rootNode->getChildNodes(); for ( ULONG n = 0; n < children.getLength(); n++ ) { if (children[n]->getType() == browse::BrowseNodeTypes::SCRIPT) { ::rtl::OUString uri; ::rtl::OUString description; Reference < beans::XPropertySet >xPropSet( children[n], UNO_QUERY ); if (!xPropSet.is()) { continue; } Any value = xPropSet->getPropertyValue( String::CreateFromAscii( "URI" ) ); value >>= uri; try { value = xPropSet->getPropertyValue( String::CreateFromAscii( "DESCRIPTION" ) ); value >>= description; } catch (Exception &e) { // do nothing, the description will be empty } SfxMacroInfo* aInfo = new SfxMacroInfo( uri ); aInfo->SetHelpText( description ); SFX_APP()->GetMacroConfig()->GetSlotId( aInfo ); SvxGroupInfo_Impl* pInfo = new SvxGroupInfo_Impl(SFX_CFGFUNCTION_SCRIPT, aInfo->GetSlotId(), aInfo); SvLBoxEntry* pNewEntry = pFunctionListBox->InsertEntry( children[n]->getName(), NULL ); pNewEntry->SetUserData( pInfo ); pFunctionListBox->aArr.Insert( pInfo, pFunctionListBox->aArr.Count() ); } } } } catch (RuntimeException &e) { // do nothing, the entry will not be displayed in the UI } } break; } default: { return; break; } } if ( pFunctionListBox->GetEntryCount() ) pFunctionListBox->Select( pFunctionListBox->GetEntry( 0, 0 ) ); pFunctionListBox->SetUpdateMode(TRUE); } BOOL SvxConfigGroupListBox_Impl::Expand( SvLBoxEntry* pParent ) { BOOL bRet = SvTreeListBox::Expand( pParent ); if ( bRet ) { // Wieviele Entries k"onnen angezeigt werden ? ULONG nEntries = GetOutputSizePixel().Height() / GetEntryHeight(); // Wieviele Kinder sollen angezeigt werden ? ULONG nChildCount = GetVisibleChildCount( pParent ); // Passen alle Kinder und der parent gleichzeitig in die View ? if ( nChildCount+1 > nEntries ) { // Wenn nicht, wenigstens parent ganz nach oben schieben MakeVisible( pParent, TRUE ); } else { // An welcher relativen ViewPosition steht der aufzuklappende parent SvLBoxEntry *pEntry = GetFirstEntryInView(); ULONG nParentPos = 0; while ( pEntry && pEntry != pParent ) { nParentPos++; pEntry = GetNextEntryInView( pEntry ); } // Ist unter dem parent noch genug Platz f"ur alle Kinder ? if ( nParentPos + nChildCount + 1 > nEntries ) ScrollOutputArea( (short)( nEntries - ( nParentPos + nChildCount + 1 ) ) ); } } return bRet; } void SvxConfigGroupListBox_Impl::RequestingChilds( SvLBoxEntry *pEntry ) { SvxGroupInfo_Impl *pInfo = (SvxGroupInfo_Impl*) pEntry->GetUserData(); pInfo->bWasOpened = TRUE; switch ( pInfo->nKind ) { case SFX_CFGGROUP_BASICMGR : case SFX_CFGGROUP_DOCBASICMGR : { if ( !GetChildCount( pEntry ) ) { // Erstmaliges "Offnen BasicManager *pMgr; if ( pInfo->nKind == SFX_CFGGROUP_DOCBASICMGR ) pMgr = ((SfxObjectShell*)pInfo->pObject)->GetBasicManager(); else pMgr = (BasicManager*) pInfo->pObject; SvLBoxEntry *pLibEntry = 0; for ( USHORT nLib=0; nLibGetLibCount(); nLib++) { StarBASIC* pLib = pMgr->GetLib( nLib ); pLibEntry = InsertEntry( pMgr->GetLibName( nLib ), pEntry ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_BASICLIB, nLib, pLib ); aArr.Insert( pInfo, aArr.Count() ); pLibEntry->SetUserData( pInfo ); pLibEntry->EnableChildsOnDemand( TRUE ); } } break; } case SFX_CFGGROUP_BASICLIB : { if ( !GetChildCount( pEntry ) ) { // Erstmaliges "Offnen StarBASIC *pLib = (StarBASIC*) pInfo->pObject; if ( !pLib ) { // Lib mu\s nachgeladen werden SvLBoxEntry *pParent = GetParent( pEntry ); SvxGroupInfo_Impl *pInf = (SvxGroupInfo_Impl*) pParent->GetUserData(); BasicManager *pMgr; if ( pInf->nKind == SFX_CFGGROUP_DOCBASICMGR ) pMgr = ((SfxObjectShell*)pInf->pObject)->GetBasicManager(); else pMgr = (BasicManager*) pInf->pObject; if ( pMgr->LoadLib( pInfo->nOrd ) ) pInfo->pObject = pLib = pMgr->GetLib( pInfo->nOrd ); else break; } SvLBoxEntry *pModEntry = 0; for ( USHORT nMod=0; nModGetModules()->Count(); nMod++ ) { SbModule* pMod = (SbModule*)pLib->GetModules()->Get( nMod ); pModEntry = InsertEntry( pMod->GetName(), pEntry ); SvxGroupInfo_Impl *pInfo = new SvxGroupInfo_Impl( SFX_CFGGROUP_BASICMOD, 0, pMod ); aArr.Insert( pInfo, aArr.Count() ); pModEntry->SetUserData( pInfo ); } } break; } case SFX_CFGGROUP_SCRIPTCONTAINER: { if ( !GetChildCount( pEntry ) ) { Reference< browse::XBrowseNode > rootNode( reinterpret_cast< browse::XBrowseNode* >( pInfo->pObject ) ) ; try { if ( rootNode->hasChildNodes() ) { Sequence< Reference< browse::XBrowseNode > > children = rootNode->getChildNodes(); BOOL bIsRootNode = FALSE; ::rtl::OUString user = ::rtl::OUString::createFromAscii("user"); ::rtl::OUString share = ::rtl::OUString::createFromAscii("share"); if ( rootNode->getName().equals(::rtl::OUString::createFromAscii("Root") )) { bIsRootNode = TRUE; } for ( ULONG n = 0; n < children.getLength(); n++ ) { Reference< browse::XBrowseNode >& theChild = children[n]; BOOL bDisplay = TRUE; /* To mimic current starbasic behaviour we need to make sure that only the current document is displayed in the config tree. Tests below set the bDisplay flag to FALSE if the current node is a first level child of the Root and is NOT either the current document, user or share */ ::rtl::OUString currentDocTitle; if ( SfxObjectShell::GetWorkingDocument() ) { currentDocTitle = SfxObjectShell::GetWorkingDocument()->GetTitle(); } if ( bIsRootNode ) { if ( ! ((theChild->getName().equals( user ) || theChild->getName().equals( share ) || theChild->getName().equals( currentDocTitle ) ) ) ) { bDisplay=FALSE; } } if (children[n]->getType() != browse::BrowseNodeTypes::SCRIPT && bDisplay ) { /* We call acquire on the XBrowseNode so that it does not get autodestructed and become invalid when accessed later. */ theChild->acquire(); SvxGroupInfo_Impl* pInfo = new SvxGroupInfo_Impl(SFX_CFGGROUP_SCRIPTCONTAINER, 0, static_cast( theChild.get())); SvLBoxEntry* pNewEntry = InsertEntry( theChild->getName(), pEntry ); pNewEntry->SetUserData( pInfo ); aArr.Insert( pInfo, aArr.Count() ); if ( children[n]->hasChildNodes() ) { Sequence< Reference< browse::XBrowseNode > > grandchildren = children[n]->getChildNodes(); for ( ULONG m = 0; m < grandchildren.getLength(); m++ ) { if ( grandchildren[m]->getType() == browse::BrowseNodeTypes::CONTAINER ) { pNewEntry->EnableChildsOnDemand( TRUE ); m = grandchildren.getLength(); } } } } } } } catch (RuntimeException &e) { // do nothing, the entry will not be displayed in the UI } } break; } default: DBG_ERROR( "Falscher Gruppentyp!" ); break; } } void SvxConfigGroupListBox_Impl::SelectMacro( const SfxMacroInfoItem *pItem ) { SelectMacro( pItem->GetBasicManager()->GetName(), pItem->GetQualifiedName() ); } void SvxConfigGroupListBox_Impl::SelectMacro( const String& rBasic, const String& rMacro ) { String aBasicName( rBasic ); aBasicName += ' '; aBasicName += String( ResId( STR_BASICMACROS, DIALOG_MGR() ) ); String aLib, aModule, aMethod; USHORT nCount = rMacro.GetTokenCount('.'); aMethod = rMacro.GetToken( nCount-1, '.' ); if ( nCount > 2 ) { aLib = rMacro.GetToken( 0, '.' ); aModule = rMacro.GetToken( nCount-2, '.' ); } SvLBoxEntry *pEntry = FirstChild(0); while ( pEntry ) { String aEntryBas = GetEntryText( pEntry ); if ( aEntryBas == aBasicName ) { Expand( pEntry ); SvLBoxEntry *pLib = FirstChild( pEntry ); while ( pLib ) { String aEntryLib = GetEntryText( pLib ); if ( aEntryLib == aLib ) { Expand( pLib ); SvLBoxEntry *pMod = FirstChild( pLib ); while ( pMod ) { String aEntryMod = GetEntryText( pMod ); if ( aEntryMod == aModule ) { Expand( pMod ); MakeVisible( pMod ); Select( pMod ); SvLBoxEntry *pMethod = pFunctionListBox->First(); while ( pMethod ) { String aEntryMethod = GetEntryText( pMethod ); if ( aEntryMethod == aMethod ) { pFunctionListBox->Select( pMethod ); pFunctionListBox->MakeVisible( pMethod ); return; } pMethod = pFunctionListBox->Next( pMethod ); } } pMod = NextSibling( pMod ); } } pLib = NextSibling( pLib ); } } pEntry = NextSibling( pEntry ); } } /* * Implementation of SvxScriptSelectorDialog * * This dialog is used for selecting Slot API commands * and Scripting Framework Scripts. */ SvxScriptSelectorDialog::SvxScriptSelectorDialog( Window* pParent, BOOL bShowSlots ) : ModelessDialog( pParent, SVX_RES( RID_DLG_SCRIPTSELECTOR ) ), aDialogDescription( this, ResId( TXT_SELECTOR_DIALOG_DESCRIPTION ) ), aGroupText( this, ResId( TXT_SELECTOR_CATEGORIES ) ), aCategories( this, ResId( BOX_SELECTOR_CATEGORIES ), bShowSlots ? SFX_SLOT_MENUCONFIG : 0 ), aFunctionText( this, ResId( TXT_SELECTOR_COMMANDS ) ), aCommands( this, ResId( BOX_SELECTOR_COMMANDS ) ), aOKButton( this, ResId( BTN_SELECTOR_OK ) ), aCancelButton( this, ResId( BTN_SELECTOR_CANCEL ) ), aHelpButton( this, ResId( BTN_SELECTOR_HELP ) ), aDescription( this, ResId( GRP_SELECTOR_DESCRIPTION ) ), aDescriptionText( this, ResId( TXT_SELECTOR_DESCRIPTION ) ), bShowSlots( bShowSlots ) { FreeResource(); ResMgr* pMgr = DIALOG_MGR(); // If we are showing Slot API commands update labels in the UI, and // enable drag'n'drop if ( bShowSlots ) { aGroupText.SetText( String( ResId( STR_SELECTOR_CATEGORIES, pMgr ) ) ); aOKButton.SetText( String( ResId( STR_SELECTOR_ADD, pMgr ) ) ); aFunctionText.SetText( String( ResId( STR_SELECTOR_COMMANDS, pMgr ) ) ); aDialogDescription.SetText( String( ResId( STR_SELECTOR_ADD_COMMANDS_DESCRIPTION, pMgr ) ) ); SetText( String( ResId( STR_SELECTOR_ADD_COMMANDS, pMgr ) ) ); aCommands.SetDragDropMode( SV_DRAGDROP_APP_COPY ); } ResizeControls(); aCategories.SetFunctionListBox( &aCommands ); aCategories.Init(); // aCategories.Select( aCategories.GetEntry( 0, 0 ) ); aCategories.SetSelectHdl( LINK( this, SvxScriptSelectorDialog, SelectHdl ) ); aCommands.SetSelectHdl( LINK( this, SvxScriptSelectorDialog, SelectHdl ) ); aOKButton.SetClickHdl( LINK( this, SvxScriptSelectorDialog, ClickHdl ) ); aCancelButton.SetClickHdl( LINK( this, SvxScriptSelectorDialog, ClickHdl ) ); UpdateUI(); } void SvxScriptSelectorDialog::ResizeControls() { Point p, newp; Size s, news; long gap; USHORT style = TEXT_DRAW_MULTILINE | TEXT_DRAW_TOP | TEXT_DRAW_LEFT | TEXT_DRAW_WORDBREAK; // get dimensions of dialog instructions control p = aDialogDescription.GetPosPixel(); s = aDialogDescription.GetSizePixel(); // get dimensions occupied by text in the control Rectangle rect = GetTextRect( Rectangle( p, s ), aDialogDescription.GetText(), style ); news = rect.GetSize(); // the gap is the difference between the control height and its text height gap = s.Height() - news.Height(); // resize the dialog instructions control news = Size( s.Width(), s.Height() - gap ); aDialogDescription.SetSizePixel( news ); // resize other controls to fill the gap p = aGroupText.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aGroupText.SetPosPixel( newp ); p = aCategories.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aCategories.SetPosPixel( newp ); s = aCategories.GetSizePixel(); news = Size( s.Width(), s.Height() + gap ); aCategories.SetSizePixel( news ); p = aFunctionText.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aFunctionText.SetPosPixel( newp ); p = aCommands.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aCommands.SetPosPixel( newp ); s = aCommands.GetSizePixel(); news = Size( s.Width(), s.Height() + gap ); aCommands.SetSizePixel( news ); p = aOKButton.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aOKButton.SetPosPixel( newp ); p = aCancelButton.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aCancelButton.SetPosPixel( newp ); p = aHelpButton.GetPosPixel(); newp = Point( p.X(), p.Y() - gap ); aHelpButton.SetPosPixel( newp ); } SvxScriptSelectorDialog::~SvxScriptSelectorDialog() { } IMPL_LINK( SvxScriptSelectorDialog, SelectHdl, Control*, pCtrl ) { if ( pCtrl == &aCategories ) { aCategories.GroupSelected(); } else if ( pCtrl == &aCommands ) { aCommands.FunctionSelected(); } UpdateUI(); return 0; } // Check if command is selected and enable the OK button accordingly // Grab the help text for this id if available and update the description field void SvxScriptSelectorDialog::UpdateUI() { USHORT nId = aCommands.GetCurId(); if ( nId != 0 ) { String rMessage = aCommands.GetHelpText( aCommands.FirstSelected() ); aDescriptionText.SetText( rMessage ); aOKButton.Enable( TRUE ); } else { aDescriptionText.SetText( String() ); aOKButton.Enable( FALSE ); } } IMPL_LINK( SvxScriptSelectorDialog, ClickHdl, Button *, pButton ) { if ( pButton == &aCancelButton ) { // If we are displaying Slot API commands then the dialog is being // run from Tools/Configure and we should not close it, just hide it if ( bShowSlots == FALSE ) { EndDialog( RET_CANCEL ); } else { Hide(); } } else if ( pButton == &aOKButton ) { GetAddHdl().Call( this ); // If we are displaying Slot API commands then this the dialog is being // run from Tools/Configure and we should not close it if ( bShowSlots == FALSE ) { EndDialog( RET_OK ); } else { // Select the next entry in the list if possible SvLBoxEntry* current = aCommands.FirstSelected(); SvLBoxEntry* next = aCommands.NextSibling( current ); if ( next != NULL ) { aCommands.Select( next ); } } } return 0; } void SvxScriptSelectorDialog::SetRunLabel() { aOKButton.SetText( String( ResId( STR_SELECTOR_RUN, DIALOG_MGR() ) ) ); } USHORT SvxScriptSelectorDialog::GetSelectedId() { return aCommands.GetCurId(); } // Currently we only return a URL if a Scripting Framework script is // selected, and an empty string if a Slot API is selected String SvxScriptSelectorDialog::GetScriptURL() { ::rtl::OUString result; SfxMacroInfo* info = aCommands.GetMacroInfo(); if ( info != NULL ) { result = info->GetURL(); } return result; } String SvxScriptSelectorDialog::GetSelectedDisplayName() { return aCommands.GetEntryText( aCommands.FirstSelected() ); } String SvxScriptSelectorDialog::GetSelectedHelpText() { return aCommands.GetHelpText( aCommands.FirstSelected() ); }