/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: swdll.cxx,v $ * * $Revision: 1.17 $ * * last change: $Author: obo $ $Date: 2005-11-16 13:54:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 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 * ************************************************************************/ #pragma hdrstop #ifndef _SVDOBJ_HXX //autogen #include #endif #ifndef _RTL_LOGFILE_HXX_ #include #endif #ifndef _GLOBDOC_HRC #include "globdoc.hrc" #endif #ifndef _SWDLL_HXX #include #endif #ifndef _SWWDOCSH_HXX #include #endif #ifndef _SWGLOBDOCSH_HXX #include #endif #ifndef _INITUI_HXX #include #endif #ifndef _SWMODULE_HXX #include #endif #ifndef _SWTYPES_HXX #include #endif #ifndef _INIT_HXX #include #endif #ifndef _DOBJFAC_HXX #include #endif #ifndef _CFGID_H #include #endif #include #ifndef _FM_FMOBJFAC_HXX #include #endif #ifndef _SVX_SIIMPORT_HXX #include #endif #ifndef _SVDFIELD_HXX #include #endif #ifndef _OBJFAC3D_HXX #include #endif #define C2S(cChar) String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM(cChar)) /************************************************************************* |* |* Init |* \************************************************************************/ void SwDLL::Init() { RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDLL" ); // the SdModule must be created SwModule** ppShlPtr = (SwModule**) GetAppData(SHL_WRITER); if ( *ppShlPtr ) return; SvtModuleOptions aOpt; SfxObjectFactory* pDocFact = 0; SfxObjectFactory* pGlobDocFact = 0; if ( aOpt.IsWriter() ) { pDocFact = &SwDocShell::Factory(); pGlobDocFact = &SwGlobalDocShell::Factory(); } SfxObjectFactory* pWDocFact = &SwWebDocShell::Factory(); SwModule* pModule = new SwModule( pWDocFact, pDocFact, pGlobDocFact ); (*ppShlPtr) = pModule; pWDocFact->SetDocumentServiceName(C2S("com.sun.star.text.WebDocument")); pWDocFact->RegisterMenuBar(SW_RES(CFG_SWWEB_MENU)); pWDocFact->RegisterAccel(SW_RES(CFG_SWWEB_ACCEL)); pWDocFact->RegisterHelpFile(C2S("swriter.svh")); if ( aOpt.IsWriter() ) { pGlobDocFact->SetDocumentServiceName(C2S("com.sun.star.text.GlobalDocument")); pGlobDocFact->RegisterMenuBar(SW_RES(CFG_SWGLOBAL_MENU)); pGlobDocFact->RegisterAccel(SW_RES(CFG_SW_ACCEL)); pGlobDocFact->RegisterHelpFile(String::CreateFromAscii("swriter.svh")); pDocFact->SetDocumentServiceName(C2S("com.sun.star.text.TextDocument")); pDocFact->RegisterMenuBar(SW_RES(CFG_SW_MENU)); pDocFact->RegisterAccel(SW_RES(CFG_SW_ACCEL)); pDocFact->RegisterHelpFile(String::CreateFromAscii("swriter.svh")); } // SvDraw-Felder registrieren SdrRegisterFieldClasses(); // 3D-Objekt-Factory eintragen E3dObjFactory(); // ::com::sun::star::form::component::Form-Objekt-Factory eintragen FmFormObjFactory(); // factory for dummy import of old si-controls in 3.1 documents //BFS02 SiImportFactory(); SdrObjFactory::InsertMakeObjectHdl( LINK( &aSwObjectFactory, SwObjectFactory, MakeObject ) ); RTL_LOGFILE_CONTEXT_TRACE( aLog, "Init Core/UI/Filter" ); //Initialisierung der Statics ::_InitCore(); ::_InitFilter(); ::_InitUI(); pModule->InitAttrPool(); //jetzt darf das SwModule seinen Pool anlegen // register your view-factories here RegisterFactories(); // register your shell-interfaces here RegisterInterfaces(); // register your controllers here RegisterControls(); } /************************************************************************* |* |* Exit |* \************************************************************************/ void SwDLL::Exit() { // called directly befor unloading the DLL // do whatever you want, Sw-DLL is accessible // der Pool muss vor den statics geloescht werden SW_MOD()->RemoveAttrPool(); ::_FinitUI(); ::_FinitFilter(); ::_FinitCore(); // Objekt-Factory austragen SdrObjFactory::RemoveMakeObjectHdl(LINK(&aSwObjectFactory, SwObjectFactory, MakeObject )); // the SwModule must be destroyed SwModule** ppShlPtr = (SwModule**) GetAppData(SHL_WRITER); delete (*ppShlPtr); (*ppShlPtr) = NULL; }