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 .
19 #ifndef _SVX_PARAPREV_HXX
20 #define _SVX_PARAPREV_HXX
22 #include <vcl/window.hxx>
23 #include <editeng/svxenum.hxx>
24 #include "svx/svxdllapi.h"
26 // enum ------------------------------------------------------------------
30 SVX_PREV_LINESPACE_1
= 0,
31 SVX_PREV_LINESPACE_15
,
33 SVX_PREV_LINESPACE_PROP
,
34 SVX_PREV_LINESPACE_MIN
,
35 SVX_PREV_LINESPACE_DURCH
38 // class SvxParaPrevWindow -----------------------------------------------
40 class SVX_DLLPUBLIC SvxParaPrevWindow
: public Window
56 // last line in justification
59 SvxPrevLineSpace eLine
;
66 virtual void Paint( const Rectangle
& rRect
);
68 void DrawParagraph( sal_Bool bAll
);
71 SvxParaPrevWindow( Window
* pParent
, const ResId
& rId
);
73 void SetFirstLineOfst( short nNew
) { nFirstLineOfst
= nNew
; }
74 void SetLeftMargin( long nNew
) { nLeftMargin
= nNew
; }
75 void SetRightMargin( long nNew
) { nRightMargin
= nNew
; }
76 void SetUpper( sal_uInt16 nNew
) { nUpper
= nNew
; }
77 void SetLower( sal_uInt16 nNew
) { nLower
= nNew
; }
78 void SetAdjust( SvxAdjust eNew
) { eAdjust
= eNew
; }
79 void SetLastLine( SvxAdjust eNew
) { eLastLine
= eNew
; }
80 void SetLineSpace( SvxPrevLineSpace eNew
, sal_uInt16 nNew
= 0 )
81 { eLine
= eNew
; nLineVal
= nNew
; }
82 void SetText( const OUString
& rStr
) { aText
= rStr
; }
83 void SetSize( Size aNew
) { aSize
= aNew
; }
85 short GetFirstLineOfst() const { return nFirstLineOfst
; }
86 long GetLeftMargin() const { return nLeftMargin
; }
87 long GetRightMargin() const { return nRightMargin
; }
88 sal_uInt16
GetUpper() const { return nUpper
; }
89 sal_uInt16
GetLower() const { return nLower
; }
90 SvxAdjust
GetAdjust() const { return eAdjust
; }
92 SvxPrevLineSpace
GetLineEnum() const { return eLine
; }
93 sal_uInt16
GetLineValue() const { return nLineVal
; }
94 OUString
GetText() const { return aText
; }
95 Size
GetSize() const { return aSize
; }
97 void Draw( sal_Bool bAll
) { DrawParagraph( bAll
); }
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */