Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : : #ifndef _TXTFTN_HXX
29 : : #define _TXTFTN_HXX
30 : :
31 : : #include <txatbase.hxx>
32 : :
33 : : class SwNodeIndex;
34 : : class SwTxtNode;
35 : : class SwNodes;
36 : : class SwDoc;
37 : : class SwFrm;
38 : :
39 : : // ATT_FTN **********************************************************
40 : :
41 : : class SW_DLLPUBLIC SwTxtFtn : public SwTxtAttr
42 : : {
43 : : SwNodeIndex * m_pStartNode;
44 : : SwTxtNode * m_pTxtNode;
45 : : sal_uInt16 m_nSeqNo;
46 : :
47 : : public:
48 : : SwTxtFtn( SwFmtFtn& rAttr, xub_StrLen nStart );
49 : : virtual ~SwTxtFtn();
50 : :
51 : 1028 : inline SwNodeIndex *GetStartNode() const { return m_pStartNode; }
52 : : void SetStartNode( const SwNodeIndex *pNode, sal_Bool bDelNodes = sal_True );
53 : : void SetNumber( const sal_uInt16 nNumber, const String* = 0 );
54 : : void CopyFtn(SwTxtFtn & rDest, SwTxtNode & rDestNode) const;
55 : :
56 : : // Get and set TxtNode pointer.
57 : : inline const SwTxtNode& GetTxtNode() const;
58 : 144 : void ChgTxtNode( SwTxtNode* pNew ) { m_pTxtNode = pNew; }
59 : :
60 : : // Create a new empty TextSection for this footnote.
61 : : void MakeNewTextSection( SwNodes& rNodes );
62 : :
63 : : // Delete the FtnFrame from page.
64 : : void DelFrms( const SwFrm* );
65 : :
66 : : // Check conditional paragraph styles.
67 : : void CheckCondColl();
68 : :
69 : : // For references to footnotes.
70 : : sal_uInt16 SetSeqRefNo();
71 : 9 : void SetSeqNo( sal_uInt16 n ) { m_nSeqNo = n; } // For Readers.
72 : 114 : sal_uInt16 GetSeqRefNo() const { return m_nSeqNo; }
73 : :
74 : : static void SetUniqueSeqRefNo( SwDoc& rDoc );
75 : : };
76 : :
77 : 1718 : inline const SwTxtNode& SwTxtFtn::GetTxtNode() const
78 : : {
79 : : OSL_ENSURE( m_pTxtNode, "SwTxtFtn: where is my TxtNode?" );
80 : 1718 : return *m_pTxtNode;
81 : : }
82 : :
83 : : #endif
84 : :
85 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|