1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: pvprtdat.hxx,v $
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 ************************************************************************/
35 #include <tools/solar.h>
37 class SwPagePreViewPrtData
39 ULONG nLeftSpace
, nRightSpace
, nTopSpace
, nBottomSpace
,
40 nHorzSpace
, nVertSpace
;
45 SwPagePreViewPrtData()
46 : nLeftSpace(0), nRightSpace(0), nTopSpace(0), nBottomSpace(0),
47 nHorzSpace(0), nVertSpace(0), nRow(1), nCol(1),
48 bLandscape(0),bStretch(0)
51 ULONG
GetLeftSpace() const { return nLeftSpace
; }
52 void SetLeftSpace( ULONG n
) { nLeftSpace
= n
; }
54 ULONG
GetRightSpace() const { return nRightSpace
; }
55 void SetRightSpace( ULONG n
) { nRightSpace
= n
; }
57 ULONG
GetTopSpace() const { return nTopSpace
; }
58 void SetTopSpace( ULONG n
) { nTopSpace
= n
; }
60 ULONG
GetBottomSpace() const { return nBottomSpace
; }
61 void SetBottomSpace( ULONG n
) { nBottomSpace
= n
; }
63 ULONG
GetHorzSpace() const { return nHorzSpace
; }
64 void SetHorzSpace( ULONG n
) { nHorzSpace
= n
; }
66 ULONG
GetVertSpace() const { return nVertSpace
; }
67 void SetVertSpace( ULONG n
) { nVertSpace
= n
; }
69 BYTE
GetRow() const { return nRow
; }
70 void SetRow(BYTE n
) { nRow
= n
; }
72 BYTE
GetCol() const { return nCol
; }
73 void SetCol( BYTE n
) { nCol
= n
; }
75 BOOL
GetLandscape() const { return bLandscape
; }
76 void SetLandscape( BOOL b
) { bLandscape
= b
; }