/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sfx2.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "comphelper/configurationhelper.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "frmload.hxx" #include "referers.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include "docvor.hxx" #include #include #include "sfxtypes.hxx" #include #include "arrdecl.hxx" #include "fltfnc.hxx" #include #include "app.hrc" #include #include "sfx2/sfxresid.hxx" #include "arrdecl.hxx" #include #include "appdata.hxx" #include "sfx2/minfitem.hxx" #include #include #include #include "sfxpicklist.hxx" #include "imestatuswindow.hxx" #include #include #include "sorgitm.hxx" #include "sfx2/sfxhelp.hxx" #include using namespace ::com::sun::star; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::container; using namespace ::com::sun::star::util; using namespace ::com::sun::star::script; using namespace ::com::sun::star::system; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::document; namespace css = com::sun::star; //------------------------------------------------------------------------- long QuitAgain_Impl( void* pObj, void* pArg ) { SfxApplication* pApp = (SfxApplication*)pObj; Timer* pTimer = (Timer*)pArg; delete pTimer; pApp->GetDispatcher_Impl()->Execute( SID_QUITAPP, SFX_CALLMODE_ASYNCHRON ); return 0; } /// Find the correct location of the document (LICENSE.odt, etc.), and return /// it in rURL if found. static sal_Bool checkURL( const char *pName, const char *pExt, rtl::OUString &rURL ) { using namespace osl; DirectoryItem aDirItem; rURL = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("$BRAND_BASE_DIR/") ); rURL += rtl::OUString::createFromAscii( pName ); rURL += rtl::OUString::createFromAscii( pExt ); rtl::Bootstrap::expandMacros( rURL ); if (rURL.getLength() != 0) return DirectoryItem::get( rURL, aDirItem ) == DirectoryItem::E_None; else return sal_False; } /// Displays CREDITS or LICENSE in any of the available version static void showDocument( const char* pBaseName ) { try { Reference < XComponentLoader > xLoader( ::comphelper::getProcessServiceFactory()->createInstance(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.frame.Desktop")) ), UNO_QUERY ); Sequence < com::sun::star::beans::PropertyValue > args(2); args[0].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ViewOnly")); args[0].Value <<= sal_True; args[1].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReadOnly")); args[1].Value <<= sal_True; rtl::OUString aURL; if ( checkURL ( pBaseName, ".odt", aURL ) || checkURL ( pBaseName, ".html", aURL ) || checkURL ( pBaseName, "", aURL ) ) { xLoader->loadComponentFromURL( aURL, ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("_blank")), 0, args ); } } catch (const ::com::sun::star::uno::Exception &) { } } void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) { DBG_MEMTEST(); bool bDone = false; switch ( rReq.GetSlot() ) { case SID_SETOPTIONS: { if( rReq.GetArgs() ) SetOptions_Impl( *rReq.GetArgs() ); break; } case SID_QUITAPP: case SID_EXITANDRETURN: case SID_LOGOUT: { // protect against reentrant calls if ( pAppData_Impl->bInQuit ) return; if ( rReq.GetSlot() == SID_LOGOUT ) { for ( SfxObjectShell *pObjSh = SfxObjectShell::GetFirst(); pObjSh; pObjSh = SfxObjectShell::GetNext( *pObjSh ) ) { if ( !pObjSh->IsModified() ) continue; SfxViewFrame* pFrame = SfxViewFrame::GetFirst( pObjSh ); if ( !pFrame || !pFrame->GetWindow().IsReallyVisible() ) continue; if ( pObjSh->PrepareClose(2) ) pObjSh->SetModified( sal_False ); else return; } String aName = String::CreateFromAscii("vnd.sun.star.cmd:logout"); SfxStringItem aNameItem( SID_FILE_NAME, aName ); SfxStringItem aReferer( SID_REFERER, DEFINE_CONST_UNICODE( "private/user" ) ); pAppData_Impl->pAppDispat->Execute( SID_OPENDOC, SFX_CALLMODE_SLOT, &aNameItem, &aReferer, 0L ); return; } // aus verschachtelten Requests nach 100ms nochmal probieren if( Application::GetDispatchLevel() > 1 ) { /* Dont save the request for closing the application and try it later again. This is an UI bound functionality ... and the user will try it again if the dialog is closed. But we shouldnt close the application automaticly if this dialog is closed by the user ... So we ignore this request now and wait for a new user decision. */ OSL_TRACE( "QueryExit => sal_False (DispatchLevel == %u)", Application::GetDispatchLevel() ); return; } // block reentrant calls pAppData_Impl->bInQuit = sal_True; Reference < XDesktop > xDesktop ( ::comphelper::getProcessServiceFactory()->createInstance( DEFINE_CONST_UNICODE("com.sun.star.frame.Desktop") ), UNO_QUERY ); rReq.ForgetAllArgs(); // if terminate() failed, pAppData_Impl->bInQuit will now be sal_False, allowing further calls of SID_QUITAPP sal_Bool bTerminated = xDesktop->terminate(); if (!bTerminated) // if terminate() was successful, SfxApplication is now dead! pAppData_Impl->bInQuit = sal_False; // Set return value, terminate if possible rReq.SetReturnValue( SfxBoolItem( rReq.GetSlot(), bTerminated ) ); return; } case SID_CONFIG: case SID_TOOLBOXOPTIONS: case SID_CONFIGSTATUSBAR: case SID_CONFIGMENU: case SID_CONFIGACCEL: case SID_CONFIGEVENT: { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if ( pFact ) { SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, SID_CONFIG, sal_False); SfxItemSet aSet( GetPool(), SID_CONFIG, SID_CONFIG ); if ( pStringItem ) { aSet.Put( SfxStringItem( SID_CONFIG, pStringItem->GetValue() ) ); } Reference< XFrame > xFrame; const SfxItemSet* pIntSet = rReq.GetInternalArgs_Impl(); SFX_ITEMSET_ARG( pIntSet, pFrameItem, SfxUnoFrameItem, SID_FILLFRAME, sal_False ); if ( pFrameItem ) xFrame = pFrameItem->GetFrame(); SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_SVXDLG_CUSTOMIZE, NULL, &aSet, xFrame ); if ( pDlg ) { const short nRet = pDlg->Execute(); if ( nRet ) bDone = true; delete pDlg; } } break; } case SID_CLOSEDOCS: case SID_CLOSEWINS: { Reference < XFramesSupplier > xDesktop ( ::comphelper::getProcessServiceFactory()->createInstance( DEFINE_CONST_UNICODE("com.sun.star.frame.Desktop") ), UNO_QUERY ); Reference< XIndexAccess > xTasks( xDesktop->getFrames(), UNO_QUERY ); if ( !xTasks.is() ) break; sal_Int32 n=0; do { if ( xTasks->getCount() <= n ) break; Any aAny = xTasks->getByIndex(n); Reference < XCloseable > xTask; aAny >>= xTask; try { xTask->close(sal_True); n++; } catch( CloseVetoException& ) { } } while( sal_True ); sal_Bool bOk = ( n == 0); rReq.SetReturnValue( SfxBoolItem( 0, bOk ) ); bDone = true; break; } case SID_SAVEDOCS: { sal_Bool bOK = sal_True; for ( SfxObjectShell *pObjSh = SfxObjectShell::GetFirst(); pObjSh; pObjSh = SfxObjectShell::GetNext( *pObjSh ) ) { SfxRequest aReq( SID_SAVEDOC, 0, pObjSh->GetPool() ); if ( pObjSh->IsModified() ) { pObjSh->ExecuteSlot( aReq ); SfxBoolItem *pItem = PTR_CAST( SfxBoolItem, aReq.GetReturnValue() ); if ( !pItem || !pItem->GetValue() ) bOK = sal_False; } } rReq.SetReturnValue( SfxBoolItem( 0, bOK ) ); rReq.Done(); break; } case SID_SHOW_LICENSE: { ModalDialog aDialog( NULL, SfxResId( DLG_HELP_LICENSING ) ); String aLicensing; for ( int i = STR_LICENSING_INFORMATION_1; i <= STR_LICENSING_INFORMATION_5; ++i ) { if ( i != STR_LICENSING_INFORMATION_1 ) aLicensing += String( RTL_CONSTASCII_USTRINGPARAM( "\n\n" ) ); aLicensing += String( SfxResId( i ) ); } FixedText aText( &aDialog ); aText.SetText( aLicensing ); OKButton aShow( &aDialog, SfxResId( PB_LICENSING_SHOW ) ); CancelButton aClose( &aDialog, SfxResId( PB_LICENSING_CLOSE ) ); // positions and sizes are computed to always fit the language Size aTextSize( aText.GetOptimalSize( WINDOWSIZE_PREFERRED ) ); Size aShowSize( aShow.GetOptimalSize( WINDOWSIZE_PREFERRED ) ); Size aCloseSize( aClose.GetOptimalSize( WINDOWSIZE_PREFERRED ) ); long nDelimX = 12; long nDelimY = 12; long nWidth = aTextSize.Width() + 2*nDelimX; long nButtonY = aTextSize.Height() + 2*nDelimY; Size aButtonSize( std::max( aShowSize.Width(), aCloseSize.Width() ) + nDelimX, std::max( aShowSize.Height(), aCloseSize.Height() ) ); aDialog.SetSizePixel( Size( nWidth, aTextSize.Height() + 3*nDelimY + aButtonSize.Height() ) ); aText.SetPosSizePixel( Point( nDelimX, nDelimY ), aTextSize ); aShow.SetPosSizePixel( Point( ( nWidth - nDelimX ) / 2 - aButtonSize.Width(), nButtonY ), aButtonSize ); aClose.SetPosSizePixel( Point( aShow.GetPosPixel().X() + aButtonSize.Width() + nDelimX, nButtonY ), aButtonSize ); aText.Show(); if ( aDialog.Execute() == RET_OK ) showDocument( "LICENSE" ); break; } case SID_SHOW_CREDITS: { showDocument( "CREDITS" ); break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_HELPINDEX: { Help* pHelp = Application::GetHelp(); if ( pHelp ) { pHelp->Start( String::CreateFromAscii(".uno:HelpIndex"), NULL ); // show start page bDone = true; } break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_HELPTIPS: { // Evaluate Parameter SFX_REQUEST_ARG(rReq, pOnItem, SfxBoolItem, SID_HELPTIPS, sal_False); bool bOn = pOnItem ? ((SfxBoolItem*)pOnItem)->GetValue() : !Help::IsQuickHelpEnabled(); if ( bOn ) Help::EnableQuickHelp(); else Help::DisableQuickHelp(); SvtHelpOptions().SetHelpTips( bOn ); Invalidate(SID_HELPTIPS); bDone = true; // Record if possible if ( !rReq.IsAPI() ) rReq.AppendItem( SfxBoolItem( SID_HELPTIPS, bOn) ); break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_EXTENDEDHELP: { Help::StartExtHelp(); break; } case SID_HELPBALLOONS: { // Evaluate Parameter SFX_REQUEST_ARG(rReq, pOnItem, SfxBoolItem, SID_HELPBALLOONS, sal_False); bool bOn = pOnItem ? ((SfxBoolItem*)pOnItem)->GetValue() : !Help::IsBalloonHelpEnabled(); if ( bOn ) Help::EnableBalloonHelp(); else Help::DisableBalloonHelp(); SvtHelpOptions().SetExtendedHelp( bOn ); Invalidate(SID_HELPBALLOONS); bDone = true; // Record if possible if ( !rReq.IsAPI() ) rReq.AppendItem( SfxBoolItem( SID_HELPBALLOONS, bOn) ); break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_HELP_PI: { SvtHelpOptions aHelpOpt; SFX_REQUEST_ARG(rReq, pOnItem, SfxBoolItem, SID_HELP_PI, sal_False); sal_Bool bOn = pOnItem ? ((SfxBoolItem*)pOnItem)->GetValue() : !aHelpOpt.IsHelpAgentAutoStartMode(); aHelpOpt.SetHelpAgentAutoStartMode( bOn ); Invalidate(SID_HELP_PI); bDone = true; break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_ABOUT: { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if ( pFact ) { VclAbstractDialog* pDlg = pFact->CreateVclDialog( 0, RID_DEFAULTABOUT ); pDlg->Execute(); delete pDlg; bDone = true; } break; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - case SID_ORGANIZER: { SfxTemplateOrganizeDlg *pDlg = new SfxTemplateOrganizeDlg(NULL); pDlg->Execute(); delete pDlg; bDone = true; break; } case SID_TEMPLATE_ADDRESSBOKSOURCE: { svt::AddressBookSourceDialog aDialog(GetTopWindow(), ::comphelper::getProcessServiceFactory()); aDialog.Execute(); bDone = true; break; } case SID_BASICSTOP: StarBASIC::Stop(); break; case SID_BASICBREAK : BASIC_DLL()->BasicBreak(); break; case SID_CRASH : { // Provoke a crash: char * crash = 0; *crash = 0; break; } case SID_SHOW_IME_STATUS_WINDOW: if (pAppData_Impl->m_xImeStatusWindow->canToggle()) { SfxBoolItem const * pItem = static_cast< SfxBoolItem const * >( rReq.GetArg(SID_SHOW_IME_STATUS_WINDOW, false, TYPE(SfxBoolItem))); bool bShow = pItem == 0 ? !pAppData_Impl->m_xImeStatusWindow->isShowing() : ( pItem->GetValue() == sal_True ); pAppData_Impl->m_xImeStatusWindow->show(bShow); if (pItem == 0) rReq.AppendItem(SfxBoolItem(SID_SHOW_IME_STATUS_WINDOW, bShow)); } bDone = true; break; case SID_AVAILABLE_TOOLBARS: { SfxStringItem const * pToolbarName = static_cast< SfxStringItem const *>( rReq.GetArg(SID_AVAILABLE_TOOLBARS, false, TYPE(SfxStringItem))); if ( pToolbarName ) { com::sun::star::uno::Reference< com::sun::star::frame::XFrame > xFrame; Reference < XFramesSupplier > xDesktop ( ::comphelper::getProcessServiceFactory()->createInstance( DEFINE_CONST_UNICODE("com.sun.star.frame.Desktop") ), UNO_QUERY ); xFrame = xDesktop->getActiveFrame(); Reference< com::sun::star::beans::XPropertySet > xPropSet( xFrame, UNO_QUERY ); Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; if ( xPropSet.is() ) { try { Any aValue = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LayoutManager" ))); aValue >>= xLayoutManager; } catch ( ::com::sun::star::uno::RuntimeException& e ) { throw e; } catch ( ::com::sun::star::uno::Exception& ) { } } if ( xLayoutManager.is() ) { rtl::OUString aToolbarResName( RTL_CONSTASCII_USTRINGPARAM( "private:resource/toolbar/" )); rtl::OUStringBuffer aBuf( aToolbarResName ); aBuf.append( pToolbarName->GetValue() ); // Evaluate Parameter rtl::OUString aToolbarName( aBuf.makeStringAndClear() ); sal_Bool bShow( !xLayoutManager->isElementVisible( aToolbarName )); if ( bShow ) { xLayoutManager->createElement( aToolbarName ); xLayoutManager->showElement( aToolbarName ); } else xLayoutManager->hideElement( aToolbarName ); } } bDone = true; break; } default: break; } if ( bDone ) rReq.Done(); } //-------------------------------------------------------------------- void SfxApplication::MiscState_Impl(SfxItemSet &rSet) { DBG_MEMTEST(); LocaleDataWrapper aLocaleWrapper( ::comphelper::getProcessServiceFactory(), Application::GetSettings().GetLocale() ); const sal_uInt16 *pRanges = rSet.GetRanges(); DBG_ASSERT(pRanges && *pRanges, "Set without range"); while ( *pRanges ) { for(sal_uInt16 nWhich = *pRanges++; nWhich <= *pRanges; ++nWhich) { switch(nWhich) { case SID_TEMPLATE_ADDRESSBOKSOURCE: if ( !SvtModuleOptions().IsModuleInstalled(SvtModuleOptions::E_SDATABASE) ) rSet.Put(SfxVisibilityItem(nWhich, sal_False)); break; case SID_EXITANDRETURN: case SID_QUITAPP: { if ( pAppData_Impl->nDocModalMode ) rSet.DisableItem(nWhich); else rSet.Put(SfxStringItem(nWhich, String(SfxResId(STR_QUITAPP)))); break; } case SID_CONFIG: case SID_TOOLBOXOPTIONS: case SID_CONFIGSTATUSBAR: case SID_CONFIGMENU: case SID_CONFIGACCEL: case SID_CONFIGEVENT: { if( SvtMiscOptions().DisableUICustomization() ) rSet.DisableItem(nWhich); break; } case SID_BASICSTOP: if ( !StarBASIC::IsRunning() ) rSet.DisableItem(nWhich); break; case SID_HELPTIPS: { rSet.Put( SfxBoolItem( SID_HELPTIPS, Help::IsQuickHelpEnabled() ) ); } break; case SID_HELPBALLOONS: { rSet.Put( SfxBoolItem( SID_HELPBALLOONS, Help::IsBalloonHelpEnabled() ) ); } break; case SID_HELP_PI: { rSet.Put( SfxBoolItem( SID_HELP_PI, SvtHelpOptions().IsHelpAgentAutoStartMode() ) ); } break; case SID_EXTENDEDHELP: { } break; case SID_CLOSEDOCS: case SID_CLOSEWINS: { Reference < XFramesSupplier > xDesktop ( ::comphelper::getProcessServiceFactory()->createInstance( DEFINE_CONST_UNICODE("com.sun.star.frame.Desktop") ), UNO_QUERY ); Reference< XIndexAccess > xTasks( xDesktop->getFrames(), UNO_QUERY ); if ( !xTasks.is() || !xTasks->getCount() ) rSet.DisableItem(nWhich); break; } case SID_SAVEDOCS: { sal_Bool bModified = sal_False; for ( SfxObjectShell *pObjSh = SfxObjectShell::GetFirst(); pObjSh; pObjSh = SfxObjectShell::GetNext( *pObjSh ) ) { if ( pObjSh->IsModified() ) { bModified = sal_True; break; } } if ( !bModified ) rSet.DisableItem( nWhich ); break; } case SID_SHOW_IME_STATUS_WINDOW: if (pAppData_Impl->m_xImeStatusWindow->canToggle()) rSet.Put(SfxBoolItem( SID_SHOW_IME_STATUS_WINDOW, pAppData_Impl->m_xImeStatusWindow-> isShowing())); else rSet.DisableItem(SID_SHOW_IME_STATUS_WINDOW); break; default: break; } } ++pRanges; } } static const ::rtl::OUString& getProductRegistrationServiceName( ) { static ::rtl::OUString s_sServiceName(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.setup.ProductRegistration")); return s_sServiceName; } typedef rtl_uString* (SAL_CALL *basicide_choose_macro)(XModel*, sal_Bool, rtl_uString*); typedef void (SAL_CALL *basicide_macro_organizer)( sal_Int16 ); #define DOSTRING( x ) #x #define STRING( x ) DOSTRING( x ) extern "C" { static void SAL_CALL thisModule() {} } ::rtl::OUString ChooseMacro( const Reference< XModel >& rxLimitToDocument, sal_Bool bChooseOnly, const ::rtl::OUString& rMacroDesc = ::rtl::OUString() ) { // get basctl dllname static ::rtl::OUString aLibName( RTL_CONSTASCII_USTRINGPARAM( SVLIBRARY( "basctl" ) ) ); // load module oslModule handleMod = osl_loadModuleRelative( &thisModule, aLibName.pData, 0 ); // get symbol ::rtl::OUString aSymbol( RTL_CONSTASCII_USTRINGPARAM( "basicide_choose_macro" ) ); basicide_choose_macro pSymbol = (basicide_choose_macro) osl_getFunctionSymbol( handleMod, aSymbol.pData ); // call basicide_choose_macro in basctl rtl_uString* pScriptURL = pSymbol( rxLimitToDocument.get(), bChooseOnly, rMacroDesc.pData ); ::rtl::OUString aScriptURL( pScriptURL ); rtl_uString_release( pScriptURL ); return aScriptURL; } void MacroOrganizer( sal_Int16 nTabId ) { // get basctl dllname static ::rtl::OUString aLibName( RTL_CONSTASCII_USTRINGPARAM( SVLIBRARY( "basctl" ) ) ); // load module oslModule handleMod = osl_loadModuleRelative( &thisModule, aLibName.pData, 0 ); // get symbol ::rtl::OUString aSymbol( RTL_CONSTASCII_USTRINGPARAM( "basicide_macro_organizer" ) ); basicide_macro_organizer pSymbol = (basicide_macro_organizer) osl_getFunctionSymbol( handleMod, aSymbol.pData ); // call basicide_macro_organizer in basctl pSymbol( nTabId ); } #define RID_ERRBOX_MODULENOTINSTALLED (RID_OFA_START + 72) ResMgr* SfxApplication::GetOffResManager_Impl() { if ( !pAppData_Impl->pOfaResMgr ) pAppData_Impl->pOfaResMgr = CreateResManager( "ofa"); return pAppData_Impl->pOfaResMgr; } namespace { Window* lcl_getDialogParent( const Reference< XFrame >& _rxFrame, Window* _pFallback ) { if ( !_rxFrame.is() ) return _pFallback; try { Reference< awt::XWindow > xContainerWindow( _rxFrame->getContainerWindow(), UNO_SET_THROW ); Window* pWindow = VCLUnoHelper::GetWindow( xContainerWindow ); OSL_ENSURE( pWindow, "lcl_getDialogParent: cool, somebody implemented a VCL-less toolkit!" ); if ( pWindow ) return pWindow->GetSystemWindow(); } catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } return _pFallback; } const ::rtl::OUString& lcl_getBasicIDEServiceName() { static const ::rtl::OUString s_sBasicName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.script.BasicIDE" ) ); return s_sBasicName; } SfxViewFrame* lcl_getBasicIDEViewFrame( SfxObjectShell* i_pBasicIDE ) { SfxViewFrame* pView = SfxViewFrame::GetFirst( i_pBasicIDE ); while ( pView ) { if ( pView->GetObjectShell()->GetFactory().GetDocumentServiceName() == lcl_getBasicIDEServiceName() ) break; pView = SfxViewFrame::GetNext( *pView, i_pBasicIDE ); } return pView; } Reference< XFrame > lcl_findStartModuleFrame( const ::comphelper::ComponentContext& i_rContext ) { try { Reference < XFramesSupplier > xSupplier( i_rContext.createComponent( "com.sun.star.frame.Desktop" ), UNO_QUERY_THROW ); Reference < XIndexAccess > xContainer( xSupplier->getFrames(), UNO_QUERY_THROW ); Reference< XModuleManager > xCheck( i_rContext.createComponent( "com.sun.star.frame.ModuleManager" ), UNO_QUERY_THROW ); sal_Int32 nCount = xContainer->getCount(); for ( sal_Int32 i=0; i xFrame( xContainer->getByIndex(i), UNO_QUERY_THROW ); ::rtl::OUString sModule = xCheck->identify( xFrame ); if ( sModule.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.frame.StartModule" ) ) ) return xFrame; } catch( const UnknownModuleException& ) { // silence } catch(const Exception&) { // re-throw, caught below throw; } } } catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } return NULL; } } static ::rtl::OUString getConfigurationStringValue( const ::rtl::OUString& rPackage, const ::rtl::OUString& rRelPath, const ::rtl::OUString& rKey, const ::rtl::OUString& rDefaultValue ) { ::rtl::OUString aDefVal( rDefaultValue ); try { ::comphelper::ConfigurationHelper::readDirectKey( comphelper::getProcessServiceFactory(), rPackage, rRelPath, rKey, ::comphelper::ConfigurationHelper::E_READONLY) >>= aDefVal; } catch(const com::sun::star::uno::RuntimeException& exRun) { throw exRun; } catch(const com::sun::star::uno::Exception&) {} return aDefVal; } void SfxApplication::OfaExec_Impl( SfxRequest& rReq ) { DBG_MEMTEST(); switch ( rReq.GetSlot() ) { case SID_OPTIONS_TREEDIALOG: { String sPageURL; SFX_REQUEST_ARG( rReq, pURLItem, SfxStringItem, SID_OPTIONS_PAGEURL, sal_False ); if ( pURLItem ) sPageURL = pURLItem->GetValue(); const SfxItemSet* pArgs = rReq.GetInternalArgs_Impl(); const SfxPoolItem* pItem = NULL; Reference < XFrame > xFrame; if ( pArgs && pArgs->GetItemState( SID_FILLFRAME, sal_False, &pItem ) == SFX_ITEM_SET ) { OSL_ENSURE( pItem->ISA( SfxUnoFrameItem ), "SfxApplication::OfaExec_Impl: XFrames are to be transported via SfxUnoFrameItem by now!" ); xFrame = static_cast< const SfxUnoFrameItem*>( pItem )->GetFrame(); } SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if ( pFact ) { VclAbstractDialog* pDlg = pFact->CreateFrameDialog( NULL, xFrame, rReq.GetSlot(), sPageURL ); short nRet = pDlg->Execute(); delete pDlg; SfxViewFrame* pView = SfxViewFrame::GetFirst(); while ( pView ) { if (nRet == RET_OK) { SfxObjectShell* pObjSh = pView->GetObjectShell(); if (pObjSh) pObjSh->SetConfigOptionsChecked(false); } pView->GetBindings().InvalidateAll(sal_False); pView = SfxViewFrame::GetNext( *pView ); } } break; } case SID_MORE_DICTIONARIES: { try { uno::Reference< lang::XMultiServiceFactory > xSMGR = ::comphelper::getProcessServiceFactory(); uno::Reference< css::system::XSystemShellExecute > xSystemShell( xSMGR->createInstance( DEFINE_CONST_UNICODE("com.sun.star.system.SystemShellExecute" ) ), uno::UNO_QUERY_THROW ); // read repository URL from configuration ::rtl::OUString sTemplRepoURL = getConfigurationStringValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("org.openoffice.Office.Common")), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Dictionaries")), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("RepositoryURL")), ::rtl::OUString()); if ( xSystemShell.is() && sTemplRepoURL.getLength() > 0 ) { ::rtl::OUStringBuffer aURLBuf( sTemplRepoURL ); aURLBuf.appendAscii( "?" ); aURLBuf.appendAscii( "lang=" ); // read locale from configuration ::rtl::OUString sLocale = getConfigurationStringValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("org.openoffice.Setup")), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("L10N")), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ooLocale")), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("en-US"))); aURLBuf.append( sLocale ); xSystemShell->execute( aURLBuf.makeStringAndClear(), ::rtl::OUString(), css::system::SystemShellExecuteFlags::DEFAULTS ); } } catch( const ::com::sun::star::uno::Exception& ) { DBG_ERRORFILE( "SfxApplication::OfaExec_Impl(SID_MORE_DICTIONARIES): caught an exception!" ); } break; } case SID_ONLINE_REGISTRATION: { try { // create the ProductRegistration component Reference< com::sun::star::lang::XMultiServiceFactory > xORB( ::comphelper::getProcessServiceFactory() ); Reference< com::sun::star::task::XJobExecutor > xProductRegistration; if ( xORB.is() ) xProductRegistration = xProductRegistration.query( xORB->createInstance( getProductRegistrationServiceName() ) ); DBG_ASSERT( xProductRegistration.is(), "OfficeApplication::ExecuteApp_Impl: could not create the service!" ); // tell it that the user wants to register if ( xProductRegistration.is() ) { xProductRegistration->trigger( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("RegistrationRequired")) ); } } catch( const ::com::sun::star::uno::Exception& ) { OSL_FAIL( "OfficeApplication::ExecuteApp_Impl(SID_ONLINE_REGISTRATION): caught an exception!" ); } } break; case SID_BASICIDE_APPEAR: { SfxViewFrame* pView = lcl_getBasicIDEViewFrame( NULL ); if ( !pView ) { SfxObjectShell* pBasicIDE = SfxObjectShell::CreateObject( lcl_getBasicIDEServiceName() ); pBasicIDE->DoInitNew( 0 ); pBasicIDE->SetModified( sal_False ); try { // load the Basic IDE via direct access to the SFX frame loader. A generic loadComponentFromURL // (which could be done via SfxViewFrame::LoadDocumentIntoFrame) is not feasible here, since the Basic IDE // does not really play nice with the framework's concept. For instance, it is a "singleton document", // which conflicts, at the latest, with the framework's concept of loading into _blank frames. // So, since we know that our frame loader can handle it, we skip the generic framework loader // mechanism, and the type detection (which doesn't know about the Basic IDE). ::comphelper::ComponentContext aContext( ::comphelper::getProcessServiceFactory() ); Reference< XSynchronousFrameLoader > xLoader( aContext.createComponent( SfxFrameLoader_Impl::impl_getStaticImplementationName() ), UNO_QUERY_THROW ); ::comphelper::NamedValueCollection aLoadArgs; aLoadArgs.put( "Model", pBasicIDE->GetModel() ); aLoadArgs.put( "URL", ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "private:factory/sbasic" ) ) ); Reference< XFrame > xTargetFrame( lcl_findStartModuleFrame( aContext ) ); if ( !xTargetFrame.is() ) xTargetFrame = SfxFrame::CreateBlankFrame(); ENSURE_OR_THROW( xTargetFrame.is(), "could not obtain a frameto load the Basic IDE into!" ); xLoader->load( aLoadArgs.getPropertyValues(), xTargetFrame ); } catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } pView = lcl_getBasicIDEViewFrame( pBasicIDE ); if ( pView ) pView->SetName( String( RTL_CONSTASCII_USTRINGPARAM( "BASIC:1" ) ) ); } if ( pView ) pView->GetFrame().Appear(); const SfxItemSet* pArgs = rReq.GetArgs(); if ( pArgs && pView ) { SfxViewShell* pViewShell = pView->GetViewShell(); SfxObjectShell* pObjShell = pView->GetObjectShell(); if ( pViewShell && pObjShell ) { SfxRequest aReq( SID_BASICIDE_SHOWWINDOW, SFX_CALLMODE_SYNCHRON, pObjShell->GetPool() ); aReq.SetArgs( *pArgs ); pViewShell->ExecuteSlot( aReq ); } } rReq.Done(); } break; case SID_BASICCHOOSER: { const SfxItemSet* pArgs = rReq.GetArgs(); const SfxPoolItem* pItem; sal_Bool bChooseOnly = sal_False; Reference< XModel > xLimitToModel; if(pArgs && SFX_ITEM_SET == pArgs->GetItemState(SID_RECORDMACRO, sal_False, &pItem) ) { sal_Bool bRecord = ((SfxBoolItem*)pItem)->GetValue(); if ( bRecord ) { // !Hack bChooseOnly = sal_False; SfxObjectShell* pCurrentShell = SfxObjectShell::Current(); OSL_ENSURE( pCurrentShell, "macro recording outside an SFX document?" ); if ( pCurrentShell ) xLimitToModel = pCurrentShell->GetModel(); } } rReq.SetReturnValue( SfxStringItem( rReq.GetSlot(), ChooseMacro( xLimitToModel, bChooseOnly ) ) ); rReq.Done(); } break; case SID_MACROORGANIZER: { OSL_TRACE("handling SID_MACROORGANIZER"); const SfxItemSet* pArgs = rReq.GetArgs(); const SfxPoolItem* pItem; sal_Int16 nTabId = 0; if(pArgs && SFX_ITEM_SET == pArgs->GetItemState(SID_MACROORGANIZER, sal_False, &pItem) ) { nTabId = ((SfxUInt16Item*)pItem)->GetValue(); } SfxApplication::MacroOrganizer( nTabId ); rReq.Done(); } break; case SID_RUNMACRO: { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); OSL_TRACE("SfxApplication::OfaExec_Impl: case ScriptOrg"); Reference< XFrame > xFrame; const SfxItemSet* pIntSet = rReq.GetInternalArgs_Impl(); SFX_ITEMSET_ARG( pIntSet, pFrameItem, SfxUnoFrameItem, SID_FILLFRAME, sal_False ); if ( pFrameItem ) xFrame = pFrameItem->GetFrame(); if ( !xFrame.is() ) { const SfxViewFrame* pViewFrame = SfxViewFrame::Current(); if ( pViewFrame ) xFrame = pViewFrame->GetFrame().GetFrameInterface(); } do // artificial loop for flow control { AbstractScriptSelectorDialog* pDlg = pFact->CreateScriptSelectorDialog( lcl_getDialogParent( xFrame, GetTopWindow() ), sal_False, xFrame ); OSL_ENSURE( pDlg, "SfxApplication::OfaExec_Impl( SID_RUNMACRO ): no dialog!" ); if ( !pDlg ) break; pDlg->SetRunLabel(); short nDialogResult = pDlg->Execute(); if ( !nDialogResult ) break; Sequence< Any > args; Sequence< sal_Int16 > outIndex; Sequence< Any > outArgs; Any ret; Reference< XInterface > xScriptContext; Reference< XController > xController; if ( xFrame.is() ) xController = xFrame->getController(); if ( xController.is() ) xScriptContext = xController->getModel(); if ( !xScriptContext.is() ) xScriptContext = xController; SfxObjectShell::CallXScript( xScriptContext, pDlg->GetScriptURL(), args, ret, outIndex, outArgs ); } while ( false ); rReq.Done(); } break; case SID_SCRIPTORGANIZER: { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); OSL_TRACE("SfxApplication::OfaExec_Impl: case ScriptOrg"); const SfxItemSet* pArgs = rReq.GetArgs(); const SfxPoolItem* pItem; String aLanguage; if(pArgs && SFX_ITEM_SET == pArgs->GetItemState(SID_SCRIPTORGANIZER, sal_False, &pItem) ) { aLanguage = ((SfxScriptOrganizerItem*)pItem)->getLanguage(); } ::rtl::OUString aLang( aLanguage ); OSL_TRACE("SfxApplication::OfaExec_Impl: about to create dialog for: %s", ::rtl::OUStringToOString( aLang , RTL_TEXTENCODING_ASCII_US ).pData->buffer); // not sure about the Window* VclAbstractDialog* pDlg = pFact->CreateSvxScriptOrgDialog( GetTopWindow(), aLanguage ); if( pDlg ) { pDlg->Execute(); } else { OSL_TRACE("no dialog!!!"); } rReq.Done(); } break; case SID_OFFICE_CHECK_PLZ: { sal_Bool bRet = sal_False; SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, rReq.GetSlot(), sal_False); if ( pStringItem ) { String aPLZ = pStringItem->GetValue(); bRet = sal_True /*!!!SfxIniManager::CheckPLZ( aPLZ )*/; } else SbxBase::SetError( SbxERR_WRONG_ARGS ); rReq.SetReturnValue( SfxBoolItem( rReq.GetSlot(), bRet ) ); } break; case SID_AUTO_CORRECT_DLG: { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if ( pFact ) { SfxItemSet aSet(GetPool(), SID_AUTO_CORRECT_DLG, SID_AUTO_CORRECT_DLG); const SfxPoolItem* pItem=NULL; const SfxItemSet* pSet = rReq.GetArgs(); SfxItemPool* pSetPool = pSet ? pSet->GetPool() : NULL; if ( pSet && pSet->GetItemState( pSetPool->GetWhich( SID_AUTO_CORRECT_DLG ), sal_False, &pItem ) == SFX_ITEM_SET ) aSet.Put( *pItem ); SfxAbstractTabDialog* pDlg = pFact->CreateTabDialog( RID_OFA_AUTOCORR_DLG, NULL, &aSet, NULL ); pDlg->Execute(); delete pDlg; } break; } case SID_SD_AUTOPILOT : case SID_NEWSD : { SvtModuleOptions aModuleOpt; if ( !aModuleOpt.IsImpress() ) { ErrorBox( 0, ResId( RID_ERRBOX_MODULENOTINSTALLED, *GetOffResManager_Impl() )).Execute(); return; } Reference< com::sun::star::lang::XMultiServiceFactory > xORB = ::comphelper::getProcessServiceFactory(); Reference< com::sun::star::frame::XDispatchProvider > xProv( xORB->createInstance( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.drawing.ModuleDispatcher"))), UNO_QUERY ); if ( xProv.is() ) { ::rtl::OUString aCmd = ::rtl::OUString::createFromAscii( GetInterface()->GetSlot( rReq.GetSlot() )->GetUnoName() ); Reference< com::sun::star::frame::XDispatchHelper > xHelper( xORB->createInstance( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.frame.DispatchHelper"))), UNO_QUERY ); if ( xHelper.is() ) { Sequence < com::sun::star::beans::PropertyValue > aSeq; if ( rReq.GetArgs() ) TransformItems( rReq.GetSlot(), *rReq.GetArgs(), aSeq ); Any aResult = xHelper->executeDispatch( xProv, aCmd, ::rtl::OUString(), 0, aSeq ); ::com::sun::star::frame::DispatchResultEvent aEvent; sal_Bool bSuccess = ( (aResult >>= aEvent) && (aEvent.State == ::com::sun::star::frame::DispatchResultState::SUCCESS) ); rReq.SetReturnValue( SfxBoolItem( rReq.GetSlot(), bSuccess ) ); } } } break; case FN_LABEL : case FN_BUSINESS_CARD : case FN_XFORMS_INIT : { Reference< com::sun::star::lang::XMultiServiceFactory > xORB = ::comphelper::getProcessServiceFactory(); Reference< com::sun::star::frame::XDispatchProvider > xProv( xORB->createInstance( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.text.ModuleDispatcher"))), UNO_QUERY ); if ( xProv.is() ) { ::rtl::OUString aCmd = ::rtl::OUString::createFromAscii( GetInterface()->GetSlot( rReq.GetSlot() )->GetUnoName() ); Reference< com::sun::star::frame::XDispatchHelper > xHelper( xORB->createInstance( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.frame.DispatchHelper"))), UNO_QUERY ); if ( xHelper.is() ) { Sequence < com::sun::star::beans::PropertyValue > aSeq; if ( rReq.GetArgs() ) TransformItems( rReq.GetSlot(), *rReq.GetArgs(), aSeq ); Any aResult = xHelper->executeDispatch( xProv, aCmd, ::rtl::OUString(), 0, aSeq ); ::com::sun::star::frame::DispatchResultEvent aEvent; sal_Bool bSuccess = ( (aResult >>= aEvent) && (aEvent.State == ::com::sun::star::frame::DispatchResultState::SUCCESS) ); rReq.SetReturnValue( SfxBoolItem( rReq.GetSlot(), bSuccess ) ); } } } break; case SID_ADDRESS_DATA_SOURCE: { ::rtl::OUString sDialogServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.ui.dialogs.AddressBookSourcePilot" ) ); try { Reference< com::sun::star::lang::XMultiServiceFactory > xORB = ::comphelper::getProcessServiceFactory(); Reference< com::sun::star::ui::dialogs::XExecutableDialog > xDialog; if (xORB.is()) xDialog = Reference< com::sun::star::ui::dialogs::XExecutableDialog >(xORB->createInstance(sDialogServiceName), UNO_QUERY); if (xDialog.is()) xDialog->execute(); else ShowServiceNotAvailableError(NULL, sDialogServiceName, sal_True); } catch(::com::sun::star::uno::Exception&) { } } break; case SID_COMP_BIBLIOGRAPHY: { SfxStringItem aURL(SID_FILE_NAME, String::CreateFromAscii(".component:Bibliography/View1")); SfxStringItem aRef(SID_REFERER, String::CreateFromAscii("private:user")); SfxStringItem aTarget(SID_TARGETNAME, String::CreateFromAscii("_blank")); SfxViewFrame::Current()->GetDispatcher()->Execute( SID_OPENDOC, SFX_CALLMODE_ASYNCHRON, &aURL, &aRef, &aTarget, 0L); } break; } } void SfxApplication::OfaState_Impl(SfxItemSet &rSet) { const sal_uInt16 *pRanges = rSet.GetRanges(); DBG_ASSERT(pRanges && *pRanges, "Set without Region"); while ( *pRanges ) { for(sal_uInt16 nWhich = *pRanges++; nWhich <= *pRanges; ++nWhich) { switch(nWhich) { case SID_ONLINE_REGISTRATION: { ::utl::RegOptions aOptions; if ( !aOptions.allowMenu() ) rSet.DisableItem( SID_ONLINE_REGISTRATION ); } break; } } } SvtModuleOptions aModuleOpt; if( !aModuleOpt.IsWriter()) { rSet.DisableItem( FN_LABEL ); rSet.DisableItem( FN_BUSINESS_CARD ); rSet.DisableItem( FN_XFORMS_INIT ); } if ( !aModuleOpt.IsImpress() ) rSet.DisableItem( SID_SD_AUTOPILOT ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */