office-gobmx/sd/source/ui/app/sddll1.cxx
Kurt Zenker c208622a01 INTEGRATION: CWS presenterview (1.15.120); FILE MERGED
2008/03/26 10:45:05 cl 1.15.120.3: RESYNC: (1.16-1.17); FILE MERGED
2007/04/19 15:30:35 af 1.15.120.2: RESYNC: (1.15-1.16); FILE MERGED
2007/02/21 13:24:50 af 1.15.120.1: #i74730# Remove unused SlideView and SlideViewShell.
2008-04-03 12:26:00 +00:00

178 lines
5.2 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: sddll1.cxx,v $
*
* $Revision: 1.18 $
*
* last change: $Author: kz $ $Date: 2008-04-03 13:26:00 $
*
* 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
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
#include <svtools/moduleoptions.hxx>
#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_GRAPHIC_OBJECT_BAR_HXX
#include "GraphicObjectBar.hxx"
#endif
#ifndef SD_MEDIA_OBJECT_BAR_HXX
#include "MediaObjectBar.hxx"
#endif
#ifndef SD_IMPRESS_VIEW_SHELL_BASE_HXX
#include "ImpressViewShellBase.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_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"
namespace sd { namespace ui { namespace table {
extern void RegisterInterfaces( SfxModule* pMod );
} } }
/*************************************************************************
|*
|* Register all Factorys
|*
\************************************************************************/
void SdDLL::RegisterFactorys()
{
if (SvtModuleOptions().IsImpress())
{
::sd::ImpressViewShellBase::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::OutlineViewShell::RegisterInterface(pMod);
::sd::PresentationViewShell::RegisterInterface(pMod);
// Draw ViewShell
::sd::GraphicViewShell::RegisterInterface(pMod);
// Impress ObjectShells
::sd::BezierObjectBar::RegisterInterface(pMod);
::sd::TextObjectBar::RegisterInterface(pMod);
::sd::GraphicObjectBar::RegisterInterface(pMod);
// Media ObjectShell
::sd::MediaObjectBar::RegisterInterface(pMod);
// Table ObjectShell
::sd::ui::table::RegisterInterfaces(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();
}