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 24 #ifndef _BASCTL_DLGEDLIST_HXX 25 #define _BASCTL_DLGEDLIST_HXX 26 27 #include <cppuhelper/implbase1.hxx> 28 #include <com/sun/star/beans/XPropertyChangeListener.hpp> 29 #include <com/sun/star/container/XContainerListener.hpp> 30 31 class DlgEdObj; 32 33 //============================================================================ 34 // DlgEdPropListenerImpl 35 //============================================================================ 36 37 typedef ::cppu::WeakImplHelper1< ::com::sun::star::beans::XPropertyChangeListener > PropertyChangeListenerHelper; 38 39 class DlgEdPropListenerImpl: public PropertyChangeListenerHelper 40 { 41 private: 42 DlgEdObj* pDlgEdObj; 43 44 public: 45 DlgEdPropListenerImpl(DlgEdObj* pObj); 46 virtual ~DlgEdPropListenerImpl(); 47 48 // XEventListener 49 virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException); 50 51 // XPropertyChangeListener 52 virtual void SAL_CALL propertyChange( const ::com::sun::star::beans::PropertyChangeEvent& evt ) throw(::com::sun::star::uno::RuntimeException); 53 54 }; 55 56 //============================================================================ 57 // DlgEdEvtContListenerImpl 58 //============================================================================ 59 60 typedef ::cppu::WeakImplHelper1< ::com::sun::star::container::XContainerListener > ContainerListenerHelper; 61 62 class DlgEdEvtContListenerImpl: public ContainerListenerHelper 63 { 64 private: 65 DlgEdObj* pDlgEdObj; 66 67 public: 68 DlgEdEvtContListenerImpl(DlgEdObj* pObj); 69 virtual ~DlgEdEvtContListenerImpl(); 70 71 // XEventListener 72 virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException); 73 74 // XContainerListener 75 virtual void SAL_CALL elementInserted( const ::com::sun::star::container::ContainerEvent& Event ) throw(::com::sun::star::uno::RuntimeException); 76 virtual void SAL_CALL elementReplaced( const ::com::sun::star::container::ContainerEvent& Event ) throw(::com::sun::star::uno::RuntimeException); 77 virtual void SAL_CALL elementRemoved( const ::com::sun::star::container::ContainerEvent& Event ) throw(::com::sun::star::uno::RuntimeException); 78 }; 79 80 #endif // _BASCTL_DLGEDLIST_HXX 81