Tag: cws_src680_dba202a User: fs Date: 05/11/24 08:33:53 Modified: /dba/dbaccess/source/core/dataaccess/ documentdefinition.hxx
Log: RESYNC: (1.14-1.15); FILE MERGED File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: documentdefinition.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentdefinition.hxx?r1=1.14.24.1&r2=1.14.24.2 Delta lines: +22 -3 -------------------- --- documentdefinition.hxx 1 Nov 2005 09:03:17 -0000 1.14.24.1 +++ documentdefinition.hxx 24 Nov 2005 16:33:49 -0000 1.14.24.2 @@ -66,6 +66,9 @@ #ifndef _COM_SUN_STAR_FRAME_XCOMPONENTLOADER_HPP_ #include <com/sun/star/frame/XComponentLoader.hpp> #endif +#ifndef _COM_SUN_STAR_FRAME_XCONTROLLER_HPP_ +#include <com/sun/star/frame/XController.hpp> +#endif #ifndef _COM_SUN_STAR_EMBED_XSTATECHANGELISTENER_HPP_ #include <com/sun/star/embed/XStateChangeListener.hpp> #endif @@ -189,6 +192,22 @@ bool prepareClose(); static ::com::sun::star::uno::Sequence< sal_Int8 > getDefaultDocumentTypeClassId(); + + /** does necessary initializations after our embedded object has been switched to ACTIVE + @param _bOpenedInDesignMode + determines whether the embedded object has been opened for designing it or for data display + */ + void impl_onActivateEmbeddedObject( bool _bOpenedInDesignMode ); + + /** initializes a newly created view/controller which is displaying our embedded object + + Has only to be called if the respective embedded object has been loaded for design (and + not for data entry) + + @param _rxController + the controller which belongs to the XModel of our (active) embedded object + */ + void impl_initObjectEditView( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController >& _rxController ); protected: // OPropertyArrayUsageHelper --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
