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 
21 #include <sal/log.hxx>
22 
23 #include <sfx2/app.hxx>
24 #include <appdata.hxx>
25 #include <inettbc.hxx>
26 #include <sfx2/stbitem.hxx>
27 #include <sfx2/infobar.hxx>
28 #include <sfx2/navigat.hxx>
29 #include <sfx2/module.hxx>
30 #include <sfx2/viewfrm.hxx>
31 #include <partwnd.hxx>
32 #include <sfx2/sfxsids.hrc>
33 #include <recfloat.hxx>
34 #include <ctrlfactoryimpl.hxx>
35 #include <sfx2/objsh.hxx>
36 #include <sfx2/viewsh.hxx>
37 
38 
Registrations_Impl()39 void SfxApplication::Registrations_Impl()
40 {
41     // Interfaces
42     SfxApplication::RegisterInterface();
43     SfxModule::RegisterInterface();
44     SfxViewFrame::RegisterInterface();
45     SfxObjectShell::RegisterInterface();
46     SfxViewShell::RegisterInterface();
47 
48     // ChildWindows
49     SfxRecordingFloatWrapper_Impl::RegisterChildWindow();
50     SfxPartChildWnd_Impl::RegisterChildWindow();
51     SfxDockingWrapper::RegisterChildWindow();
52     SfxInfoBarContainerChild::RegisterChildWindow( true, nullptr, SfxChildWindowFlags::NEVERHIDE );
53 
54     // Controller
55     SfxToolBoxControl::RegisterControl(SID_REPEAT);
56     SfxURLToolBoxControl_Impl::RegisterControl(SID_OPENURL);
57 }
58 
59 
RegisterToolBoxControl_Impl(SfxModule * pMod,const SfxTbxCtrlFactory & rFact)60 void SfxApplication::RegisterToolBoxControl_Impl( SfxModule *pMod, const SfxTbxCtrlFactory& rFact )
61 {
62     if ( pMod )
63     {
64         pMod->RegisterToolBoxControl( rFact );
65         return;
66     }
67 
68 #ifdef DBG_UTIL
69     for ( size_t n=0; n<pImpl->pTbxCtrlFac->size(); n++ )
70     {
71         SfxTbxCtrlFactory *pF = &(*pImpl->pTbxCtrlFac)[n];
72         if ( pF->nTypeId == rFact.nTypeId &&
73             (pF->nSlotId == rFact.nSlotId || pF->nSlotId == 0) )
74         {
75             SAL_INFO("sfx", "TbxController registration is not clearly defined!");
76         }
77     }
78 #endif
79 
80     pImpl->pTbxCtrlFac->push_back( rFact );
81 }
82 
83 
RegisterStatusBarControl_Impl(SfxModule * pMod,const SfxStbCtrlFactory & rFact)84 void SfxApplication::RegisterStatusBarControl_Impl( SfxModule *pMod, const SfxStbCtrlFactory& rFact )
85 {
86     if ( pMod )
87     {
88         pMod->RegisterStatusBarControl( rFact );
89         return;
90     }
91 
92 #ifdef DBG_UTIL
93     for ( size_t n=0; n<pImpl->pStbCtrlFac->size(); n++ )
94     {
95         SfxStbCtrlFactory *pF = &(*pImpl->pStbCtrlFac)[n];
96         if ( pF->nTypeId == rFact.nTypeId &&
97             (pF->nSlotId == rFact.nSlotId || pF->nSlotId == 0) )
98         {
99             SAL_INFO("sfx", "StbController registration is not clearly defined!");
100         }
101     }
102 #endif
103 
104     pImpl->pStbCtrlFac->push_back( rFact );
105 }
106 
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
108