summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 10:50:42 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 10:50:42 +0000
commit5e19e55e252dfd17c762967aa6ac214ab5a4a14e (patch)
tree94358be36cbfffbe411f5f6ee91f961dda8c19ed
parent5451bb80b3a4bb768a38b2bfad43d14c16715316 (diff)
INTEGRATION: CWS eforms4 (1.2.22); FILE MERGED
2004/12/06 06:35:44 pb 1.2.22.1: fix: #i36562# XFrameActionListener added
-rw-r--r--svx/source/inc/datalistener.hxx17
1 files changed, 12 insertions, 5 deletions
diff --git a/svx/source/inc/datalistener.hxx b/svx/source/inc/datalistener.hxx
index d4ebe4c94dfa..47a09b11d158 100644
--- a/svx/source/inc/datalistener.hxx
+++ b/svx/source/inc/datalistener.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: datalistener.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 11:28:29 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:50:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,12 +61,15 @@
#ifndef _SVX_DATALISTENER_HXX
#define _SVX_DATALISTENER_HXX
-#ifndef _CPPUHELPER_IMPLBASE2_HXX_
-#include <cppuhelper/implbase2.hxx>
+#ifndef _CPPUHELPER_IMPLBASE3_HXX_
+#include <cppuhelper/implbase3.hxx>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XCONTAINERLISTENER_HPP_
#include <com/sun/star/container/XContainerListener.hpp>
#endif
+#ifndef _COM_SUN_STAR_FRAME_XFRAMEACTIONLISTENER_HPP_
+#include <com/sun/star/frame/XFrameActionListener.hpp>
+#endif
#ifndef _COM_SUN_STAR_XML_DOM_EVENTS_XEVENTLISTENER_HPP_
#include <com/sun/star/xml/dom/events/XEventListener.hpp>
#endif
@@ -78,8 +81,9 @@ namespace svxform
class DataNavigatorWindow;
- typedef cppu::WeakImplHelper2<
+ typedef cppu::WeakImplHelper3<
com::sun::star::container::XContainerListener,
+ com::sun::star::frame::XFrameActionListener,
com::sun::star::xml::dom::events::XEventListener > DataListener_t;
class DataListener : public DataListener_t
@@ -99,6 +103,9 @@ namespace svxform
virtual void SAL_CALL elementRemoved( const ::com::sun::star::container::ContainerEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL elementReplaced( const ::com::sun::star::container::ContainerEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
+ // XFrameActionListener
+ virtual void SAL_CALL frameAction( const ::com::sun::star::frame::FrameActionEvent& Action ) throw (::com::sun::star::uno::RuntimeException);
+
// xml::dom::events::XEventListener
virtual void SAL_CALL handleEvent( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::dom::events::XEvent >& evt ) throw (::com::sun::star::uno::RuntimeException);