/src/libreoffice/include/drawinglayer/primitive2d/bitmapprimitive2d.hxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
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/. |
8 | | * |
9 | | * This file incorporates work covered by the following license notice: |
10 | | * |
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 . |
18 | | */ |
19 | | |
20 | | #pragma once |
21 | | |
22 | | #include <drawinglayer/drawinglayerdllapi.h> |
23 | | |
24 | | #include <drawinglayer/primitive2d/baseprimitive2d.hxx> |
25 | | #include <basegfx/matrix/b2dhommatrix.hxx> |
26 | | #include <vcl/bitmap.hxx> |
27 | | |
28 | | namespace drawinglayer::primitive2d |
29 | | { |
30 | | /** BitmapPrimitive2D class |
31 | | |
32 | | This class is the central primitive for Bitmap-based primitives. |
33 | | */ |
34 | | class DRAWINGLAYER_DLLPUBLIC BitmapPrimitive2D final : public BasePrimitive2D |
35 | | { |
36 | | private: |
37 | | /// the Bitmap-data |
38 | | Bitmap maBitmap; |
39 | | |
40 | | /** the object transformation from unit coordinates, defining |
41 | | size, shear, rotate and position |
42 | | */ |
43 | | basegfx::B2DHomMatrix maTransform; |
44 | | |
45 | | public: |
46 | | /// constructor |
47 | | BitmapPrimitive2D(Bitmap xBitmap, basegfx::B2DHomMatrix aTransform); |
48 | | |
49 | | /// data read access |
50 | 0 | const Bitmap& getBitmap() const { return maBitmap; } |
51 | 0 | const basegfx::B2DHomMatrix& getTransform() const { return maTransform; } |
52 | | |
53 | | /// compare operator |
54 | | virtual bool operator==(const BasePrimitive2D& rPrimitive) const override; |
55 | | |
56 | | /// get range |
57 | | virtual basegfx::B2DRange |
58 | | getB2DRange(const geometry::ViewInformation2D& rViewInformation) const override; |
59 | | |
60 | | // XAccounting |
61 | | virtual sal_Int64 estimateUsage() override; |
62 | | |
63 | | /// provide unique ID |
64 | | virtual sal_uInt32 getPrimitive2DID() const override; |
65 | | }; |
66 | | |
67 | | } // end of namespace drawinglayer::primitive2d |
68 | | |
69 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |