tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / sfx2 / source / appl / appreg.cxx
blob662e485b629dda089e91d70c2bbc8acb98a7a7b6
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 .
21 #include <sal/log.hxx>
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/module.hxx>
29 #include <sfx2/viewfrm.hxx>
30 #include <partwnd.hxx>
31 #include <sfx2/sfxsids.hrc>
32 #include <recfloat.hxx>
33 #include <sfx2/objsh.hxx>
34 #include <sfx2/viewsh.hxx>
37 void SfxApplication::Registrations_Impl()
39 // Interfaces
40 SfxApplication::RegisterInterface();
41 SfxModule::RegisterInterface();
42 SfxViewFrame::RegisterInterface();
43 SfxObjectShell::RegisterInterface();
44 SfxViewShell::RegisterInterface();
46 // ChildWindows
47 SfxRecordingFloatWrapper_Impl::RegisterChildWindow();
48 SfxPartChildWnd_Impl::RegisterChildWindow();
49 SfxDockingWrapper::RegisterChildWindow();
50 SfxInfoBarContainerChild::RegisterChildWindow( true, nullptr, SfxChildWindowFlags::NEVERHIDE );
52 // Controller
53 SfxToolBoxControl::RegisterControl(SID_REPEAT);
54 SfxURLToolBoxControl_Impl::RegisterControl(SID_OPENURL);
58 void SfxApplication::RegisterToolBoxControl_Impl( SfxModule *pMod, const SfxTbxCtrlFactory& rFact )
60 if ( pMod )
62 pMod->RegisterToolBoxControl( rFact );
63 return;
66 #ifdef DBG_UTIL
67 for ( size_t n=0; n<pImpl->maTbxCtrlFactories.size(); n++ )
69 SfxTbxCtrlFactory *pF = &pImpl->maTbxCtrlFactories[n];
70 if ( pF->nTypeId == rFact.nTypeId &&
71 (pF->nSlotId == rFact.nSlotId || pF->nSlotId == 0) )
73 SAL_INFO("sfx", "TbxController registration is not clearly defined!");
76 #endif
78 pImpl->maTbxCtrlFactories.push_back( rFact );
82 void SfxApplication::RegisterStatusBarControl_Impl( SfxModule *pMod, const SfxStbCtrlFactory& rFact )
84 if ( pMod )
86 pMod->RegisterStatusBarControl( rFact );
87 return;
90 #ifdef DBG_UTIL
91 for ( size_t n=0; n<pImpl->maStbCtrlFactories.size(); n++ )
93 SfxStbCtrlFactory *pF = &pImpl->maStbCtrlFactories[n];
94 if ( pF->nTypeId == rFact.nTypeId &&
95 (pF->nSlotId == rFact.nSlotId || pF->nSlotId == 0) )
97 SAL_INFO("sfx", "StbController registration is not clearly defined!");
100 #endif
102 pImpl->maStbCtrlFactories.push_back( rFact );
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */