Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/starmath/source/smdll.cxx
Line
Count
Source (jump to first uncovered line)
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>
25
#include <svx/zoomsliderctrl.hxx>
26
#include <sfx2/docfac.hxx>
27
#include <sfx2/app.hxx>
28
#include <sfx2/sidebar/SidebarChildWindow.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
39
namespace
40
{
41
    class SmDLL
42
    {
43
    public:
44
        SmDLL();
45
    };
46
47
    SmDLL::SmDLL()
48
1
    {
49
1
        if ( SfxApplication::GetModule(SfxToolsModule::Math) )    // Module already active
50
0
            return;
51
52
1
        SfxObjectFactory& rFactory = SmDocShell::Factory();
53
54
1
        auto pUniqueModule = std::make_unique<SmModule>(&rFactory);
55
1
        SmModule* pModule = pUniqueModule.get();
56
1
        SfxApplication::SetModule(SfxToolsModule::Math, std::move(pUniqueModule));
57
58
1
        rFactory.SetDocumentServiceName( u"com.sun.star.formula.FormulaProperties"_ustr );
59
60
1
        SmModule::RegisterInterface(pModule);
61
1
        SmDocShell::RegisterInterface(pModule);
62
1
        SmViewShell::RegisterInterface(pModule);
63
64
1
        SmViewShell::RegisterFactory(SFX_INTERFACE_SFXAPP);
65
66
1
        SvxZoomStatusBarControl::RegisterControl(SID_ATTR_ZOOM, pModule);
67
1
        SvxZoomSliderControl::RegisterControl(SID_ATTR_ZOOMSLIDER, pModule);
68
1
        SvxModifyControl::RegisterControl(SID_TEXTSTATUS, pModule);
69
1
        XmlSecStatusBarControl::RegisterControl(SID_SIGNATURE, pModule);
70
71
1
        sfx2::sidebar::SidebarChildWindow::RegisterChildWindow(true, pModule);
72
73
1
        SmCmdBoxWrapper::RegisterChildWindow(true);
74
1
    }
75
}
76
77
namespace SmGlobals
78
{
79
    void ensure()
80
27.7k
    {
81
27.7k
        static SmDLL theDll;
82
27.7k
    }
83
}
84
85
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */