xref: /AOO41X/main/reportdesign/source/core/api/services.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #include "sal/types.h"
29 #include <cppuhelper/factory.hxx>
30 #include <osl/diagnose.h>
31 #include <cppuhelper/implementationentry.hxx>
32 #include "ReportDefinition.hxx"
33 #include "FormattedField.hxx"
34 #include "FixedText.hxx"
35 #include "ImageControl.hxx"
36 #include "FormatCondition.hxx"
37 #include "ReportEngineJFree.hxx"
38 #include "Function.hxx"
39 #include "Shape.hxx"
40 #include "FixedLine.hxx"
41 
42 /********************************************************************************************/
43 
44 using namespace ::reportdesign;
45 using namespace ::com::sun::star::uno;
46 using namespace ::com::sun::star::lang;
47 using namespace ::com::sun::star::registry;
48 
49 //***************************************************************************************
50 //
51 // registry functions
52 namespace
53 {
54 
55 cppu::ImplementationEntry entries[] = {
56 	{ &OReportDefinition::create, &OReportDefinition::getImplementationName_Static, &OReportDefinition::getSupportedServiceNames_Static,
57 		&cppu::createSingleComponentFactory, 0, 0 },
58 	{ &OFormattedField::create, &OFormattedField::getImplementationName_Static, &OFormattedField::getSupportedServiceNames_Static,
59 		&cppu::createSingleComponentFactory, 0, 0 },
60     { &OFixedText::create, &OFixedText::getImplementationName_Static, &OFixedText::getSupportedServiceNames_Static,
61 		&cppu::createSingleComponentFactory, 0, 0 },
62     { &OImageControl::create, &OImageControl::getImplementationName_Static, &OImageControl::getSupportedServiceNames_Static,
63 		&cppu::createSingleComponentFactory, 0, 0 },
64     { &OFormatCondition::create, &OFormatCondition::getImplementationName_Static, &OFormatCondition::getSupportedServiceNames_Static,
65 		&cppu::createSingleComponentFactory, 0, 0 },
66     { &OReportEngineJFree::create, &OReportEngineJFree::getImplementationName_Static, &OReportEngineJFree::getSupportedServiceNames_Static,
67 		&cppu::createSingleComponentFactory, 0, 0 },
68     { &OFunction::create, &OFunction::getImplementationName_Static, &OFunction::getSupportedServiceNames_Static,
69 		&cppu::createSingleComponentFactory, 0, 0 },
70     { &OShape::create, &OShape::getImplementationName_Static, &OShape::getSupportedServiceNames_Static,
71 		&cppu::createSingleComponentFactory, 0, 0 },
72     { &OFixedLine::create, &OFixedLine::getImplementationName_Static, &OFixedLine::getSupportedServiceNames_Static,
73 	&cppu::createSingleComponentFactory, 0, 0 },
74 	{ 0, 0, 0, 0, 0, 0 }
75 };
76 }
77 
78 extern "C"
79 {
80 SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
81     char const * implName, void * serviceManager, void * registryKey)
82 {
83     return cppu::component_getFactoryHelper(
84         implName, serviceManager, registryKey, entries);
85 }
86 
87 SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
88     char const ** envTypeName, uno_Environment **)
89 {
90     *envTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
91 }
92 
93 } // extern "C"
94