xref: /trunk/main/basctl/source/dlged/dlgedlist.cxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_basctl.hxx"
30 #include "dlgedlist.hxx"
31 #include "dlgedobj.hxx"
32 
33 //============================================================================
34 // DlgEdPropListenerImpl
35 //============================================================================
36 
37 //----------------------------------------------------------------------------
38 
39 DlgEdPropListenerImpl::DlgEdPropListenerImpl(DlgEdObj* pObj)
40 		  :pDlgEdObj(pObj)
41 {
42 }
43 
44 //----------------------------------------------------------------------------
45 
46 DlgEdPropListenerImpl::~DlgEdPropListenerImpl()
47 {
48 }
49 
50 // XEventListener
51 //----------------------------------------------------------------------------
52 
53 void SAL_CALL DlgEdPropListenerImpl::disposing( const ::com::sun::star::lang::EventObject& ) throw( ::com::sun::star::uno::RuntimeException)
54 {
55 	/*
56 	// disconnect the listener
57 	if (pDlgEdObj)
58 	{
59 		(pDlgEdObj->m_xPropertyChangeListener).clear();
60 	}
61 	*/
62 }
63 
64 // XPropertyChangeListener
65 //----------------------------------------------------------------------------
66 
67 void SAL_CALL DlgEdPropListenerImpl::propertyChange( const  ::com::sun::star::beans::PropertyChangeEvent& evt ) throw( ::com::sun::star::uno::RuntimeException)
68 {
69 	pDlgEdObj->_propertyChange( evt );
70 }
71 
72 //----------------------------------------------------------------------------
73 
74 //============================================================================
75 // DlgEdEvtContListenerImpl
76 //============================================================================
77 
78 //----------------------------------------------------------------------------
79 
80 DlgEdEvtContListenerImpl::DlgEdEvtContListenerImpl(DlgEdObj* pObj)
81 		  :pDlgEdObj(pObj)
82 {
83 }
84 
85 //----------------------------------------------------------------------------
86 
87 DlgEdEvtContListenerImpl::~DlgEdEvtContListenerImpl()
88 {
89 }
90 
91 // XEventListener
92 //----------------------------------------------------------------------------
93 
94 void SAL_CALL DlgEdEvtContListenerImpl::disposing( const  ::com::sun::star::lang::EventObject& ) throw( ::com::sun::star::uno::RuntimeException)
95 {
96 	/*
97 	// disconnect the listener
98 	if (pDlgEdObj)
99 	{
100 		(pDlgEdObj->m_xContainerListener).clear();
101 	}
102 	*/
103 }
104 
105 // XContainerListener
106 //----------------------------------------------------------------------------
107 
108 void SAL_CALL DlgEdEvtContListenerImpl::elementInserted(const ::com::sun::star::container::ContainerEvent& Event) throw(::com::sun::star::uno::RuntimeException)
109 {
110 	pDlgEdObj->_elementInserted( Event );
111 }
112 
113 //----------------------------------------------------------------------------
114 
115 void SAL_CALL DlgEdEvtContListenerImpl::elementReplaced(const ::com::sun::star::container::ContainerEvent& Event) throw(::com::sun::star::uno::RuntimeException)
116 {
117 	pDlgEdObj->_elementReplaced( Event );
118 }
119 
120 //----------------------------------------------------------------------------
121 
122 void SAL_CALL DlgEdEvtContListenerImpl::elementRemoved(const ::com::sun::star::container::ContainerEvent& Event) throw(::com::sun::star::uno::RuntimeException)
123 {
124 	pDlgEdObj->_elementRemoved( Event );
125 }
126 
127 //----------------------------------------------------------------------------
128