1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SW_INC_PVPRTDAT_HXX
21 #define INCLUDED_SW_INC_PVPRTDAT_HXX
23 #include <sal/types.h>
25 class SwPagePreviewPrtData
28 sal_Int32 nLeftSpace
, nRightSpace
, nTopSpace
, nBottomSpace
,
29 nHorzSpace
, nVertSpace
;
33 SwPagePreviewPrtData()
34 : nLeftSpace(0), nRightSpace(0), nTopSpace(0), nBottomSpace(0),
35 nHorzSpace(0), nVertSpace(0), nRow(1), nCol(1),
39 sal_Int32
GetLeftSpace() const { return nLeftSpace
; }
40 void SetLeftSpace( sal_Int32 n
) { nLeftSpace
= n
; }
42 sal_Int32
GetRightSpace() const { return nRightSpace
; }
43 void SetRightSpace( sal_Int32 n
) { nRightSpace
= n
; }
45 sal_Int32
GetTopSpace() const { return nTopSpace
; }
46 void SetTopSpace( sal_Int32 n
) { nTopSpace
= n
; }
48 sal_Int32
GetBottomSpace() const { return nBottomSpace
; }
49 void SetBottomSpace(sal_Int32 n
) { nBottomSpace
= n
; }
51 sal_Int32
GetHorzSpace() const { return nHorzSpace
; }
52 void SetHorzSpace( sal_Int32 n
) { nHorzSpace
= n
; }
54 sal_Int32
GetVertSpace() const { return nVertSpace
; }
55 void SetVertSpace( sal_Int32 n
) { nVertSpace
= n
; }
57 sal_uInt8
GetRow() const { return nRow
; }
58 void SetRow(sal_uInt8 n
) { nRow
= n
; }
60 sal_uInt8
GetCol() const { return nCol
; }
61 void SetCol( sal_uInt8 n
) { nCol
= n
; }
63 bool GetLandscape() const { return bLandscape
; }
64 void SetLandscape( bool b
) { bLandscape
= b
; }
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */