update dev300-m58
[ooovba.git] / sd / inc / sdfilter.hxx
blob18b411a211ed4ef5579989abe7d2926490c6af1e
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: sdfilter.hxx,v $
10 * $Revision: 1.9 $
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 _SD_SDFILTER_HXX
32 #define _SD_SDFILTER_HXX
34 #include <tools/gen.hxx>
35 #include <rtl/ustring.hxx>
36 #include <com/sun/star/frame/XModel.hpp>
37 #include <com/sun/star/task/XStatusIndicator.hpp>
38 #include <com/sun/star/task/XStatusIndicatorSupplier.hpp>
40 // ------------
41 // - SdFilter -
42 // ------------
44 class SfxMedium;
45 namespace sd {
46 class DrawDocShell;
48 class SdDrawDocument;
49 class SfxProgress;
50 namespace osl { class Module; }
52 class SdFilter
54 public:
55 SdFilter( SfxMedium& rMedium, ::sd::DrawDocShell& rDocShell, sal_Bool bShowProgress );
56 virtual ~SdFilter();
58 sal_Bool IsProgress() const { return mbShowProgress; }
59 sal_Bool IsDraw() const { return mbIsDraw; }
60 sal_Bool IsImpress() const { return !mbIsDraw; }
61 virtual sal_Bool Export() = 0;
63 protected:
64 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > mxModel;
65 ::com::sun::star::uno::Reference< ::com::sun::star::task::XStatusIndicator > mxStatusIndicator;
67 SfxMedium& mrMedium;
68 ::sd::DrawDocShell& mrDocShell;
69 SdDrawDocument& mrDocument;
70 sal_Bool mbIsDraw : 1;
71 sal_Bool mbShowProgress : 1;
73 ::osl::Module* OpenLibrary( const ::rtl::OUString& rLibraryName ) const;
74 void CreateStatusIndicator();
76 private:
78 ::rtl::OUString ImplGetFullLibraryName( const ::rtl::OUString& rLibraryName ) const;
82 #endif // _SD_SDFILTER_HXX