/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include //============================================================================= // Add new include line to use new services. //============================================================================= #include "framecontrol.hxx" #include "progressbar.hxx" #include "progressmonitor.hxx" #include "statusindicator.hxx" //============================================================================= //______________________________________________________________________________________________________________ // namespaces //______________________________________________________________________________________________________________ using namespace ::rtl ; using namespace ::cppu ; using namespace ::unocontrols ; using namespace ::com::sun::star::uno ; using namespace ::com::sun::star::container ; using namespace ::com::sun::star::lang ; using namespace ::com::sun::star::registry ; //______________________________________________________________________________________________________________ // macros //______________________________________________________________________________________________________________ //****************************************************************************************************************************** #define CREATEINSTANCE(CLASS) \ \ static Reference< XInterface > SAL_CALL CLASS##_createInstance ( const Reference< XMultiServiceFactory >& rServiceManager ) throw ( Exception ) \ { \ return Reference< XInterface >( *(OWeakObject*)(new CLASS( comphelper::getComponentContext(rServiceManager) )) ); \ } //****************************************************************************************************************************** #define CREATEFACTORY_SINGLE(CLASS) \ \ /* Create right factory ... */ \ xFactory = Reference< XSingleServiceFactory > \ ( \ cppu::createSingleFactory ( xServiceManager , \ CLASS::impl_getStaticImplementationName () , \ CLASS##_createInstance , \ CLASS::impl_getStaticSupportedServiceNames () ) \ ) ; \ //****************************************************************************************************************************** #define IF_NAME_CREATECOMPONENTFACTORY_SINGLE(CLASS) \ \ if ( CLASS::impl_getStaticImplementationName().equals( OUString::createFromAscii( pImplementationName ) ) ) \ { \ CREATEFACTORY_SINGLE ( CLASS ) \ } //______________________________________________________________________________________________________________ // declare functions to create a new instance of service //______________________________________________________________________________________________________________ //============================================================================= // Add new macro line to use new services. // // !!! ATTENTION !!! // Write no ";" at end of line! (see macro) //============================================================================= CREATEINSTANCE ( FrameControl ) CREATEINSTANCE ( ProgressBar ) CREATEINSTANCE ( ProgressMonitor ) CREATEINSTANCE ( StatusIndicator ) //============================================================================= //______________________________________________________________________________________________________________ // create right component factory //______________________________________________________________________________________________________________ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL ctl_component_getFactory( const sal_Char* pImplementationName, void* pServiceManager , void* /*pRegistryKey*/ ) { // Set default return value for this operation - if it failed. void* pReturn = NULL ; if ( ( pImplementationName != NULL ) && ( pServiceManager != NULL ) ) { // Define variables which are used in following macros. Reference< XSingleServiceFactory > xFactory ; Reference< XMultiServiceFactory > xServiceManager( reinterpret_cast< XMultiServiceFactory* >( pServiceManager ) ) ; //============================================================================= // Add new macro line to handle new service. // // !!! ATTENTION !!! // Write no ";" at end of line and dont forget "else" ! (see macro) //============================================================================= IF_NAME_CREATECOMPONENTFACTORY_SINGLE( FrameControl ) else IF_NAME_CREATECOMPONENTFACTORY_SINGLE( ProgressBar ) else IF_NAME_CREATECOMPONENTFACTORY_SINGLE( ProgressMonitor ) else IF_NAME_CREATECOMPONENTFACTORY_SINGLE( StatusIndicator ) //============================================================================= // Factory is valid - service was found. if ( xFactory.is() ) { xFactory->acquire(); pReturn = xFactory.get(); } } // Return with result of this operation. return pReturn ; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */