/* -*- 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. * ************************************************************************/ #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 "arrdecl.hxx" #include #include "sfxtypes.hxx" #include "sfx2/sfxresid.hxx" #include #include #include #include #include #include #include #include #include "sfx2/tplpitem.hxx" #include "sfx2/minfitem.hxx" #include "app.hrc" #include #include #include #include "appdata.hxx" #include "appbas.hxx" #include "sfx2/sfxhelp.hxx" #include "sfx2/basmgr.hxx" #include "sorgitm.hxx" #include "appbaslib.hxx" #include #define ITEMID_SEARCH SID_SEARCH_ITEM #include #include #ifdef LIBO_MERGELIBS /* Avoid clash with the ones from svx/source/form/typemap.cxx */ #define aSfxBoolItem_Impl sfx2_source_appl_appbas_aSfxBoolItem_Impl #define aSfxStringItem_Impl sfx2_source_appl_appbas_aSfxStringItem_Impl #define aSfxUInt16Item_Impl sfx2_source_appl_appbas_aSfxUInt16Item_Impl #define aSfxUInt32Item_Impl sfx2_source_appl_appbas_aSfxUInt32Item_Impl #define aSfxVoidItem_Impl sfx2_source_appl_appbas_aSfxVoidtem_Impl #endif #define SFX_TYPEMAP #define Selection #include "sfxslots.hxx" #ifdef LIBO_MERGELIBS #undef aSfxBoolItem_Impl #undef aSfxStringItem_Impl #undef aSfxUInt16Item_Impl #undef aSfxUInt32Item_Impl #undef aSfxVoidItem_Impl #endif using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::script; using ::basic::BasicManagerRepository; //========================================================================= sal_uInt16 SfxApplication::SaveBasicManager() const { return 0; } //-------------------------------------------------------------------- sal_uInt16 SfxApplication::SaveBasicAndDialogContainer() const { if ( pAppData_Impl->pBasicManager->isValid() ) pAppData_Impl->pBasicManager->storeAllLibraries(); return 0; } //-------------------------------------------------------------------- SbxVariable* MakeVariable( StarBASIC *pBas, SbxObject *pObject, const char *pName, sal_uInt32 nSID, SbxDataType eType, SbxClassType eClassType ) { SbxVariable *pVar = pBas->Make( String::CreateFromAscii(pName), eClassType, eType ); //SbxCLASS_PROPERTY pVar->SetUserData( nSID ); pVar->SetFlag( SBX_DONTSTORE ); pObject->StartListening( pVar->GetBroadcaster() ); return pVar; } //-------------------------------------------------------------------- BasicManager* SfxApplication::GetBasicManager() { return BasicManagerRepository::getApplicationBasicManager( true ); } //-------------------------------------------------------------------- Reference< XLibraryContainer > SfxApplication::GetDialogContainer() { if ( !pAppData_Impl->pBasicManager->isValid() ) GetBasicManager(); return pAppData_Impl->pBasicManager->getLibraryContainer( SfxBasicManagerHolder::DIALOGS ); } //-------------------------------------------------------------------- Reference< XLibraryContainer > SfxApplication::GetBasicContainer() { if ( !pAppData_Impl->pBasicManager->isValid() ) GetBasicManager(); return pAppData_Impl->pBasicManager->getLibraryContainer( SfxBasicManagerHolder::SCRIPTS ); } //-------------------------------------------------------------------- StarBASIC* SfxApplication::GetBasic() { return GetBasicManager()->GetLib(0); } //------------------------------------------------------------------------- void SfxApplication::PropExec_Impl( SfxRequest &rReq ) { rReq.GetArgs(); sal_uInt16 nSID = rReq.GetSlot(); switch ( nSID ) { case SID_CREATE_BASICOBJECT: { SFX_REQUEST_ARG(rReq, pItem, SfxStringItem, nSID, sal_False); if ( pItem ) { SbxObject* pObject = SbxBase::CreateObject( pItem->GetValue() ); pObject->AddRef(); rReq.Done(); } break; } case SID_DELETE_BASICOBJECT: { break; } case SID_ATTR_UNDO_COUNT: { SFX_REQUEST_ARG(rReq, pCountItem, SfxUInt16Item, nSID, sal_False); boost::shared_ptr< comphelper::ConfigurationChanges > batch( comphelper::ConfigurationChanges::create()); officecfg::Office::Common::Undo::Steps::set( pCountItem->GetValue(), batch); batch->commit(); break; } case SID_WIN_VISIBLE: { break; } case SID_STATUSBARTEXT: { SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, nSID, sal_False); String aText = pStringItem->GetValue(); if ( aText.Len() ) GetpApp()->ShowStatusText( aText ); else GetpApp()->HideStatusText(); break; } case SID_OFFICE_PRIVATE_USE: case SID_OFFICE_COMMERCIAL_USE: { DBG_ASSERT( sal_False, "SfxApplication::PropExec_Impl()\nSID_OFFICE_PRIVATE_USE & SID_OFFICE_COMMERCIAL_USE are obsolete!\n" ); break; } case SID_OFFICE_CUSTOMERNUMBER: { SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, nSID, sal_False); if ( pStringItem ) SvtUserOptions().SetCustomerNumber( pStringItem->GetValue() ); break; } } } //------------------------------------------------------------------------- void SfxApplication::PropState_Impl( SfxItemSet &rSet ) { SfxWhichIter aIter(rSet); for ( sal_uInt16 nSID = aIter.FirstWhich(); nSID; nSID = aIter.NextWhich() ) { switch ( nSID ) { case SID_PROGNAME: rSet.Put( SfxStringItem( SID_PROGNAME, GetName() ) ); break; case SID_ACTIVEDOCUMENT: rSet.Put( SfxObjectItem( SID_ACTIVEDOCUMENT, SfxObjectShell::Current() ) ); break; case SID_APPLICATION: rSet.Put( SfxObjectItem( SID_APPLICATION, this ) ); break; case SID_PROGFILENAME: rSet.Put( SfxStringItem( SID_PROGFILENAME, Application::GetAppFileName() ) ); break; case SID_ATTR_UNDO_COUNT: rSet.Put( SfxUInt16Item( SID_ATTR_UNDO_COUNT, officecfg::Office::Common::Undo::Steps::get())); break; case SID_UPDATE_VERSION: rSet.Put( SfxUInt32Item( SID_UPDATE_VERSION, SUPD ) ); break; case SID_OFFICE_CUSTOMERNUMBER: { rSet.Put( SfxStringItem( nSID, SvtUserOptions().GetCustomerNumber() ) ); break; } } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */