1 /*************************************************************************
2  *
3  *  OpenOffice.org - a multi-platform office productivity suite
4  *
5  *  $RCSfile: sdrattribute.hxx,v $
6  *
7  *  $Revision: 1.4 $
8  *
9  *  last change: $Author: aw $ $Date: 2008-05-27 14:11:16 $
10  *
11  *  The Contents of this file are made available subject to
12  *  the terms of GNU Lesser General Public License Version 2.1.
13  *
14  *
15  *    GNU Lesser General Public License Version 2.1
16  *    =============================================
17  *    Copyright 2005 by Sun Microsystems, Inc.
18  *    901 San Antonio Road, Palo Alto, CA 94303, USA
19  *
20  *    This library is free software; you can redistribute it and/or
21  *    modify it under the terms of the GNU Lesser General Public
22  *    License version 2.1, as published by the Free Software Foundation.
23  *
24  *    This library is distributed in the hope that it will be useful,
25  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27  *    Lesser General Public License for more details.
28  *
29  *    You should have received a copy of the GNU Lesser General Public
30  *    License along with this library; if not, write to the Free Software
31  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32  *    MA  02111-1307  USA
33  *
34  ************************************************************************/
35 
36 #ifndef INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLATTRIBUTE_HXX
37 #define INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLATTRIBUTE_HXX
38 
39 #include <drawinglayer/drawinglayerdllapi.h>
40 //////////////////////////////////////////////////////////////////////////////
41 // predefines
42 
43 namespace basegfx {
44     class BColor;
45 }
46 
47 namespace drawinglayer { namespace attribute {
48 	class ImpSdrFillAttribute;
49 	class FillGradientAttribute;
50 	class FillHatchAttribute;
51 	class SdrFillBitmapAttribute;
52 }}
53 
54 //////////////////////////////////////////////////////////////////////////////
55 
56 namespace drawinglayer
57 {
58 	namespace attribute
59 	{
60 		class DRAWINGLAYER_DLLPUBLIC SdrFillAttribute
61 		{
62         private:
63             ImpSdrFillAttribute*            mpSdrFillAttribute;
64 
65 		public:
66             /// constructors/assignmentoperator/destructor
67 			SdrFillAttribute(
68 				double fTransparence,
69                 const basegfx::BColor& rColor,
70                 const FillGradientAttribute& rGradient,
71 				const FillHatchAttribute& rHatch,
72                 const SdrFillBitmapAttribute& rBitmap);
73 			SdrFillAttribute();
74 			SdrFillAttribute(const SdrFillAttribute& rCandidate);
75 			SdrFillAttribute& operator=(const SdrFillAttribute& rCandidate);
76 			~SdrFillAttribute();
77 
78             // checks if the incarnation is default constructed
79             bool isDefault() const;
80 
81             // compare operator
82 			bool operator==(const SdrFillAttribute& rCandidate) const;
83 
84 			// data read access
85 			double getTransparence() const;
86 			const basegfx::BColor& getColor() const;
87 			const FillGradientAttribute& getGradient() const;
88 			const FillHatchAttribute& getHatch() const;
89 			const SdrFillBitmapAttribute& getBitmap() const;
90 		};
91 	} // end of namespace attribute
92 } // end of namespace drawinglayer
93 
94 //////////////////////////////////////////////////////////////////////////////
95 
96 #endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLATTRIBUTE_HXX
97 
98 // eof
99