bump product version to 5.0.4.1
[LibreOffice.git] / svx / source / core / coreservices.cxx
blob6e6118e8855315caf21d54eb3ddc8e006d8dca1f
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 .
20 /** this file contains the uno service registrations for all services in the svxcore lib */
23 #include "sal/types.h"
24 #include "osl/diagnose.h"
25 #include "cppuhelper/factory.hxx"
27 #include <coreservices.hxx>
29 using namespace com::sun::star::uno;
30 using namespace com::sun::star::lang;
31 using namespace com::sun::star::registry;
33 extern "C"
36 SAL_DLLPUBLIC_EXPORT void * SAL_CALL svxcore_component_getFactory (
37 const sal_Char * pImplName, void * pServiceManager, void * )
39 void * pRet = 0;
40 if( pServiceManager )
42 Reference< XSingleServiceFactory > xFactory;
44 if( svx::ExtrusionDepthController_getImplementationName().equalsAscii( pImplName ) )
46 xFactory = ::cppu::createSingleFactory(
47 static_cast< XMultiServiceFactory * >( pServiceManager ),
48 svx::ExtrusionDepthController_getImplementationName(),
49 svx::ExtrusionDepthController_createInstance,
50 svx::ExtrusionDepthController_getSupportedServiceNames() );
52 else if( svx::ExtrusionDirectionControl_getImplementationName().equalsAscii( pImplName ) )
54 xFactory = ::cppu::createSingleFactory(
55 static_cast< XMultiServiceFactory * >( pServiceManager ),
56 svx::ExtrusionDirectionControl_getImplementationName(),
57 svx::ExtrusionDirectionControl_createInstance,
58 svx::ExtrusionDirectionControl_getSupportedServiceNames() );
60 else if( svx::ExtrusionLightingControl_getImplementationName().equalsAscii( pImplName ) )
62 xFactory = ::cppu::createSingleFactory(
63 static_cast< XMultiServiceFactory * >( pServiceManager ),
64 svx::ExtrusionLightingControl_getImplementationName(),
65 svx::ExtrusionLightingControl_createInstance,
66 svx::ExtrusionLightingControl_getSupportedServiceNames() );
68 else if( svx::ExtrusionSurfaceControl_getImplementationName().equalsAscii( pImplName ) )
70 xFactory = ::cppu::createSingleFactory(
71 static_cast< XMultiServiceFactory * >( pServiceManager ),
72 svx::ExtrusionSurfaceControl_getImplementationName(),
73 svx::ExtrusionSurfaceControl_createInstance,
74 svx::ExtrusionSurfaceControl_getSupportedServiceNames() );
76 else if( svx::FontworkAlignmentControl_getImplementationName().equalsAscii( pImplName ) )
78 xFactory = ::cppu::createSingleFactory(
79 static_cast< XMultiServiceFactory * >( pServiceManager ),
80 svx::FontworkAlignmentControl_getImplementationName(),
81 svx::FontworkAlignmentControl_createInstance,
82 svx::FontworkAlignmentControl_getSupportedServiceNames() );
84 else if( svx::FontworkCharacterSpacingControl_getImplementationName().equalsAscii( pImplName ) )
86 xFactory = ::cppu::createSingleFactory(
87 static_cast< XMultiServiceFactory * >( pServiceManager ),
88 svx::FontworkCharacterSpacingControl_getImplementationName(),
89 svx::FontworkCharacterSpacingControl_createInstance,
90 svx::FontworkCharacterSpacingControl_getSupportedServiceNames() );
91 } if( xFactory.is())
93 xFactory->acquire();
94 pRet = xFactory.get();
98 return pRet;
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */