xref: /trunk/main/drawinglayer/inc/drawinglayer/attribute/sdrshadowattribute.hxx (revision 408a4873fc8bcc602c90ea4598886bb71abf0675)
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_SDRSHADOWATTRIBUTE_HXX
37 #define INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRSHADOWATTRIBUTE_HXX
38 
39 #include <drawinglayer/drawinglayerdllapi.h>
40 //////////////////////////////////////////////////////////////////////////////
41 // predefines
42 
43 namespace basegfx {
44     class BColor;
45     class B2DVector;
46 }
47 
48 namespace drawinglayer { namespace attribute {
49     class ImpSdrShadowAttribute;
50 }}
51 
52 //////////////////////////////////////////////////////////////////////////////
53 
54 namespace drawinglayer
55 {
56     namespace attribute
57     {
58         class DRAWINGLAYER_DLLPUBLIC SdrShadowAttribute
59         {
60         private:
61             ImpSdrShadowAttribute*              mpSdrShadowAttribute;
62 
63         public:
64             /// constructors/assignmentoperator/destructor
65             SdrShadowAttribute(
66                 const basegfx::B2DVector& rOffset,
67                 double fTransparence,
68                 const basegfx::BColor& rColor);
69             SdrShadowAttribute();
70             SdrShadowAttribute(const SdrShadowAttribute& rCandidate);
71             SdrShadowAttribute& operator=(const SdrShadowAttribute& rCandidate);
72             ~SdrShadowAttribute();
73 
74             // checks if the incarnation is default constructed
75             bool isDefault() const;
76 
77             // compare operator
78             bool operator==(const SdrShadowAttribute& rCandidate) const;
79 
80             // data access
81             const basegfx::B2DVector& getOffset() const;
82             double getTransparence() const;
83             const basegfx::BColor& getColor() const;
84         };
85     } // end of namespace attribute
86 } // end of namespace drawinglayer
87 
88 //////////////////////////////////////////////////////////////////////////////
89 
90 #endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRSHADOWATTRIBUTE_HXX
91 
92 // eof
93