merge the formfield patch from ooo-build
[ooovba.git] / svtools / source / filter.vcl / filter / SvFilterOptionsDialog.hxx
blob02c348782ab32a1142ff2e409a651cec915b24ac
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SvFilterOptionsDialog.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _SV_FILTER_OPTIONS_DIALOG_HXX_
32 #define _SV_FILTER_OPTIONS_DIALOG_HXX_
34 #include <vcl/fldunit.hxx>
35 #include <cppuhelper/implbase5.hxx>
36 #include <com/sun/star/lang/XInitialization.hpp>
37 #include <com/sun/star/lang/XServiceInfo.hpp>
38 #include <com/sun/star/beans/XPropertyAccess.hpp>
39 #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
40 #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
41 #include <com/sun/star/document/XExporter.hpp>
43 class SvFilterOptionsDialog : public cppu::WeakImplHelper5
45 com::sun::star::document::XExporter,
46 com::sun::star::ui::dialogs::XExecutableDialog,
47 com::sun::star::beans::XPropertyAccess,
48 com::sun::star::lang::XInitialization,
49 com::sun::star::lang::XServiceInfo
52 const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > &
53 rxMgr;
54 com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
55 aMediaDescriptor;
56 com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
57 aFilterDataSequence;
58 rtl::OUString aDialogTitle;
59 FieldUnit eFieldUnit;
61 public:
63 SvFilterOptionsDialog( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB );
64 ~SvFilterOptionsDialog();
66 // XInterface
67 virtual void SAL_CALL acquire() throw();
68 virtual void SAL_CALL release() throw();
70 // XInitialization
71 virtual void SAL_CALL initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any > & aArguments )
72 throw ( com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException );
74 // XServiceInfo
75 virtual rtl::OUString SAL_CALL getImplementationName()
76 throw ( com::sun::star::uno::RuntimeException );
77 virtual sal_Bool SAL_CALL supportsService( const rtl::OUString& ServiceName )
78 throw ( com::sun::star::uno::RuntimeException );
79 virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames()
80 throw ( com::sun::star::uno::RuntimeException );
82 // XPropertyAccess
83 virtual com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getPropertyValues()
84 throw ( com::sun::star::uno::RuntimeException );
85 virtual void SAL_CALL setPropertyValues( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > & aProps )
86 throw ( ::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException,
87 ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException,
88 ::com::sun::star::uno::RuntimeException );
90 // XExecuteDialog
91 virtual sal_Int16 SAL_CALL execute()
92 throw ( com::sun::star::uno::RuntimeException );
93 virtual void SAL_CALL setTitle( const ::rtl::OUString& aTitle )
94 throw ( ::com::sun::star::uno::RuntimeException );
96 // XExporter
97 virtual void SAL_CALL setSourceDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xDoc )
98 throw ( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
103 #endif // _SV_FILTER_OPTIONS_DIALOG_HXX_