15b190011SAndrew Rist /************************************************************** 2*0569cb28Smseidel * 35b190011SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 45b190011SAndrew Rist * or more contributor license agreements. See the NOTICE file 55b190011SAndrew Rist * distributed with this work for additional information 65b190011SAndrew Rist * regarding copyright ownership. The ASF licenses this file 75b190011SAndrew Rist * to you under the Apache License, Version 2.0 (the 85b190011SAndrew Rist * "License"); you may not use this file except in compliance 95b190011SAndrew Rist * with the License. You may obtain a copy of the License at 10*0569cb28Smseidel * 115b190011SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*0569cb28Smseidel * 135b190011SAndrew Rist * Unless required by applicable law or agreed to in writing, 145b190011SAndrew Rist * software distributed under the License is distributed on an 155b190011SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 165b190011SAndrew Rist * KIND, either express or implied. See the License for the 175b190011SAndrew Rist * specific language governing permissions and limitations 185b190011SAndrew Rist * under the License. 19*0569cb28Smseidel * 205b190011SAndrew Rist *************************************************************/ 215b190011SAndrew Rist 225b190011SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_sd.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir 28cdf0e10cSrcweir #include <unotools/moduleoptions.hxx> 29cdf0e10cSrcweir #include "sddll.hxx" 30cdf0e10cSrcweir #include "diactrl.hxx" 31cdf0e10cSrcweir #include "tbx_ww.hxx" 32cdf0e10cSrcweir #include "TextObjectBar.hxx" 33cdf0e10cSrcweir #include "BezierObjectBar.hxx" 34cdf0e10cSrcweir #include "GraphicObjectBar.hxx" 35cdf0e10cSrcweir #include "MediaObjectBar.hxx" 36cdf0e10cSrcweir #include "ImpressViewShellBase.hxx" 37cdf0e10cSrcweir #include "PresentationViewShellBase.hxx" 38cdf0e10cSrcweir #include "OutlineViewShell.hxx" 39cdf0e10cSrcweir #include "PresentationViewShell.hxx" 40cdf0e10cSrcweir #include "OutlineViewShellBase.hxx" 41cdf0e10cSrcweir #include "SlideSorterViewShellBase.hxx" 42cdf0e10cSrcweir #include "DrawViewShell.hxx" 43cdf0e10cSrcweir #include "GraphicViewShell.hxx" 44cdf0e10cSrcweir #include "GraphicViewShellBase.hxx" 45cdf0e10cSrcweir #include "DrawDocShell.hxx" 46cdf0e10cSrcweir #include "GraphicDocShell.hxx" 47cdf0e10cSrcweir #include "SlideSorterViewShell.hxx" 48cdf0e10cSrcweir #include "FactoryIds.hxx" 49cdf0e10cSrcweir #include "sdmod.hxx" 50cdf0e10cSrcweir #include "app.hrc" 51cdf0e10cSrcweir 52cdf0e10cSrcweir namespace sd { namespace ui { namespace table { 53cdf0e10cSrcweir extern void RegisterInterfaces( SfxModule* pMod ); 54cdf0e10cSrcweir } } } 55cdf0e10cSrcweir 56cdf0e10cSrcweir 57cdf0e10cSrcweir /************************************************************************* 58cdf0e10cSrcweir |* Register all Factorys 59cdf0e10cSrcweir \************************************************************************/ 60cdf0e10cSrcweir 61cdf0e10cSrcweir RegisterFactorys()62cdf0e10cSrcweirvoid SdDLL::RegisterFactorys() 63cdf0e10cSrcweir { 64cdf0e10cSrcweir if (SvtModuleOptions().IsImpress()) 65*0569cb28Smseidel { 66*0569cb28Smseidel ::sd::ImpressViewShellBase::RegisterFactory ( 67*0569cb28Smseidel ::sd::IMPRESS_FACTORY_ID); 68*0569cb28Smseidel ::sd::SlideSorterViewShellBase::RegisterFactory ( 69*0569cb28Smseidel ::sd::SLIDE_SORTER_FACTORY_ID); 70*0569cb28Smseidel ::sd::OutlineViewShellBase::RegisterFactory ( 71*0569cb28Smseidel ::sd::OUTLINE_FACTORY_ID); 72*0569cb28Smseidel ::sd::PresentationViewShellBase::RegisterFactory ( 73*0569cb28Smseidel ::sd::PRESENTATION_FACTORY_ID); 74*0569cb28Smseidel } 75cdf0e10cSrcweir if (SvtModuleOptions().IsDraw()) 76*0569cb28Smseidel { 77cdf0e10cSrcweir ::sd::GraphicViewShellBase::RegisterFactory (::sd::DRAW_FACTORY_ID); 78*0569cb28Smseidel } 79cdf0e10cSrcweir } 80cdf0e10cSrcweir 81cdf0e10cSrcweir 82cdf0e10cSrcweir 83cdf0e10cSrcweir /************************************************************************* 84cdf0e10cSrcweir |* Register all Interfaces 85cdf0e10cSrcweir \************************************************************************/ 86cdf0e10cSrcweir RegisterInterfaces()87cdf0e10cSrcweirvoid SdDLL::RegisterInterfaces() 88cdf0e10cSrcweir { 89cdf0e10cSrcweir // Modul 90cdf0e10cSrcweir SfxModule* pMod = SD_MOD(); 91cdf0e10cSrcweir SdModule::RegisterInterface(pMod); 92cdf0e10cSrcweir 93*0569cb28Smseidel // View shell base. 94cdf0e10cSrcweir ::sd::ViewShellBase::RegisterInterface(pMod); 95cdf0e10cSrcweir 96cdf0e10cSrcweir // DocShells 97cdf0e10cSrcweir ::sd::DrawDocShell::RegisterInterface(pMod); 98cdf0e10cSrcweir ::sd::GraphicDocShell::RegisterInterface(pMod); 99cdf0e10cSrcweir 100cdf0e10cSrcweir // Impress ViewShells 101cdf0e10cSrcweir ::sd::DrawViewShell::RegisterInterface(pMod); 102cdf0e10cSrcweir ::sd::OutlineViewShell::RegisterInterface(pMod); 103cdf0e10cSrcweir ::sd::PresentationViewShell::RegisterInterface(pMod); 104cdf0e10cSrcweir 105cdf0e10cSrcweir // Draw ViewShell 106cdf0e10cSrcweir ::sd::GraphicViewShell::RegisterInterface(pMod); 107cdf0e10cSrcweir 108cdf0e10cSrcweir // Impress ObjectShells 109cdf0e10cSrcweir ::sd::BezierObjectBar::RegisterInterface(pMod); 110cdf0e10cSrcweir ::sd::TextObjectBar::RegisterInterface(pMod); 111cdf0e10cSrcweir ::sd::GraphicObjectBar::RegisterInterface(pMod); 112cdf0e10cSrcweir 113cdf0e10cSrcweir // Media ObjectShell 114cdf0e10cSrcweir ::sd::MediaObjectBar::RegisterInterface(pMod); 115cdf0e10cSrcweir 116cdf0e10cSrcweir // Table ObjectShell 117cdf0e10cSrcweir ::sd::ui::table::RegisterInterfaces(pMod); 118cdf0e10cSrcweir 119*0569cb28Smseidel // View shells for the side panes. 120*0569cb28Smseidel ::sd::slidesorter::SlideSorterViewShell::RegisterInterface (pMod); 121cdf0e10cSrcweir } 122