Update ooo320-m1
[ooovba.git] / sw / source / core / inc / prevwpage.hxx
blob517f4494b44f3d762c75e836b75373c612e303d0
1 #ifndef _PREVIEWPAGES_HXX
2 #define _PREVIEWPAGES_HXX
4 // classes <Point>, <Size> and <Rectangle>
5 #include <tools/gen.hxx>
7 class SwPageFrm;
9 /** data structure for a preview page in the current preview layout
11 OD 12.12.2002 #103492# - struct <PrevwPage>
13 @author OD
15 struct PrevwPage
17 const SwPageFrm* pPage;
18 bool bVisible;
19 Size aPageSize;
20 Point aPrevwWinPos;
21 Point aLogicPos;
22 Point aMapOffset;
24 inline PrevwPage();
27 inline PrevwPage::PrevwPage()
28 : pPage( 0 ),
29 bVisible( false ),
30 aPageSize( Size(0,0) ),
31 aPrevwWinPos( Point(0,0) ),
32 aLogicPos( Point(0,0) ),
33 aMapOffset( Point(0,0) )
34 {};
36 #endif