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 6 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL svxcore_component_getFactory (
37 : const sal_Char * pImplName, void * pServiceManager, void * )
38 : {
39 6 : void * pRet = 0;
40 6 : if( pServiceManager )
41 : {
42 6 : Reference< XSingleServiceFactory > xFactory;
43 :
44 6 : if( svx::ExtrusionDepthController_getImplementationName().equalsAscii( pImplName ) )
45 : {
46 2 : xFactory = ::cppu::createSingleFactory(
47 : static_cast< XMultiServiceFactory * >( pServiceManager ),
48 : svx::ExtrusionDepthController_getImplementationName(),
49 : svx::ExtrusionDepthController_createInstance,
50 1 : svx::ExtrusionDepthController_getSupportedServiceNames() );
51 : }
52 5 : else if( svx::ExtrusionDirectionControl_getImplementationName().equalsAscii( pImplName ) )
53 : {
54 2 : xFactory = ::cppu::createSingleFactory(
55 : static_cast< XMultiServiceFactory * >( pServiceManager ),
56 : svx::ExtrusionDirectionControl_getImplementationName(),
57 : svx::ExtrusionDirectionControl_createInstance,
58 1 : svx::ExtrusionDirectionControl_getSupportedServiceNames() );
59 : }
60 4 : else if( svx::ExtrusionLightingControl_getImplementationName().equalsAscii( pImplName ) )
61 : {
62 2 : xFactory = ::cppu::createSingleFactory(
63 : static_cast< XMultiServiceFactory * >( pServiceManager ),
64 : svx::ExtrusionLightingControl_getImplementationName(),
65 : svx::ExtrusionLightingControl_createInstance,
66 1 : svx::ExtrusionLightingControl_getSupportedServiceNames() );
67 : }
68 3 : else if( svx::ExtrusionSurfaceControl_getImplementationName().equalsAscii( pImplName ) )
69 : {
70 2 : xFactory = ::cppu::createSingleFactory(
71 : static_cast< XMultiServiceFactory * >( pServiceManager ),
72 : svx::ExtrusionSurfaceControl_getImplementationName(),
73 : svx::ExtrusionSurfaceControl_createInstance,
74 1 : svx::ExtrusionSurfaceControl_getSupportedServiceNames() );
75 : }
76 2 : else if( svx::FontworkAlignmentControl_getImplementationName().equalsAscii( pImplName ) )
77 : {
78 2 : xFactory = ::cppu::createSingleFactory(
79 : static_cast< XMultiServiceFactory * >( pServiceManager ),
80 : svx::FontworkAlignmentControl_getImplementationName(),
81 : svx::FontworkAlignmentControl_createInstance,
82 1 : svx::FontworkAlignmentControl_getSupportedServiceNames() );
83 : }
84 1 : else if( svx::FontworkCharacterSpacingControl_getImplementationName().equalsAscii( pImplName ) )
85 : {
86 2 : xFactory = ::cppu::createSingleFactory(
87 : static_cast< XMultiServiceFactory * >( pServiceManager ),
88 : svx::FontworkCharacterSpacingControl_getImplementationName(),
89 : svx::FontworkCharacterSpacingControl_createInstance,
90 1 : svx::FontworkCharacterSpacingControl_getSupportedServiceNames() );
91 6 : } if( xFactory.is())
92 : {
93 6 : xFactory->acquire();
94 6 : pRet = xFactory.get();
95 6 : }
96 : }
97 :
98 6 : return pRet;
99 : }
100 :
101 : }
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|