#include <rtl/ustring.hxx>
#include <uno/dispatcher.h>
#include <rtl/unload.h>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/lang/XSingleComponentFactory.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/registry/XRegistryKey.hpp>
#include <cppuhelper/cppuhelperdllapi.h>
Go to the source code of this file.
|
typedef struct _uno_Environment | uno_Environment |
|
typedef void(* | component_getImplementationEnvironmentFunc) (const sal_Char **ppEnvTypeName, uno_Environment **ppEnv) |
| Function pointer declaration. More...
|
|
typedef void(* | component_getImplementationEnvironmentExtFunc) (sal_Char const **ppEnvTypeName, uno_Environment **ppEnv, sal_Char const *pImplName, uno_Environment *pTargetEnv) |
| Function pointer declaration. More...
|
|
typedef const sal_Char *(* | component_getDescriptionFunc) (void) |
| Function pointer declaration. More...
|
|
typedef sal_Bool(* | component_writeInfoFunc) (void *pServiceManager, void *pRegistryKey) |
| Function pointer declaration. More...
|
|
typedef void *(* | component_getFactoryFunc) (const sal_Char *pImplName, void *pServiceManager, void *pRegistryKey) |
| Function pointer declaration. More...
|
|
typedef ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >(*) ComponentFactoryFunc(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const &xContext) SAL_THROW((CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleComponentFactory > | cppu::createSingleComponentFactory(ComponentFactoryFunc fptr,::rtl::OUString const &rImplementationName,::com::sun::star::uno::Sequence< ::rtl::OUString > const &rServiceNames, rtl_ModuleCount *pModCount=0) SAL_THROW(()) |
| Function pointer declaration. More...
|
|
typedef ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >(* | cppu::ComponentInstantiation) (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager) |
| Deprecated. More...
|
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleComponentFactory > | cppu::createOneInstanceComponentFactory (ComponentFactoryFunc fptr,::rtl::OUString const &rImplementationName,::com::sun::star::uno::Sequence< ::rtl::OUString > const &rServiceNames, rtl_ModuleCount *pModCount=0) SAL_THROW(()) |
| Creates a single service factory which holds the instance created only once. More...
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > | cppu::createSingleFactory (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager, const ::rtl::OUString &rImplementationName, ComponentInstantiation pCreateFunction, const ::com::sun::star::uno::Sequence< ::rtl::OUString > &rServiceNames, rtl_ModuleCount *pModCount=0) SAL_THROW(()) |
| Deprecated. More...
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > | cppu::createFactoryProxy (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager, const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > &rFactory) SAL_THROW(()) |
| Deprecated. More...
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > | cppu::createOneInstanceFactory (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager, const ::rtl::OUString &rComponentName, ComponentInstantiation pCreateFunction, const ::com::sun::star::uno::Sequence< ::rtl::OUString > &rServiceNames, rtl_ModuleCount *pModCount=0) SAL_THROW(()) |
| Deprecated. More...
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > | cppu::createSingleRegistryFactory (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager, const ::rtl::OUString &rImplementationName, const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey > &rImplementationKey) SAL_THROW(()) |
| Deprecated. More...
|
|
CPPUHELPER_DLLPUBLIC::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > | cppu::createOneInstanceRegistryFactory (const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &rServiceManager, const ::rtl::OUString &rComponentName, const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey > &rImplementationKey) SAL_THROW(()) |
| Deprecated. More...
|
|
#define COMPONENT_GETDESCRIPTION "component_getDescription" |
#define COMPONENT_GETENV "component_getImplementationEnvironment" |
#define COMPONENT_GETENVEXT "component_getImplementationEnvironmentExt" |
#define COMPONENT_GETFACTORY "component_getFactory" |
#define COMPONENT_WRITEINFO "component_writeInfo" |
typedef const sal_Char*( * component_getDescriptionFunc) (void) |
Function pointer declaration.
Function retrieves a component description.
- Returns
- an XML formatted string containing a short component description
- Deprecated:
typedef void*( * component_getFactoryFunc) (const sal_Char *pImplName, void *pServiceManager, void *pRegistryKey) |
Function pointer declaration.
Retrieves a factory to create component instances.
- Parameters
-
pImplName | desired implementation name |
pServiceManager | a service manager (the type is XMultiServiceFactory that can be used by the environment returned by component_getImplementationEnvironment) |
pRegistryKey | a registry key (the type is XRegistryKey that can be used by the environment returned by component_getImplementationEnvironment) |
- Returns
- acquired component factory (the type is lang::XSingleComponentFactory or lang::XSingleServiceFactory to be used by the environment returned by component_getImplementationEnvironment)
Function pointer declaration.
Function determines the environment of the component implementation, i.e. the compiler. If the environment is NOT session specific (needs no additional context), then this function should return the environment type name and leave ppEnv (to 0).
- Parameters
-
ppEnvTypeName | environment type name; string must be a constant |
ppEnv | function returns an environment if the environment is session specific, i.e. has special context |
pImplName | |
typedef void( * component_getImplementationEnvironmentFunc) (const sal_Char **ppEnvTypeName, uno_Environment **ppEnv) |
Function pointer declaration.
Function determines the environment of the component implementation, i.e. which compiler compiled it. If the environment is NOT session specific (needs no additional context), then this function should return the environment type name and leave ppEnv (to 0).
- Parameters
-
ppEnvTypeName | environment type name; string must be constant |
ppEnv | function returns its environment if the environment is session specific, i.e. has special context |
typedef sal_Bool( * component_writeInfoFunc) (void *pServiceManager, void *pRegistryKey) |
Function pointer declaration.
- Deprecated:
- component_writeInfo should no longer be used in new components
Function writes component registry info, at least writing the supported service names.
- Parameters
-
pServiceManager | a service manager (the type is an XMultiServiceFactory that can be used by the environment returned by component_getImplementationEnvironment) |
pRegistryKey | a registry key (the type is XRegistryKey that can be used by the environment returned by component_getImplementationEnvironment) |
- Returns
- true if everything went fine