office-gobmx/extensions/source/svg/svguno.cxx

134 lines
4.8 KiB
C++
Raw Normal View History

2000-09-18 10:18:56 -05:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 10:18:56 -05:00
*
* $RCSfile: svguno.cxx,v $
2000-09-18 10:18:56 -05:00
*
* $Revision: 1.4 $
2000-09-18 10:18:56 -05:00
*
* last change: $Author: rt $ $Date: 2005-09-08 20:41:54 $
2000-09-18 10:18:56 -05:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 10:18:56 -05:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 10:18:56 -05:00
*
* 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.
2000-09-18 10:18:56 -05:00
*
* 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.
2000-09-18 10:18:56 -05:00
*
* 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
2000-09-18 10:18:56 -05:00
*
************************************************************************/
#include "svgcom.hxx"
#include "svgwriter.hxx"
#include "svgprinter.hxx"
#include <cppuhelper/factory.hxx>
#include <uno/mapping.hxx>
// -------------------
// - factory methods -
// -------------------
static REF( NMSP_UNO::XInterface ) SAL_CALL create_SVGWriter( const REF( NMSP_LANG::XMultiServiceFactory )& rxFact )
{
return REF( NMSP_UNO::XInterface )( *new SVGWriter( rxFact ) );
}
// -----------------------------------------------------------------------------
static REF( NMSP_UNO::XInterface ) SAL_CALL create_SVGPrinter( const REF( NMSP_LANG::XMultiServiceFactory )& rxFact )
{
return REF( NMSP_UNO::XInterface )( *new SVGPrinter( rxFact ) );
}
// ------------------------------------------
// - component_getImplementationEnvironment -
// ------------------------------------------
extern "C" void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv )
{
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
}
// -----------------------
// - component_writeInfo -
// -----------------------
extern "C" sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey )
{
sal_Bool bRet = sal_False;
if( pRegistryKey )
{
try
{
REF( NMSP_REGISTRY::XRegistryKey ) xNewKey1(
static_cast< NMSP_REGISTRY::XRegistryKey* >( pRegistryKey )->createKey(
B2UCONST( "/com.sun.star.comp.extensions.SVGWriter/UNO/SERVICES/com.sun.star.svg.SVGWriter" ) ) );
REF( NMSP_REGISTRY::XRegistryKey ) xNewKey2(
static_cast< NMSP_REGISTRY::XRegistryKey* >( pRegistryKey )->createKey(
B2UCONST( "/com.sun.star.comp.extensions.SVGPrinter/UNO/SERVICES/com.sun.star.svg.SVGPrinter" ) ) );
bRet = sal_True;
}
catch( NMSP_REGISTRY::InvalidRegistryException& )
{
2001-03-23 04:57:37 -06:00
OSL_ENSURE( sal_False, "### InvalidRegistryException!" );
2000-09-18 10:18:56 -05:00
}
}
return bRet;
}
// ------------------------
// - component_getFactory -
// ------------------------
extern "C" void* SAL_CALL component_getFactory( const sal_Char* pImplName, void* pServiceManager, void* pRegistryKey )
{
REF( NMSP_LANG::XSingleServiceFactory ) xFactory;
void* pRet = 0;
if( rtl_str_compare( pImplName, "com.sun.star.comp.extensions.SVGWriter" ) == 0 )
{
const NMSP_RTL::OUString aServiceName( B2UCONST( "com.sun.star.svg.SVGWriter" ) );
xFactory = REF( NMSP_LANG::XSingleServiceFactory )( NMSP_CPPU::createSingleFactory(
reinterpret_cast< NMSP_LANG::XMultiServiceFactory* >( pServiceManager ),
B2UCONST( "com.sun.star.comp.extensions.SVGWriter" ),
create_SVGWriter, SEQ( NMSP_RTL::OUString )( &aServiceName, 1 ) ) );
}
else if( rtl_str_compare( pImplName, "com.sun.star.comp.extensions.SVGPrinter" ) == 0 )
{
const NMSP_RTL::OUString aServiceName( B2UCONST( "com.sun.star.svg.SVGPrinter" ) );
xFactory = REF( NMSP_LANG::XSingleServiceFactory )( NMSP_CPPU::createSingleFactory(
reinterpret_cast< NMSP_LANG::XMultiServiceFactory* >( pServiceManager ),
B2UCONST( "com.sun.star.comp.extensions.SVGPrinter" ),
create_SVGPrinter, SEQ( NMSP_RTL::OUString )( &aServiceName, 1 ) ) );
}
if( xFactory.is() )
{
xFactory->acquire();
pRet = xFactory.get();
}
return pRet;
}