2004-02-25 10:39:05 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* $RCSfile: uielementfactorymanager.hxx,v $
|
|
|
|
* $Revision: 1.7 $
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
2008-04-11 01:47:06 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-02-25 10:39:05 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __FRAMEWORK_UIFACTORY_UIELEMENTFACTORYMANAGER_HXX_
|
|
|
|
#define __FRAMEWORK_UIFACTORY_UIELEMENTFACTORYMANAGER_HXX_
|
|
|
|
|
|
|
|
/** Attention: stl headers must(!) be included at first. Otherwhise it can make trouble
|
|
|
|
with solaris headers ...
|
|
|
|
*/
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
// my own includes
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
#include <threadhelp/threadhelpbase.hxx>
|
|
|
|
#include <macros/generic.hxx>
|
|
|
|
#include <macros/xinterface.hxx>
|
|
|
|
#include <macros/xtypeprovider.hxx>
|
|
|
|
#include <macros/xserviceinfo.hxx>
|
|
|
|
#include <stdtypes.h>
|
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
// interface includes
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XTypeProvider.hpp>
|
2005-03-01 12:33:42 -06:00
|
|
|
#include <com/sun/star/ui/XUIElementFactory.hpp>
|
|
|
|
#include <com/sun/star/ui/XUIElementFactoryRegistration.hpp>
|
|
|
|
#include "com/sun/star/frame/XModuleManager.hpp"
|
2004-02-25 10:39:05 -06:00
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
// other includes
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
#include <cppuhelper/weak.hxx>
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
|
|
|
|
namespace framework
|
|
|
|
{
|
|
|
|
|
|
|
|
class ConfigurationAccess_UIElementFactoryManager;
|
|
|
|
class UIElementFactoryManager : public com::sun::star::lang::XTypeProvider ,
|
|
|
|
public com::sun::star::lang::XServiceInfo ,
|
2005-03-01 12:33:42 -06:00
|
|
|
public ::com::sun::star::ui::XUIElementFactory ,
|
|
|
|
public ::com::sun::star::ui::XUIElementFactoryRegistration ,
|
2004-02-25 10:39:05 -06:00
|
|
|
private ThreadHelpBase , // Struct for right initalization of mutex member! Must be first of baseclasses.
|
|
|
|
public ::cppu::OWeakObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UIElementFactoryManager( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceManager );
|
|
|
|
virtual ~UIElementFactoryManager();
|
|
|
|
|
|
|
|
// XInterface, XTypeProvider, XServiceInfo
|
2006-06-19 05:08:13 -05:00
|
|
|
FWK_DECLARE_XINTERFACE
|
|
|
|
FWK_DECLARE_XTYPEPROVIDER
|
2004-02-25 10:39:05 -06:00
|
|
|
DECLARE_XSERVICEINFO
|
|
|
|
|
|
|
|
// XUIElementFactory
|
2005-03-01 12:33:42 -06:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElement > SAL_CALL createUIElement( const ::rtl::OUString& ResourceURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Args ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
2004-02-25 10:39:05 -06:00
|
|
|
|
|
|
|
// XUIElementFactoryRegistration
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > SAL_CALL getRegisteredFactories( ) throw (::com::sun::star::uno::RuntimeException);
|
2005-03-01 12:33:42 -06:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElementFactory > SAL_CALL getFactory( const ::rtl::OUString& ResourceURL, const ::rtl::OUString& ModuleIdentifier ) throw (::com::sun::star::uno::RuntimeException);
|
2004-02-25 10:39:05 -06:00
|
|
|
virtual void SAL_CALL registerFactory( const ::rtl::OUString& aType, const ::rtl::OUString& aName, const ::rtl::OUString& aModuleIdentifier, const ::rtl::OUString& aFactoryImplementationName ) throw (::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL deregisterFactory( const ::rtl::OUString& aType, const ::rtl::OUString& aName, const ::rtl::OUString& aModuleIdentifier ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void RetrieveTypeNameFromResourceURL( const ::rtl::OUString& aResourceURL, rtl::OUString& aType, rtl::OUString& aName );
|
|
|
|
|
|
|
|
sal_Bool m_bConfigRead;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceManager;
|
2005-03-01 12:33:42 -06:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::XModuleManager > m_xModuleManager;
|
2004-02-25 10:39:05 -06:00
|
|
|
ConfigurationAccess_UIElementFactoryManager* m_pConfigAccess;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace framework
|
|
|
|
|
|
|
|
#endif // __FRAMEWORK_UIFACTORY_UIELEMENTFACTORYMANAGER_HXX_
|