Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_svx / colritem.hxx
blob0f9bff8c057faa6710940bef48aa112810ff6e9e
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: colritem.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_COLRITEM_HXX
31 #define _SVX_COLRITEM_HXX
33 // include ---------------------------------------------------------------
35 #ifndef _SFXPOOLITEM_HXX //autogen
36 #include <bf_svtools/poolitem.hxx>
37 #endif
38 #ifndef _SVX_SVXIDS_HRC
39 #include <bf_svx/svxids.hrc>
40 #endif
41 #ifndef _COLOR_HXX //autogen
42 #include <tools/color.hxx>
43 #endif
45 namespace rtl
47 class OUString;
49 namespace binfilter {
50 class SvXMLUnitConverter;
52 // class SvxColorItem ----------------------------------------------------
54 /* [Beschreibung]
56 Dieses Item beschreibt eine Farbe.
59 #define VERSION_USEAUTOCOLOR 1
61 class SvxColorItem : public SfxPoolItem
63 private:
64 Color mColor;
66 public:
67 TYPEINFO();
69 SvxColorItem( const USHORT nId = ITEMID_COLOR );
70 SvxColorItem( const Color& aColor, const USHORT nId = ITEMID_COLOR );
71 SvxColorItem( SvStream& rStrm, const USHORT nId = ITEMID_COLOR );
72 SvxColorItem( const SvxColorItem& rCopy );
73 ~SvxColorItem();
75 // "pure virtual Methoden" vom SfxPoolItem
76 virtual int operator==( const SfxPoolItem& ) const;
77 virtual sal_Bool QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const;
78 virtual sal_Bool PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 );
79 virtual USHORT GetVersion( USHORT nFileVersion ) const;
82 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
83 virtual SfxPoolItem* Create(SvStream &, USHORT) const;
84 virtual SvStream& Store(SvStream &, USHORT nItemVersion) const;
86 inline SvxColorItem& operator=(const SvxColorItem& rColor)
88 SetValue( rColor.GetValue() );
89 return *this;
92 const Color& GetValue() const
94 return mColor;
96 void SetValue( const Color& rNewCol );
100 }//end of namespace binfilter
101 #endif