2004-10-04 14:36:37 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* $RCSfile: guisaveas.hxx,v $
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2007-07-17 07:36:28 -05:00
|
|
|
* $Revision: 1.9 $
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2007-07-17 07:36:28 -05:00
|
|
|
* last change: $Author: obo $ $Date: 2007-07-17 13:36:28 $
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2005-09-07 10:56:36 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SFX_GUISAVEAS_HXX_
|
|
|
|
#define _SFX_GUISAVEAS_HXX_
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_BEANS_NAMEDVALUE_HPP_
|
|
|
|
#include <com/sun/star/beans/NamedValue.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XCONTAINERQUERY_HPP_
|
|
|
|
#include <com/sun/star/container/XContainerQuery.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_FRAME_XMODEL_HPP_
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
|
|
#endif
|
|
|
|
|
2005-03-01 12:56:52 -06:00
|
|
|
#ifndef _COM_SUN_STAR_FRAME_XMODULEMANAGER_HPP_
|
|
|
|
#include <com/sun/star/frame/XModuleManager.hpp>
|
2004-10-04 14:36:37 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <comphelper/sequenceashashmap.hxx>
|
|
|
|
|
2005-11-11 05:21:54 -06:00
|
|
|
class Window;
|
2004-10-04 14:36:37 -05:00
|
|
|
class ModelData_Impl;
|
2007-07-17 07:36:28 -05:00
|
|
|
class SfxDocumentInfo;
|
|
|
|
|
2004-10-04 14:36:37 -05:00
|
|
|
class SfxStoringHelper
|
|
|
|
{
|
|
|
|
friend class ModelData_Impl;
|
|
|
|
|
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xFilterCFG;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XContainerQuery > m_xFilterQuery;
|
2005-03-01 12:56:52 -06:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::XModuleManager > m_xModuleManager;
|
2004-10-04 14:36:37 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xNamedModManager;
|
|
|
|
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > GetServiceFactory();
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > GetFilterConfiguration();
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XContainerQuery > GetFilterQuery();
|
2005-03-01 12:56:52 -06:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::XModuleManager > GetModuleManager();
|
2004-10-04 14:36:37 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > GetNamedModuleManager();
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
SfxStoringHelper( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xFactory );
|
|
|
|
|
|
|
|
sal_Bool GUIStoreModel(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel,
|
|
|
|
const ::rtl::OUString& aSlotName,
|
2005-01-21 10:32:25 -06:00
|
|
|
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgsSequence);
|
2004-10-04 14:36:37 -05:00
|
|
|
|
|
|
|
static ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SearchForFilter(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XContainerQuery >& xFilterQuery,
|
|
|
|
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& aSearchRequest,
|
|
|
|
sal_Int32 nMustFlags,
|
|
|
|
sal_Int32 nDontFlags );
|
|
|
|
|
|
|
|
static sal_Bool CheckFilterOptionsAppearence(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& xFilterCFG,
|
|
|
|
const ::rtl::OUString& aFilterName );
|
|
|
|
|
|
|
|
static void FillCopy( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel,
|
|
|
|
SfxDocumentInfo& aDocInfoToFill );
|
|
|
|
|
2007-07-17 07:36:28 -05:00
|
|
|
static void PrepareDocInfoForStore( SfxDocumentInfo& aDocInfoToClear, sal_Bool bUseUserData );
|
2004-10-04 14:36:37 -05:00
|
|
|
|
|
|
|
static void SetDocInfoState( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel,
|
|
|
|
const SfxDocumentInfo& aDocInfoState,
|
|
|
|
sal_Bool bNoModify );
|
|
|
|
|
|
|
|
static sal_Bool WarnUnacceptableFormat(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel,
|
|
|
|
::rtl::OUString aOldUIName,
|
|
|
|
::rtl::OUString aDefUIName,
|
|
|
|
sal_Bool bCanProceedFurther );
|
2005-01-21 10:32:25 -06:00
|
|
|
|
|
|
|
static void ExecuteFilterDialog( SfxStoringHelper& _rStorageHelper
|
|
|
|
,const ::rtl::OUString& sFilterName
|
|
|
|
,const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel
|
|
|
|
,/*OUT*/::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rArgsSequence
|
|
|
|
);
|
2005-11-11 05:21:54 -06:00
|
|
|
|
|
|
|
static Window* GetModelWindow( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel );
|
|
|
|
|
2004-10-04 14:36:37 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|