Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : /** this file contains the uno service registrations for all services in the svxcore lib */
21 :
22 :
23 : #include "sal/types.h"
24 : #include "osl/diagnose.h"
25 : #include "cppuhelper/factory.hxx"
26 :
27 : #include <coreservices.hxx>
28 :
29 : using namespace com::sun::star::uno;
30 : using namespace com::sun::star::lang;
31 : using namespace com::sun::star::registry;
32 :
33 : extern "C"
34 : {
35 :
36 0 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL svxcore_component_getFactory (
37 : const sal_Char * pImplName, void * pServiceManager, void * )
38 : {
39 0 : void * pRet = 0;
40 0 : if( pServiceManager )
41 : {
42 0 : Reference< XSingleServiceFactory > xFactory;
43 :
44 0 : if( ::svx::ExtrusionDepthController_getImplementationName().equalsAscii( pImplName ) )
45 : {
46 0 : xFactory = ::cppu::createSingleFactory(
47 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
48 : ::svx::ExtrusionDepthController_getImplementationName(),
49 : ::svx::ExtrusionDepthController_createInstance,
50 0 : ::svx::ExtrusionDepthController_getSupportedServiceNames() );
51 : }
52 0 : else if( ::svx::ExtrusionDirectionControl_getImplementationName().equalsAscii( pImplName ) )
53 : {
54 0 : xFactory = ::cppu::createSingleFactory(
55 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
56 : ::svx::ExtrusionDirectionControl_getImplementationName(),
57 : ::svx::ExtrusionDirectionControl_createInstance,
58 0 : ::svx::ExtrusionDirectionControl_getSupportedServiceNames() );
59 : }
60 0 : else if( ::svx::ExtrusionLightingControl_getImplementationName().equalsAscii( pImplName ) )
61 : {
62 0 : xFactory = ::cppu::createSingleFactory(
63 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
64 : ::svx::ExtrusionLightingControl_getImplementationName(),
65 : ::svx::ExtrusionLightingControl_createInstance,
66 0 : ::svx::ExtrusionLightingControl_getSupportedServiceNames() );
67 : }
68 0 : else if( ::svx::ExtrusionSurfaceControl_getImplementationName().equalsAscii( pImplName ) )
69 : {
70 0 : xFactory = ::cppu::createSingleFactory(
71 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
72 : ::svx::ExtrusionSurfaceControl_getImplementationName(),
73 : ::svx::ExtrusionSurfaceControl_createInstance,
74 0 : ::svx::ExtrusionSurfaceControl_getSupportedServiceNames() );
75 : }
76 0 : else if( ::svx::FontworkAlignmentControl_getImplementationName().equalsAscii( pImplName ) )
77 : {
78 0 : xFactory = ::cppu::createSingleFactory(
79 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
80 : ::svx::FontworkAlignmentControl_getImplementationName(),
81 : ::svx::FontworkAlignmentControl_createInstance,
82 0 : ::svx::FontworkAlignmentControl_getSupportedServiceNames() );
83 : }
84 0 : else if( ::svx::FontworkCharacterSpacingControl_getImplementationName().equalsAscii( pImplName ) )
85 : {
86 0 : xFactory = ::cppu::createSingleFactory(
87 : reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
88 : ::svx::FontworkCharacterSpacingControl_getImplementationName(),
89 : ::svx::FontworkCharacterSpacingControl_createInstance,
90 0 : ::svx::FontworkCharacterSpacingControl_getSupportedServiceNames() );
91 0 : } if( xFactory.is())
92 : {
93 0 : xFactory->acquire();
94 0 : pRet = xFactory.get();
95 0 : }
96 : }
97 :
98 0 : return pRet;
99 : }
100 :
101 : }
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|