CWS-TOOLING: integrate CWS tl88
[LibreOffice.git] / starmath / source / smdll.cxx
bloba66ec8efc608a135a58906b025c86902d1f6f8ee
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_starmath.hxx"
32 #include <sot/factory.hxx>
33 #ifndef _SVX_SVXIDS_HRC //autogen
34 #include <svx/svxids.hrc>
35 #endif
36 #include <svx/modctrl.hxx>
37 #include <svx/zoomctrl.hxx>
38 #include <sfx2/docfac.hxx>
39 #include <svx/lboxctrl.hxx>
40 #include <sfx2/docfile.hxx>
41 #include <sfx2/docfilt.hxx>
42 #include <sfx2/app.hxx>
43 #include <sfx2/taskpane.hxx>
45 #ifndef _SMDLL_HXX
46 #include <smdll.hxx>
47 #endif
48 #include <document.hxx>
49 #include <toolbox.hxx>
50 #include <view.hxx>
52 #ifndef _STARMATH_HRC
53 #include <starmath.hrc>
54 #endif
56 #include <svx/xmlsecctrl.hxx>
60 BOOL SmDLL::bInitialized = FALSE;
62 /*************************************************************************
64 |* Initialisierung
66 \************************************************************************/
67 void SmDLL::Init()
69 if ( bInitialized )
70 return;
72 bInitialized = TRUE;
74 SfxObjectFactory& rFactory = SmDocShell::Factory();
76 SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
77 *ppShlPtr = new SmModule( &rFactory );
79 SfxModule *p = SM_MOD();
80 SmModule *pp = (SmModule *) p;
82 rFactory.SetDocumentServiceName( String::CreateFromAscii("com.sun.star.formula.FormulaProperties") );
84 SmModule::RegisterInterface(pp);
85 SmDocShell::RegisterInterface(pp);
86 SmViewShell::RegisterInterface(pp);
88 SmViewShell::RegisterFactory(1);
90 SvxZoomStatusBarControl::RegisterControl( SID_ATTR_ZOOM, pp );
91 SvxModifyControl::RegisterControl( SID_TEXTSTATUS, pp );
92 SvxUndoRedoControl::RegisterControl( SID_UNDO, pp );
93 SvxUndoRedoControl::RegisterControl( SID_REDO, pp );
94 XmlSecStatusBarControl::RegisterControl( SID_SIGNATURE, pp );
96 SmToolBoxWrapper::RegisterChildWindow(TRUE);
97 SmCmdBoxWrapper::RegisterChildWindow(TRUE);
99 ::sfx2::TaskPaneWrapper::RegisterChildWindow( FALSE, pp );
102 /*************************************************************************
104 |* Deinitialisierung
106 \************************************************************************/
107 void SmDLL::Exit()
109 // the SdModule must be destroyed
110 SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
111 delete (*ppShlPtr);
112 (*ppShlPtr) = NULL;
114 *GetAppData(SHL_SM) = 0;