/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: sddll1.cxx,v $ * * $Revision: 1.13 $ * * last change: $Author: rt $ $Date: 2005-09-09 03:44:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #pragma hdrstop #include #include "sddll.hxx" #include "diactrl.hxx" #include "tbx_ww.hxx" #ifndef SD_TEXT_OBJECT_BAR_HXX #include "TextObjectBar.hxx" #endif #ifndef SD_BEZIER_OBJECT_BAR_HXX #include "BezierObjectBar.hxx" #endif #ifndef SD_GLUE_POINTS_OBJECT_BAR_HXX #include "GluePointsObjectBar.hxx" #endif #ifndef SD_GRAPHIC_OBJECT_BAR_HXX #include "GraphicObjectBar.hxx" #endif #ifndef SD_MEDIA_OBJECT_BAR_HXX #include "MediaObjectBar.hxx" #endif #ifndef SD_DRAW_OBJECT_BAR_HXX #include "DrawObjectBar.hxx" #endif #ifndef SD_IMPRESS_OBJECT_BAR_HXX #include "ImpressObjectBar.hxx" #endif #ifndef SD_VIEW_SHELL_BASE_HXX #include "ViewShellBase.hxx" #endif #ifndef SD_PRESENTATION_VIEW_SHELL_BASE_HXX #include "PresentationViewShellBase.hxx" #endif #ifndef SD_OUTLINE_VIEW_SHELL_HXX #include "OutlineViewShell.hxx" #endif #ifndef SD_SLIDE_VIEW_SHELL_HXX #include "SlideViewShell.hxx" #endif #ifndef SD_PRESENTATION_VIEW_SHELL_HXX #include "PresentationViewShell.hxx" #endif #ifndef SD_OUTLINE_VIEW_SHELL_BASE_HXX #include "OutlineViewShellBase.hxx" #endif #ifndef SD_SLIDE_SORTER_VIEW_SHELL_BASE_HXX #include "SlideSorterViewShellBase.hxx" #endif #ifndef SD_DRAW_VIEW_SHELL_HXX #include "DrawViewShell.hxx" #endif #ifndef SD_GRAPHIC_VIEW_SHELL_HXX #include "GraphicViewShell.hxx" #endif #ifndef SD_GRAPHIC_VIEW_SHELL_BASE_HXX #include "GraphicViewShellBase.hxx" #endif #ifndef SD_DRAW_DOC_SHELL_HXX #include "DrawDocShell.hxx" #endif #ifndef SD_GRAPHIC_DOC_SHELL_HXX #include "GraphicDocShell.hxx" #endif #ifndef SD_SLIDEBROWSER_SLIDE_SORTER_VIEW_SHELL_HXX #include "SlideSorterViewShell.hxx" #endif #ifndef SD_SLIDEBROWSER_TASK_PANE_VIEW_SHELL_HXX #include "TaskPaneViewShell.hxx" #endif #ifndef SD_FACTORY_IDS_HXX #include "FactoryIds.hxx" #endif #include "sdmod.hxx" #include "app.hrc" /************************************************************************* |* |* Register all Factorys |* \************************************************************************/ void SdDLL::RegisterFactorys() { if (SvtModuleOptions().IsImpress()) { ::sd::ViewShellBase::RegisterFactory ( ::sd::IMPRESS_FACTORY_ID); ::sd::SlideSorterViewShellBase::RegisterFactory ( ::sd::SLIDE_SORTER_FACTORY_ID); ::sd::OutlineViewShellBase::RegisterFactory ( ::sd::OUTLINE_FACTORY_ID); ::sd::PresentationViewShellBase::RegisterFactory ( ::sd::PRESENTATION_FACTORY_ID); } if (SvtModuleOptions().IsDraw()) { ::sd::GraphicViewShellBase::RegisterFactory (::sd::DRAW_FACTORY_ID); } } /************************************************************************* |* |* Register all Interfaces |* \************************************************************************/ void SdDLL::RegisterInterfaces() { // Modul SfxModule* pMod = SD_MOD(); SdModule::RegisterInterface(pMod); // View shell base. ::sd::ViewShellBase::RegisterInterface(pMod); // DocShells ::sd::DrawDocShell::RegisterInterface(pMod); ::sd::GraphicDocShell::RegisterInterface(pMod); // Impress ViewShells ::sd::DrawViewShell::RegisterInterface(pMod); ::sd::SlideViewShell::RegisterInterface(pMod); ::sd::OutlineViewShell::RegisterInterface(pMod); ::sd::PresentationViewShell::RegisterInterface(pMod); // Draw ViewShell ::sd::GraphicViewShell::RegisterInterface(pMod); // Impress ObjectShells ::sd::ImpressObjectBar::RegisterInterface(pMod); ::sd::BezierObjectBar::RegisterInterface(pMod); ::sd::GluePointsObjectBar::RegisterInterface(pMod); ::sd::TextObjectBar::RegisterInterface(pMod); ::sd::GraphicObjectBar::RegisterInterface(pMod); // Draw ObjectShell ::sd::DrawObjectBar::RegisterInterface(pMod); // Media ObjectShell ::sd::MediaObjectBar::RegisterInterface(pMod); // View shells for the side panes. ::sd::slidesorter::SlideSorterViewShell::RegisterInterface (pMod); ::sd::toolpanel::TaskPaneViewShell::RegisterInterface(pMod); // Tell the task pane view shell to register the interfaces of its // controls. ::sd::toolpanel::TaskPaneViewShell::RegisterControls(); }