merge the formfield patch from ooo-build
[ooovba.git] / sd / source / ui / inc / docprev.hxx
blobe1379ffa7e569960f4deaf5c24664f9b2de8544a
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: docprev.hxx,v $
10 * $Revision: 1.10.34.1 $
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_DOCPREV_HXX_
32 #define _SD_DOCPREV_HXX_
34 #include <com/sun/star/presentation/FadeEffect.hpp>
35 #include <vcl/window.hxx>
36 #include <tools/gen.hxx>
38 #include <rtl/ref.hxx>
40 #include <svtools/lstner.hxx>
41 #include <svtools/colorcfg.hxx>
42 #include "fadedef.h"
43 #include "sddllapi.h"
45 namespace sd {
46 class SlideShow;
49 class GDIMetaFile;
51 class SD_DLLPUBLIC SdDocPreviewWin : public Control, public SfxListener
53 protected:
54 GDIMetaFile* pMetaFile;
55 BOOL bInEffect;
56 Link aClickHdl;
57 SfxObjectShell* mpObj;
58 sal_uInt16 mnShowPage;
59 Color maDocumentColor;
60 rtl::Reference< sd::SlideShow > mxSlideShow;
62 virtual void Paint( const Rectangle& rRect );
63 static void CalcSizeAndPos( GDIMetaFile* pFile, Size& rSize, Point& rPoint );
64 void ImpPaint( GDIMetaFile* pFile, OutputDevice* pVDev );
66 static const int FRAME;
68 svtools::ColorConfig maColorConfig;
70 virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint);
72 void updateViewSettings();
74 public:
75 SdDocPreviewWin( Window* pParent, const ResId& rResId );
76 SdDocPreviewWin( Window* pParent );
77 ~SdDocPreviewWin();
78 void SetObjectShell( SfxObjectShell* pObj, sal_uInt16 nShowPage = 0 );
79 void SetGDIFile( GDIMetaFile* pFile );
80 virtual void Resize();
81 void startPreview();
83 virtual long Notify( NotifyEvent& rNEvt );
85 void SetClickHdl( const Link& rLink ) { aClickHdl = rLink; }
86 const Link& GetClickHdl() const { return aClickHdl; }
88 virtual void DataChanged( const DataChangedEvent& rDCEvt );
92 #endif