sync master with lastest vba changes
[ooovba.git] / sc / inc / listenercalls.hxx
blob3c6b15a1e0990d56804ca10b35bccfb8a6441085
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: listenercalls.hxx,v $
10 * $Revision: 1.5 $
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 SC_LISTENERCALLS_HXX
32 #define SC_LISTENERCALLS_HXX
34 #include <list>
35 #include <com/sun/star/uno/Reference.hxx>
36 #include <com/sun/star/lang/EventObject.hpp>
38 namespace com { namespace sun { namespace star {
39 namespace util {
40 class XModifyListener;
42 namespace lang {
43 struct EventObject;
45 } } }
48 struct ScUnoListenerEntry
50 ::com::sun::star::uno::Reference<
51 ::com::sun::star::util::XModifyListener > xListener;
52 ::com::sun::star::lang::EventObject aEvent;
54 ScUnoListenerEntry( const ::com::sun::star::uno::Reference<
55 ::com::sun::star::util::XModifyListener >& rL,
56 const ::com::sun::star::lang::EventObject& rE ) :
57 xListener( rL ),
58 aEvent( rE )
63 /** ScUnoListenerCalls stores notifications to XModifyListener that can't be processed
64 during BroadcastUno and calls them together at the end.
66 class ScUnoListenerCalls
68 private:
69 ::std::list<ScUnoListenerEntry> aEntries;
71 public:
72 ScUnoListenerCalls();
73 ~ScUnoListenerCalls();
75 void Add( const ::com::sun::star::uno::Reference<
76 ::com::sun::star::util::XModifyListener >& rListener,
77 const ::com::sun::star::lang::EventObject& rEvent );
78 void ExecuteAndClear();
81 #endif