update credits
[LibreOffice.git] / include / drawinglayer / attribute / sdrfillbitmapattribute.hxx
blob78417f3577c929455c6c900a80a4db29a623526b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLBITMAPATTRIBUTE_HXX
21 #define INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLBITMAPATTRIBUTE_HXX
23 #include <drawinglayer/drawinglayerdllapi.h>
24 #include <o3tl/cow_wrapper.hxx>
26 //////////////////////////////////////////////////////////////////////////////
27 // predefines
29 class BitmapEx;
31 namespace basegfx {
32 class B2DRange;
33 class B2DVector;
36 namespace drawinglayer { namespace attribute {
37 class FillBitmapAttribute;
38 class ImpSdrFillBitmapAttribute;
41 //////////////////////////////////////////////////////////////////////////////
43 namespace drawinglayer
45 namespace attribute
47 class DRAWINGLAYER_DLLPUBLIC SdrFillBitmapAttribute
49 public:
50 typedef o3tl::cow_wrapper< ImpSdrFillBitmapAttribute > ImplType;
52 private:
53 ImplType mpSdrFillBitmapAttribute;
55 public:
56 /// constructors/assignmentoperator/destructor
57 SdrFillBitmapAttribute(
58 const BitmapEx& rBitmapEx,
59 const basegfx::B2DVector& rSize,
60 const basegfx::B2DVector& rOffset,
61 const basegfx::B2DVector& rOffsetPosition,
62 const basegfx::B2DVector& rRectPoint,
63 bool bTiling,
64 bool bStretch,
65 bool bLogSize);
66 SdrFillBitmapAttribute();
67 SdrFillBitmapAttribute(const SdrFillBitmapAttribute& rCandidate);
68 SdrFillBitmapAttribute& operator=(const SdrFillBitmapAttribute& rCandidate);
69 ~SdrFillBitmapAttribute();
71 // checks if the incarnation is default constructed
72 bool isDefault() const;
74 // compare operator
75 bool operator==(const SdrFillBitmapAttribute& rCandidate) const;
77 // data read access
78 const BitmapEx& getBitmapEx() const;
79 const basegfx::B2DVector& getSize() const;
80 const basegfx::B2DVector& getOffset() const;
81 const basegfx::B2DVector& getOffsetPosition() const;
82 const basegfx::B2DVector& getRectPoint() const;
83 bool getTiling() const;
84 bool getStretch() const;
86 // FillBitmapAttribute generator
87 FillBitmapAttribute getFillBitmapAttribute(const basegfx::B2DRange& rRange) const;
89 } // end of namespace attribute
90 } // end of namespace drawinglayer
92 //////////////////////////////////////////////////////////////////////////////
94 #endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRFILLBITMAPATTRIBUTE_HXX
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */