sw/qa: warning C6011: Dereferencing NULL pointer
[LibreOffice.git] / starmath / source / smdll.cxx
blobc2ce18aa540ff27d7b5c103090f703a59976d028
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 <sfx2/app.hxx>
28 #include <sfx2/sidebar/SidebarChildWindow.hxx>
30 #include <smdll.hxx>
31 #include <smmod.hxx>
32 #include <document.hxx>
33 #include <view.hxx>
35 #include <starmath.hrc>
37 #include <svx/xmlsecctrl.hxx>
39 namespace
41 class SmDLL
43 public:
44 SmDLL();
47 SmDLL::SmDLL()
49 if ( SfxApplication::GetModule(SfxToolsModule::Math) ) // Module already active
50 return;
52 SfxObjectFactory& rFactory = SmDocShell::Factory();
54 auto pUniqueModule = std::make_unique<SmModule>(&rFactory);
55 SmModule* pModule = pUniqueModule.get();
56 SfxApplication::SetModule(SfxToolsModule::Math, std::move(pUniqueModule));
58 rFactory.SetDocumentServiceName( u"com.sun.star.formula.FormulaProperties"_ustr );
60 SmModule::RegisterInterface(pModule);
61 SmDocShell::RegisterInterface(pModule);
62 SmViewShell::RegisterInterface(pModule);
64 SmViewShell::RegisterFactory(SFX_INTERFACE_SFXAPP);
66 SvxZoomStatusBarControl::RegisterControl(SID_ATTR_ZOOM, pModule);
67 SvxZoomSliderControl::RegisterControl(SID_ATTR_ZOOMSLIDER, pModule);
68 SvxModifyControl::RegisterControl(SID_TEXTSTATUS, pModule);
69 XmlSecStatusBarControl::RegisterControl(SID_SIGNATURE, pModule);
71 sfx2::sidebar::SidebarChildWindow::RegisterChildWindow(true, pModule);
73 SmCmdBoxWrapper::RegisterChildWindow(true);
77 namespace SmGlobals
79 void ensure()
81 static SmDLL theDll;
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */