bump product version to 5.0.4.1
[LibreOffice.git] / starmath / source / smdll.cxx
blobd8335211daed2ab295130f4bc9c3672b9792848e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sot/factory.hxx>
21 #include <svx/svxids.hrc>
22 #include <svx/modctrl.hxx>
23 #include <svx/zoomctrl.hxx>
24 #include <svx/zoomsliderctrl.hxx>
25 #include <sfx2/docfac.hxx>
26 #include <svx/lboxctrl.hxx>
27 #include <sfx2/docfile.hxx>
28 #include <sfx2/docfilt.hxx>
29 #include <sfx2/app.hxx>
30 #include <sfx2/taskpane.hxx>
32 #include <smdll.hxx>
33 #include <document.hxx>
34 #include <view.hxx>
36 #include <ElementsDockingWindow.hxx>
38 #include <starmath.hrc>
40 #include <svx/xmlsecctrl.hxx>
42 namespace
44 class SmDLL
46 public:
47 SmDLL();
48 ~SmDLL();
51 SmDLL::SmDLL()
53 SmModule** ppShlPtr = reinterpret_cast<SmModule**>(GetAppData(SHL_SM));
54 if ( *ppShlPtr )
55 return;
57 SfxObjectFactory& rFactory = SmDocShell::Factory();
58 SmModule *pModule = new SmModule( &rFactory );
59 *ppShlPtr = pModule;
61 rFactory.SetDocumentServiceName( OUString("com.sun.star.formula.FormulaProperties") );
63 SmModule::RegisterInterface(pModule);
64 SmDocShell::RegisterInterface(pModule);
65 SmViewShell::RegisterInterface(pModule);
67 SmViewShell::RegisterFactory(1);
69 SvxZoomStatusBarControl::RegisterControl(SID_ATTR_ZOOM, pModule);
70 SvxZoomSliderControl::RegisterControl(SID_ATTR_ZOOMSLIDER, pModule);
71 SvxModifyControl::RegisterControl(SID_TEXTSTATUS, pModule);
72 SvxUndoRedoControl::RegisterControl(SID_UNDO, pModule);
73 SvxUndoRedoControl::RegisterControl(SID_REDO, pModule);
74 XmlSecStatusBarControl::RegisterControl(SID_SIGNATURE, pModule);
76 SmCmdBoxWrapper::RegisterChildWindow(true);
77 SmElementsDockingWindowWrapper::RegisterChildWindow(true);
79 ::sfx2::TaskPaneWrapper::RegisterChildWindow(false, pModule);
82 SmDLL::~SmDLL()
84 #if 0
85 // the SdModule must be destroyed
86 SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
87 delete (*ppShlPtr);
88 (*ppShlPtr) = NULL;
89 *GetAppData(SHL_SM) = 0;
90 #endif
93 struct theSmDLLInstance : public rtl::Static<SmDLL, theSmDLLInstance> {};
96 namespace SmGlobals
98 void ensure()
100 theSmDLLInstance::get();
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */