LibreOffice Module starmath (master) 1
smdll.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <sal/config.h>
21
22#include <svx/svxids.hrc>
23#include <svx/modctrl.hxx>
24#include <svx/zoomctrl.hxx>
26#include <sfx2/docfac.hxx>
27#include <sfx2/app.hxx>
29
30#include <smdll.hxx>
31#include <smmod.hxx>
32#include <document.hxx>
33#include <view.hxx>
34
35#include <starmath.hrc>
36
37#include <svx/xmlsecctrl.hxx>
38
39namespace
40{
41 class SmDLL
42 {
43 public:
44 SmDLL();
45 };
46
47 SmDLL::SmDLL()
48 {
49 if ( SfxApplication::GetModule(SfxToolsModule::Math) ) // Module already active
50 return;
51
52 SfxObjectFactory& rFactory = SmDocShell::Factory();
53
54 auto pUniqueModule = std::make_unique<SmModule>(&rFactory);
55 SmModule* pModule = pUniqueModule.get();
56 SfxApplication::SetModule(SfxToolsModule::Math, std::move(pUniqueModule));
57
58 rFactory.SetDocumentServiceName( "com.sun.star.formula.FormulaProperties" );
59
60 SmModule::RegisterInterface(pModule);
61 SmDocShell::RegisterInterface(pModule);
62 SmViewShell::RegisterInterface(pModule);
63
64 SmViewShell::RegisterFactory(SFX_INTERFACE_SFXAPP);
65
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);
70
72
74 }
75}
76
77namespace SmGlobals
78{
79 void ensure()
80 {
81 static SmDLL theDll;
82 }
83}
84
85/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static void SetModule(SfxToolsModule nSharedLib, std::unique_ptr< SfxModule > pModule)
static SfxModule * GetModule(SfxToolsModule nSharedLib)
static void RegisterChildWindow(SfxModule *, const SfxChildWinFactory &)
void SetDocumentServiceName(const OUString &rServiceName)
void ensure()
Definition: smdll.cxx:79