xref: /trunk/main/starmath/source/smdll.cxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
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.
14  *
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).
20  *
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.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_starmath.hxx"
30 
31 
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>
44 
45 #ifndef _SMDLL_HXX
46 #include <smdll.hxx>
47 #endif
48 #include <document.hxx>
49 #include <toolbox.hxx>
50 #include <view.hxx>
51 
52 #ifndef _STARMATH_HRC
53 #include <starmath.hrc>
54 #endif
55 
56 #include <svx/xmlsecctrl.hxx>
57 
58 
59 
60 sal_Bool SmDLL::bInitialized = sal_False;
61 
62 /*************************************************************************
63 |*
64 |* Initialisierung
65 |*
66 \************************************************************************/
67 void SmDLL::Init()
68 {
69     if ( bInitialized )
70         return;
71 
72     bInitialized = sal_True;
73 
74     SfxObjectFactory& rFactory = SmDocShell::Factory();
75 
76 	SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
77     *ppShlPtr = new SmModule( &rFactory );
78 
79     SfxModule *p = SM_MOD();
80 	SmModule *pp = (SmModule *) p;
81 
82     rFactory.SetDocumentServiceName( String::CreateFromAscii("com.sun.star.formula.FormulaProperties") );
83 
84 	SmModule::RegisterInterface(pp);
85     SmDocShell::RegisterInterface(pp);
86 	SmViewShell::RegisterInterface(pp);
87 
88 	SmViewShell::RegisterFactory(1);
89 
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 );
95 
96 	SmToolBoxWrapper::RegisterChildWindow(sal_True);
97 	SmCmdBoxWrapper::RegisterChildWindow(sal_True);
98 
99     ::sfx2::TaskPaneWrapper::RegisterChildWindow( sal_False, pp );
100 }
101 
102 /*************************************************************************
103 |*
104 |* Deinitialisierung
105 |*
106 \************************************************************************/
107 void SmDLL::Exit()
108 {
109 	// the SdModule must be destroyed
110 	SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
111 	delete (*ppShlPtr);
112 	(*ppShlPtr) = NULL;
113 
114 	*GetAppData(SHL_SM) = 0;
115 }
116