2004-10-04 14:36:37 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* $RCSfile: guisaveas.hxx,v $
|
|
|
|
* $Revision: 1.12 $
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
2008-04-11 05:09:35 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-10-04 14:36:37 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SFX_GUISAVEAS_HXX_
|
|
|
|
#define _SFX_GUISAVEAS_HXX_
|
|
|
|
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#include <com/sun/star/beans/NamedValue.hpp>
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
|
|
|
#include <com/sun/star/container/XContainerQuery.hpp>
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
2005-03-01 12:56:52 -06:00
|
|
|
#include <com/sun/star/frame/XModuleManager.hpp>
|
2004-10-04 14:36:37 -05:00
|
|
|
|
|
|
|
#include <comphelper/sequenceashashmap.hxx>
|
|
|
|
|
2008-02-26 07:56:54 -06:00
|
|
|
|
|
|
|
namespace com { namespace sun { namespace star {
|
|
|
|
namespace document {
|
|
|
|
class XDocumentInfo;
|
|
|
|
}
|
|
|
|
} } }
|
|
|
|
|
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
|
|
|
|
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,
|
2007-08-02 11:06:47 -05:00
|
|
|
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgsSequence,
|
|
|
|
sal_Bool bPreselectPassword );
|
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 );
|
|
|
|
|
|
|
|
|
2008-02-26 07:56:54 -06:00
|
|
|
static void SetDocInfoState(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::document::XDocumentInfo>& i_xOldDocInfo,
|
|
|
|
sal_Bool bNoModify );
|
2004-10-04 14:36:37 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|