1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
32 #include <document.hxx>
35 #include <starmath.hrc>
37 #include <svx/xmlsecctrl.hxx>
49 if ( SfxApplication::GetModule(SfxToolsModule::Math
) ) // Module already active
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);
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */