sync master with lastest vba changes
[ooovba.git] / binfilter / inc / bf_svx / crsditem.hxx
blob35ae6e47833f75dae81a028b1f7e3e1ac757d36e
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: crsditem.hxx,v $
10 * $Revision: 1.9 $
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_CRSDITEM_HXX
31 #define _SVX_CRSDITEM_HXX
33 // include ---------------------------------------------------------------
35 #ifndef _VCL_VCLENUM_HXX
36 #include <vcl/vclenum.hxx>
37 #endif
38 #ifndef _SFXENUMITEM_HXX //autogen
39 #include <bf_svtools/eitem.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 {
50 class SvXMLUnitConverter;
51 // class SvxCrossedOutItem -----------------------------------------------
54 [Beschreibung]
55 Dieses Item beschreibt, ob und wie durchstrichen ist.
58 class SvxCrossedOutItem : public SfxEnumItem
60 public:
61 TYPEINFO();
63 SvxCrossedOutItem( const FontStrikeout eSt = STRIKEOUT_NONE,
64 const USHORT nId = ITEMID_CROSSEDOUT );
66 // "pure virtual Methoden" vom SfxPoolItem
68 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
69 virtual SfxPoolItem* Create(SvStream &, USHORT) const;
70 virtual SvStream& Store(SvStream &, USHORT nItemVersion) const;
71 virtual USHORT GetValueCount() 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 );
75 // MS VC4.0 kommt durcheinander
76 void SetValue( USHORT nNewVal )
77 {SfxEnumItem::SetValue(nNewVal); }
80 inline SvxCrossedOutItem& operator=(const SvxCrossedOutItem& rCross)
82 SetValue( rCross.GetValue() );
83 return *this;
86 // enum cast
87 FontStrikeout GetStrikeout() const
88 { return (FontStrikeout)GetValue(); }
89 void SetStrikeout( FontStrikeout eNew )
90 { SetValue( (USHORT)eNew ); }
93 }//end of namespace binfilter
94 #endif // #ifndef _SVX_CRSDITEM_HXX