xref: /trunk/main/editeng/inc/editeng/colritem.hxx (revision 4c5491ea)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _SVX_COLRITEM_HXX
24 #define _SVX_COLRITEM_HXX
25 
26 // include ---------------------------------------------------------------
27 
28 #include <svl/poolitem.hxx>
29 #include <tools/color.hxx>
30 #include <editeng/editengdllapi.h>
31 
32 class SvXMLUnitConverter;
33 namespace rtl
34 {
35 	class OUString;
36 }
37 
38 // class SvxColorItem ----------------------------------------------------
39 
40 /*	[Beschreibung]
41 
42 	Dieses Item beschreibt eine Farbe.
43 */
44 
45 #define VERSION_USEAUTOCOLOR	1
46 
47 class EDITENG_DLLPUBLIC SvxColorItem : public SfxPoolItem
48 {
49 private:
50 	Color					mColor;
51 
52 public:
53 	TYPEINFO();
54 
55     SvxColorItem( const sal_uInt16 nId );
56     SvxColorItem( const Color& aColor, const sal_uInt16 nId  );
57     SvxColorItem( SvStream& rStrm, const sal_uInt16 nId  );
58 	SvxColorItem( const SvxColorItem& rCopy );
59 	~SvxColorItem();
60 
61 	// "pure virtual Methoden" vom SfxPoolItem
62 	virtual int 			 operator==( const SfxPoolItem& ) const;
63 	virtual	sal_Bool        	 QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
64 	virtual	sal_Bool			 PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
65 	virtual sal_uInt16			GetVersion( sal_uInt16 nFileVersion ) const;
66 
67 	virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
68 									SfxMapUnit eCoreMetric,
69 									SfxMapUnit ePresMetric,
70                                     String &rText, const IntlWrapper * = 0 ) const;
71 
72 	virtual SfxPoolItem*	 Clone( SfxItemPool *pPool = 0 ) const;
73 	virtual SfxPoolItem*	 Create(SvStream &, sal_uInt16) const;
74 	virtual SvStream&		 Store(SvStream &, sal_uInt16 nItemVersion) const;
75 
operator =(const SvxColorItem & rColor)76 	inline SvxColorItem& operator=(const SvxColorItem& rColor)
77 	{
78 		SetValue( rColor.GetValue() );
79 		return *this;
80 	}
81 
GetValue() const82 	const	Color&			GetValue() const
83 							{
84 								return mColor;
85 							}
86 			void			SetValue( const Color& rNewCol );
87 
88 };
89 
90 #endif
91 
92