Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_sw / fmtcntnt.hxx
blob1cc34434a0bcf8c225b1fa90d02fa19f11c012d9
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: fmtcntnt.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _FMTCNTNT_HXX
31 #define _FMTCNTNT_HXX
33 #ifndef _FORMAT_HXX //autogen
34 #include <format.hxx>
35 #endif
36 namespace binfilter {
38 class SwNodeIndex;
39 class SwStartNode;
41 //Cntnt, Inhalt des Frame (Header, Footer, Fly) ----
43 class SwFmtCntnt: public SfxPoolItem
45 SwNodeIndex *pStartNode;
47 SwFmtCntnt &operator=( const SwFmtCntnt & ); //Kopieren verboten
49 public:
50 // SwFmtCntnt( const SwNodeIndex *pStartNodeIdx = 0 );
51 SwFmtCntnt( const SwStartNode* pStartNode = 0 );
52 SwFmtCntnt( const SwFmtCntnt &rCpy );
53 ~SwFmtCntnt();
55 // "pure virtual Methoden" vom SfxPoolItem
56 virtual int operator==( const SfxPoolItem& ) const;
57 virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
58 virtual SfxPoolItem* Create(SvStream &, USHORT nVer) const;
59 virtual SvStream& Store(SvStream &, USHORT nIVer) const;
61 const SwNodeIndex *GetCntntIdx() const { return pStartNode; }
62 void SetNewCntntIdx( const SwNodeIndex *pIdx );
65 #if !(defined(MACOSX) && ( __GNUC__ < 3 ))
66 // GrP moved to gcc_outl.hxx; revisit with gcc3
67 inline const SwFmtCntnt &SwAttrSet::GetCntnt(BOOL bInP) const
68 { return (const SwFmtCntnt&)Get( RES_CNTNT,bInP); }
70 inline const SwFmtCntnt &SwFmt::GetCntnt(BOOL bInP) const
71 { return aSet.GetCntnt(bInP); }
72 #endif
74 } //namespace binfilter
75 #endif