Update ooo320-m1
[ooovba.git] / fpicker / source / win32 / filepicker / previewbase.hxx
blob692cd0762100eebd7131223a93663cc2391c91c0
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: previewbase.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 _PREVIEWBASE_HXX_
32 #define _PREVIEWBASE_HXX_
34 #include <sal/types.h>
35 #include <com/sun/star/uno/Sequence.hxx>
36 #include <com/sun/star/uno/RuntimeException.hpp>
37 #include <com/sun/star/lang/IllegalArgumentException.hpp>
38 #include <com/sun/star/uno/Any.hxx>
40 #if defined _MSC_VER
41 #pragma warning(push, 1)
42 #endif
43 #include <windows.h>
44 #if defined _MSC_VER
45 #pragma warning(pop)
46 #endif
48 //---------------------------------------------
49 // Common interface for previews
50 //---------------------------------------------
52 class PreviewBase
54 public:
55 PreviewBase();
57 // dtor
58 virtual ~PreviewBase();
60 virtual sal_Int32 SAL_CALL getTargetColorDepth()
61 throw (::com::sun::star::uno::RuntimeException);
63 virtual sal_Int32 SAL_CALL getAvailableWidth()
64 throw (::com::sun::star::uno::RuntimeException);
66 virtual sal_Int32 SAL_CALL getAvailableHeight()
67 throw (::com::sun::star::uno::RuntimeException);
69 virtual void SAL_CALL setImage( sal_Int16 aImageFormat, const ::com::sun::star::uno::Any& aImage )
70 throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
72 virtual sal_Bool SAL_CALL setShowState( sal_Bool bShowState )
73 throw (::com::sun::star::uno::RuntimeException);
75 virtual sal_Bool SAL_CALL getShowState()
76 throw (::com::sun::star::uno::RuntimeException);
78 virtual void SAL_CALL getImage(sal_Int16& aImageFormat,com::sun::star::uno::Any& aImage);
80 sal_Bool SAL_CALL getImaginaryShowState() const;
82 virtual HWND SAL_CALL getWindowHandle() const;
84 protected:
85 ::com::sun::star::uno::Any m_ImageData;
86 sal_Int16 m_ImageFormat;
87 sal_Bool m_bShowState;
91 #endif