1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 #include "sal/config.h" 24 #include "cppuhelper/factory.hxx" 25 #include "cppuhelper/implbase4.hxx" 26 #include "com/sun/star/lang/XInitialization.hpp" 27 #include "com/sun/star/container/XNameContainer.hpp" 28 #include "com/sun/star/lang/XServiceInfo.hpp" 29 #include "com/sun/star/beans/XPropertySet.hpp" 30 31 /// anonymous implementation namespace 32 namespace dlgprov{ 33 34 namespace css = ::com::sun::star; 35 36 class DialogModelProvider: 37 public ::cppu::WeakImplHelper4< 38 css::lang::XInitialization, 39 css::container::XNameContainer, 40 css::beans::XPropertySet, 41 css::lang::XServiceInfo> 42 { 43 public: 44 explicit DialogModelProvider(css::uno::Reference< css::uno::XComponentContext > const & context); 45 private: 46 // ::com::sun::star::lang::XInitialization: 47 virtual void SAL_CALL initialize(const css::uno::Sequence< ::com::sun::star::uno::Any > & aArguments); 48 49 // ::com::sun::star::container::XElementAccess: 50 virtual ::com::sun::star::uno::Type SAL_CALL getElementType(); 51 virtual ::sal_Bool SAL_CALL hasElements(); 52 53 // ::com::sun::star::container::XNameAccess: 54 virtual ::com::sun::star::uno::Any SAL_CALL getByName(const ::rtl::OUString & aName); 55 virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames(); 56 virtual ::sal_Bool SAL_CALL hasByName(const ::rtl::OUString & aName); 57 58 // ::com::sun::star::container::XNameReplace: 59 virtual void SAL_CALL replaceByName(const ::rtl::OUString & aName, const ::com::sun::star::uno::Any & aElement); 60 61 // ::com::sun::star::container::XNameContainer: 62 virtual void SAL_CALL insertByName(const ::rtl::OUString & aName, const ::com::sun::star::uno::Any & aElement); 63 virtual void SAL_CALL removeByName(const ::rtl::OUString & Name); 64 65 // ::com::sun::star::lang::XServiceInfo: 66 virtual ::rtl::OUString SAL_CALL getImplementationName(); 67 virtual ::sal_Bool SAL_CALL supportsService(const ::rtl::OUString & ServiceName); 68 virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(); 69 70 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ); 71 virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ); 72 virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName ); 73 virtual void SAL_CALL addPropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ); 74 virtual void SAL_CALL removePropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ); 75 virtual void SAL_CALL addVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ); 76 virtual void SAL_CALL removeVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ); 77 78 private: 79 DialogModelProvider(const DialogModelProvider &); // not defined 80 DialogModelProvider& operator=(const DialogModelProvider &); // not defined 81 82 // destructor is private and will be called indirectly by the release call virtual ~DialogModelProvider() {} 83 84 css::uno::Reference< css::uno::XComponentContext > m_xContext; 85 css::uno::Reference< css::container::XNameContainer> m_xDialogModel; 86 css::uno::Reference< css::beans::XPropertySet> m_xDialogModelProp; 87 }; 88 } // closing anonymous implementation namespace 89