diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-10 09:52:20 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-10 09:52:20 +0000 |
commit | 9d380b57ccc84776ff1a63582164e527570c37eb (patch) | |
tree | 77b85d2496f6bfb58fe7699eb985d31116374ea3 /sc/inc/viewuno.hxx | |
parent | 5fdb6280d275714322d00ad853f97d7b74eeed66 (diff) |
INTEGRATION: CWS dba23a (1.8.326); FILE MERGED
2007/03/20 09:03:58 fs 1.8.326.3: RESYNC: (1.8-1.9); FILE MERGED
2007/03/12 12:11:47 fs 1.8.326.2: #i71488# removed IllegalArgumentException from getFormController
2007/03/12 12:09:06 fs 1.8.326.1: #i71488# support XFormLayerAccess, superseding XControlAccess
Diffstat (limited to 'sc/inc/viewuno.hxx')
-rw-r--r-- | sc/inc/viewuno.hxx | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/sc/inc/viewuno.hxx b/sc/inc/viewuno.hxx index b366d23d6c69..6cce267da761 100644 --- a/sc/inc/viewuno.hxx +++ b/sc/inc/viewuno.hxx @@ -4,9 +4,9 @@ * * $RCSfile: viewuno.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: vg $ $Date: 2007-02-27 11:58:59 $ + * last change: $Author: kz $ $Date: 2007-05-10 10:52:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,8 +48,8 @@ #include <svtools/itemprop.hxx> #endif -#ifndef _COM_SUN_STAR_VIEW_XCONTROLACCESS_HPP_ -#include <com/sun/star/view/XControlAccess.hpp> +#ifndef _COM_SUN_STAR_VIEW_XFORMLAYERACCESS_HPP_ +#include <com/sun/star/view/XFormLayerAccess.hpp> #endif #ifndef _COM_SUN_STAR_VIEW_XSELECTIONCHANGELISTENER_HPP_ #include <com/sun/star/view/XSelectionChangeListener.hpp> @@ -129,7 +129,7 @@ SV_DECL_PTRARR_DEL( XActivationEventListenerArr_Impl, XActivationEventListenerPt class ScViewPaneBase : public com::sun::star::sheet::XViewPane, public com::sun::star::sheet::XCellRangeReferrer, - public com::sun::star::view::XControlAccess, + public com::sun::star::view::XFormLayerAccess, public com::sun::star::lang::XServiceInfo, public com::sun::star::lang::XTypeProvider, public SfxListener @@ -166,6 +166,17 @@ public: virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getReferredCells() throw(::com::sun::star::uno::RuntimeException); + // XFormLayerAccess + virtual ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormController > SAL_CALL + getFormController( const ::com::sun::star::uno::Reference< + ::com::sun::star::form::XForm >& Form ) + throw (::com::sun::star::uno::RuntimeException); + virtual ::sal_Bool SAL_CALL + isFormDesignMode( ) + throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL setFormDesignMode( ::sal_Bool DesignMode ) + throw (::com::sun::star::uno::RuntimeException); + // XControlAccess virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > SAL_CALL getControl( const ::com::sun::star::uno::Reference< |