/src/libreoffice/drawinglayer/source/primitive2d/transformprimitive2d.cxx
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 | | #include <drawinglayer/primitive2d/transformprimitive2d.hxx> |
21 | | #include <drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx> |
22 | | #include <drawinglayer/primitive2d/Tools.hxx> |
23 | | #include <utility> |
24 | | |
25 | | |
26 | | using namespace com::sun::star; |
27 | | |
28 | | |
29 | | namespace drawinglayer::primitive2d |
30 | | { |
31 | | TransformPrimitive2D::TransformPrimitive2D( |
32 | | basegfx::B2DHomMatrix aTransformation, |
33 | | Primitive2DContainer&& aChildren) |
34 | 459 | : maTransformation(std::move(aTransformation)), |
35 | 459 | mxChildren(new GroupPrimitive2D(std::move(aChildren))) |
36 | 459 | { |
37 | 459 | } |
38 | | |
39 | | TransformPrimitive2D::TransformPrimitive2D( |
40 | | basegfx::B2DHomMatrix aTransformation, |
41 | | GroupPrimitive2D& rChildren) |
42 | 0 | : maTransformation(std::move(aTransformation)), |
43 | 0 | mxChildren(&rChildren) |
44 | 0 | { |
45 | 0 | } |
46 | | |
47 | | bool TransformPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const |
48 | 0 | { |
49 | 0 | if(BasePrimitive2D::operator==(rPrimitive)) |
50 | 0 | { |
51 | 0 | const TransformPrimitive2D& rCompare = static_cast< const TransformPrimitive2D& >(rPrimitive); |
52 | |
|
53 | 0 | return maTransformation == rCompare.maTransformation |
54 | 0 | && arePrimitive2DReferencesEqual(mxChildren, rCompare.mxChildren); |
55 | 0 | } |
56 | | |
57 | 0 | return false; |
58 | 0 | } |
59 | | |
60 | | basegfx::B2DRange TransformPrimitive2D::getB2DRange(const geometry::ViewInformation2D& rViewInformation) const |
61 | 428 | { |
62 | 428 | basegfx::B2DRange aRetval(getChildren().getB2DRange(rViewInformation)); |
63 | 428 | aRetval.transform(getTransformation()); |
64 | 428 | return aRetval; |
65 | 428 | } |
66 | | |
67 | | // provide unique ID |
68 | | sal_uInt32 TransformPrimitive2D::getPrimitive2DID() const |
69 | 684 | { |
70 | 684 | return PRIMITIVE2D_ID_TRANSFORMPRIMITIVE2D; |
71 | 684 | } |
72 | | |
73 | | } // end of namespace |
74 | | |
75 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |