xref: /aoo42x/main/sw/inc/lineinfo.hxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir #ifndef SW_LINEINFO_HXX
28*cdf0e10cSrcweir #define SW_LINEINFO_HXX
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir #include "calbck.hxx"
31*cdf0e10cSrcweir #include <editeng/numitem.hxx>
32*cdf0e10cSrcweir #include "swdllapi.h"
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir class SwCharFmt;
35*cdf0e10cSrcweir class IDocumentStylePoolAccess;
36*cdf0e10cSrcweir 
37*cdf0e10cSrcweir enum LineNumberPosition
38*cdf0e10cSrcweir {
39*cdf0e10cSrcweir 	LINENUMBER_POS_LEFT,
40*cdf0e10cSrcweir 	LINENUMBER_POS_RIGHT,
41*cdf0e10cSrcweir 	LINENUMBER_POS_INSIDE,
42*cdf0e10cSrcweir 	LINENUMBER_POS_OUTSIDE
43*cdf0e10cSrcweir };
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir class SW_DLLPUBLIC SwLineNumberInfo : public SwClient //purpose of derivation from SwClient:
46*cdf0e10cSrcweir 										 //character style for displaying the numbers.
47*cdf0e10cSrcweir {
48*cdf0e10cSrcweir 	SvxNumberType 		aType;				//e.g. roman linenumbers
49*cdf0e10cSrcweir 	String				aDivider;        	//String for aditional interval (vert. lines user defined)
50*cdf0e10cSrcweir 	sal_uInt16				nPosFromLeft;		//Position for paint
51*cdf0e10cSrcweir 	sal_uInt16				nCountBy;			//Paint only for every n line
52*cdf0e10cSrcweir 	sal_uInt16				nDividerCountBy;	//Interval for display of an user defined
53*cdf0e10cSrcweir 											//string every n lines
54*cdf0e10cSrcweir 	LineNumberPosition	ePos;               //Where should the display occur (number and divicer)
55*cdf0e10cSrcweir 	sal_Bool				bPaintLineNumbers;	//Should anything be displayed?
56*cdf0e10cSrcweir 	sal_Bool				bCountBlankLines;	//Count empty lines?
57*cdf0e10cSrcweir 	sal_Bool				bCountInFlys;		//Count also within FlyFrames?
58*cdf0e10cSrcweir 	sal_Bool				bRestartEachPage;	//Restart counting at the first paragraph of each page
59*cdf0e10cSrcweir 											//(even on follows when paragraphs are splitted)
60*cdf0e10cSrcweir protected:
61*cdf0e10cSrcweir    virtual void Modify( const SfxPoolItem*, const SfxPoolItem* );
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir public:
64*cdf0e10cSrcweir 	SwLineNumberInfo();
65*cdf0e10cSrcweir 	SwLineNumberInfo(const SwLineNumberInfo&);
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir 	SwLineNumberInfo& operator=(const SwLineNumberInfo&);
68*cdf0e10cSrcweir 	sal_Bool operator==( const SwLineNumberInfo& rInf ) const;
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir     SwCharFmt *GetCharFmt( IDocumentStylePoolAccess& rIDSPA ) const;
71*cdf0e10cSrcweir 	void SetCharFmt( SwCharFmt* );
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir 	const SvxNumberType &GetNumType() const 			{ return aType; }
74*cdf0e10cSrcweir 	void 			 	SetNumType( SvxNumberType aNew ){ aType = aNew; }
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir 	const String &GetDivider() const 	{ return aDivider; }
77*cdf0e10cSrcweir 	void SetDivider( const String &r )	{ aDivider = r;	}
78*cdf0e10cSrcweir 	sal_uInt16 GetDividerCountBy() const	{ return nDividerCountBy; }
79*cdf0e10cSrcweir 	void SetDividerCountBy( sal_uInt16 n )	{ nDividerCountBy = n; }
80*cdf0e10cSrcweir 
81*cdf0e10cSrcweir 	sal_uInt16 GetPosFromLeft() const 		{ return nPosFromLeft; }
82*cdf0e10cSrcweir 	void   SetPosFromLeft( sal_uInt16 n)	{ nPosFromLeft = n;    }
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 	sal_uInt16 GetCountBy() const 			{ return nCountBy; }
85*cdf0e10cSrcweir 	void   SetCountBy( sal_uInt16 n)		{ nCountBy = n;    }
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir 	LineNumberPosition GetPos() const	{ return ePos; }
88*cdf0e10cSrcweir 	void SetPos( LineNumberPosition eP ){ ePos = eP;   }
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir 	sal_Bool   IsPaintLineNumbers() const	{ return bPaintLineNumbers; }
91*cdf0e10cSrcweir 	void   SetPaintLineNumbers( sal_Bool b ){ bPaintLineNumbers = b;	}
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir 	sal_Bool   IsCountBlankLines() const 	{ return bCountBlankLines;  }
94*cdf0e10cSrcweir 	void   SetCountBlankLines( sal_Bool b )	{ bCountBlankLines = b;		}
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir 	sal_Bool   IsCountInFlys() const		{ return bCountInFlys; 		}
97*cdf0e10cSrcweir 	void   SetCountInFlys( sal_Bool b )		{ bCountInFlys = b;			}
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir 	sal_Bool   IsRestartEachPage() const	{ return bRestartEachPage;	}
100*cdf0e10cSrcweir 	void   SetRestartEachPage( sal_Bool b )	{ bRestartEachPage = b;		}
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir     bool   HasCharFormat() const { return GetRegisteredIn() != 0; }
103*cdf0e10cSrcweir };
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir #endif
108*cdf0e10cSrcweir 
109