update dev300-m58
[ooovba.git] / ucb / source / core / ucbprops.hxx
blob6ff4ea0ecdece75168a7b5b8ce962ada3e82d0ab
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ucbprops.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _UCBPROPS_HXX
32 #define _UCBPROPS_HXX
34 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
35 #include <com/sun/star/lang/XTypeProvider.hpp>
36 #include <com/sun/star/lang/XServiceInfo.hpp>
37 #include <com/sun/star/beans/XPropertySetInfo.hpp>
38 #include <cppuhelper/weak.hxx>
39 #include <osl/mutex.hxx>
40 #include <ucbhelper/macros.hxx>
42 //=========================================================================
44 #define PROPERTIES_MANAGER_SERVICE_NAME "com.sun.star.ucb.PropertiesManager"
46 //============================================================================
48 // class UcbPropertiesManager.
50 //============================================================================
52 class UcbPropertiesManager :
53 public cppu::OWeakObject,
54 public com::sun::star::lang::XTypeProvider,
55 public com::sun::star::lang::XServiceInfo,
56 public com::sun::star::beans::XPropertySetInfo
58 com::sun::star::uno::Sequence< com::sun::star::beans::Property >*
59 m_pProps;
60 osl::Mutex m_aMutex;
62 private:
63 sal_Bool queryProperty( const rtl::OUString& rName,
64 com::sun::star::beans::Property& rProp );
66 public:
67 UcbPropertiesManager( const com::sun::star::uno::Reference<
68 com::sun::star::lang::XMultiServiceFactory >&
69 rxSMgr );
70 virtual ~UcbPropertiesManager();
72 // XInterface
73 XINTERFACE_DECL()
75 // XTypeProvider
76 XTYPEPROVIDER_DECL()
78 // XServiceInfo
79 XSERVICEINFO_DECL()
81 // XPropertySetInfo
82 virtual com::sun::star::uno::Sequence<
83 com::sun::star::beans::Property > SAL_CALL
84 getProperties()
85 throw( com::sun::star::uno::RuntimeException );
86 virtual com::sun::star::beans::Property SAL_CALL
87 getPropertyByName( const rtl::OUString& aName )
88 throw( com::sun::star::beans::UnknownPropertyException,
89 com::sun::star::uno::RuntimeException );
90 virtual sal_Bool SAL_CALL
91 hasPropertyByName( const rtl::OUString& Name )
92 throw( com::sun::star::uno::RuntimeException );
95 #endif /* !_UCBPROPS_HXX */