#ifndef _PREVIEWPAGES_HXX #define _PREVIEWPAGES_HXX // classes , and #include class SwPageFrm; /** data structure for a preview page in the current preview layout OD 12.12.2002 #103492# - struct @author OD */ struct PrevwPage { const SwPageFrm* pPage; bool bVisible; Size aPageSize; Point aPrevwWinPos; Point aLogicPos; Point aMapOffset; inline PrevwPage(); }; inline PrevwPage::PrevwPage() : pPage( 0 ), bVisible( false ), aPageSize( Size(0,0) ), aPrevwWinPos( Point(0,0) ), aLogicPos( Point(0,0) ), aMapOffset( Point(0,0) ) {}; #endif