Bump version to 21.06.18.1
[LibreOffice.git] / starmath / source / smdll.cxx
blob78dc2183bca65c4a2e780063f4552bf715a8cf6e
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 <sal/config.h>
22 #include <svx/svxids.hrc>
23 #include <svx/modctrl.hxx>
24 #include <svx/zoomctrl.hxx>
25 #include <svx/zoomsliderctrl.hxx>
26 #include <sfx2/docfac.hxx>
27 #include <svx/lboxctrl.hxx>
28 #include <sfx2/app.hxx>
30 #include <smdll.hxx>
31 #include <smmod.hxx>
32 #include <document.hxx>
33 #include <view.hxx>
35 #include <ElementsDockingWindow.hxx>
37 #include <starmath.hrc>
39 #include <svx/xmlsecctrl.hxx>
41 namespace
43 class SmDLL
45 public:
46 SmDLL();
49 SmDLL::SmDLL()
51 if ( SfxApplication::GetModule(SfxToolsModule::Math) ) // Module already active
52 return;
54 SfxObjectFactory& rFactory = SmDocShell::Factory();
56 auto pUniqueModule = std::make_unique<SmModule>(&rFactory);
57 SmModule* pModule = pUniqueModule.get();
58 SfxApplication::SetModule(SfxToolsModule::Math, std::move(pUniqueModule));
60 rFactory.SetDocumentServiceName( "com.sun.star.formula.FormulaProperties" );
62 SmModule::RegisterInterface(pModule);
63 SmDocShell::RegisterInterface(pModule);
64 SmViewShell::RegisterInterface(pModule);
66 SmViewShell::RegisterFactory(SFX_INTERFACE_SFXAPP);
68 SvxZoomStatusBarControl::RegisterControl(SID_ATTR_ZOOM, pModule);
69 SvxZoomSliderControl::RegisterControl(SID_ATTR_ZOOMSLIDER, pModule);
70 SvxModifyControl::RegisterControl(SID_TEXTSTATUS, pModule);
71 XmlSecStatusBarControl::RegisterControl(SID_SIGNATURE, pModule);
73 SmCmdBoxWrapper::RegisterChildWindow(true);
74 SmElementsDockingWindowWrapper::RegisterChildWindow(true);
77 struct theSmDLLInstance : public rtl::Static<SmDLL, theSmDLLInstance> {};
80 namespace SmGlobals
82 void ensure()
84 theSmDLLInstance::get();
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */