4ad792635f
2005/09/05 13:36:48 rt 1.1.1.1.1462.1: #i54170# Change license header: remove SISSL
95 lines
3 KiB
C++
95 lines
3 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: txtftn.hxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-09 02:22:35 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
#ifndef _TXTFTN_HXX
|
|
#define _TXTFTN_HXX
|
|
|
|
#ifndef _TXATBASE_HXX //autogen
|
|
#include <txatbase.hxx>
|
|
#endif
|
|
|
|
class SwNodeIndex;
|
|
class SwTxtNode;
|
|
class SwNodes;
|
|
class SwDoc;
|
|
|
|
// ATT_FTN **********************************************************
|
|
|
|
class SwTxtFtn : public SwTxtAttr
|
|
{
|
|
SwNodeIndex *pStartNode;
|
|
SwTxtNode* pMyTxtNd;
|
|
USHORT nSeqNo;
|
|
|
|
// Zuweisung und Copy-Ctor sind nicht erlaubt.
|
|
SwTxtFtn& operator=( const SwTxtFtn &rTxtFtn );
|
|
SwTxtFtn( const SwTxtFtn &rTxtFtn );
|
|
|
|
public:
|
|
SwTxtFtn( const SwFmtFtn& rAttr, xub_StrLen nStart );
|
|
~SwTxtFtn();
|
|
|
|
inline SwNodeIndex *GetStartNode() const { return pStartNode; }
|
|
void SetStartNode( const SwNodeIndex *pNode, BOOL bDelNodes = TRUE );
|
|
void SetNumber( const USHORT nNumber, const String* = 0 );
|
|
void CopyFtn( SwTxtFtn *pDest );
|
|
|
|
// erfrage und setze den TxtNode Pointer
|
|
inline const SwTxtNode& GetTxtNode() const;
|
|
void ChgTxtNode( const SwTxtNode* pNew ) { pMyTxtNd = (SwTxtNode*)pNew; }
|
|
|
|
// lege eine neue leere TextSection fuer diese Fussnote an
|
|
void MakeNewTextSection( SwNodes& rNodes );
|
|
|
|
// loesche die FtnFrame aus der Seite
|
|
void DelFrms();
|
|
// bedingten Absatzvorlagen checken
|
|
void CheckCondColl();
|
|
|
|
// fuer die Querverweise auf Fussnoten
|
|
USHORT SetSeqRefNo();
|
|
void SetSeqNo( USHORT n ) { nSeqNo = n; } // fuer die Reader
|
|
USHORT GetSeqRefNo() const { return nSeqNo; }
|
|
|
|
static void SetUniqueSeqRefNo( SwDoc& rDoc );
|
|
};
|
|
|
|
inline const SwTxtNode& SwTxtFtn::GetTxtNode() const
|
|
{
|
|
ASSERT( pMyTxtNd, "SwTxtFtn:: wo ist mein TextNode?" );
|
|
return *pMyTxtNd;
|
|
}
|
|
|
|
#endif
|
|
|