Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_svx / brkitem.hxx
blob76e32fc0ab0b30fc2e70b3bce4cdf58de86d1ee2
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: brkitem.hxx,v $
10 * $Revision: 1.8 $
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 _SVX_BRKITEM_HXX
31 #define _SVX_BRKITEM_HXX
33 // include ---------------------------------------------------------------
35 #ifndef _SFXENUMITEM_HXX //autogen
36 #include <bf_svtools/eitem.hxx>
37 #endif
38 #ifndef _SVX_SVXENUM_HXX
39 #include <bf_svx/svxenum.hxx>
40 #endif
41 #ifndef _SVX_SVXIDS_HRC
42 #include <bf_svx/svxids.hrc>
43 #endif
45 namespace rtl
47 class OUString;
49 namespace binfilter {
51 // class SvxFmtBreakItem -------------------------------------------------
54 [Beschreibung]
55 Dieses Item beschreibt ein Umbruch-Attribut
56 Automatisch?, Seiten- oder Spaltenumbruch, davor oder danach?
58 #define FMTBREAK_NOAUTO ((USHORT)0x0001)
60 class SvxFmtBreakItem : public SfxEnumItem
62 public:
63 TYPEINFO();
65 inline SvxFmtBreakItem( const SvxBreak eBrk = SVX_BREAK_NONE,
66 const USHORT nWhich = ITEMID_FMTBREAK );
67 inline SvxFmtBreakItem( const SvxFmtBreakItem& rBreak );
68 inline SvxFmtBreakItem& operator=( const SvxFmtBreakItem& rCpy );
70 // "pure virtual Methoden" vom SfxPoolItem
71 virtual int operator==( const SfxPoolItem& ) const;
72 virtual sal_Bool QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const;
73 virtual sal_Bool PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 );
76 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
77 virtual SvStream& Store( SvStream& , USHORT nItemVersion ) const;
78 virtual USHORT GetVersion( USHORT nFileVersion ) const;
79 virtual SfxPoolItem* Create( SvStream&, USHORT ) const;
80 virtual USHORT GetValueCount() const;
82 // MS VC4.0 kommt durcheinander
83 void SetValue( USHORT nNewVal )
84 {SfxEnumItem::SetValue(nNewVal); }
85 const SvxBreak GetBreak() const { return SvxBreak( GetValue() ); }
86 void SetBreak( const SvxBreak eNew )
87 { SetValue( (USHORT)eNew ); }
90 inline SvxFmtBreakItem::SvxFmtBreakItem( const SvxBreak eBreak,
91 const USHORT nWhich ) :
92 SfxEnumItem( nWhich, (USHORT)eBreak )
95 inline SvxFmtBreakItem::SvxFmtBreakItem( const SvxFmtBreakItem& rBreak ) :
96 SfxEnumItem( rBreak )
99 inline SvxFmtBreakItem& SvxFmtBreakItem::operator=(
100 const SvxFmtBreakItem& rBreak )
102 SetValue( rBreak.GetValue() );
103 return *this;
107 }//end of namespace binfilter
108 #endif