update emoji autocorrect entries from po-files
[LibreOffice.git] / include / drawinglayer / processor3d / geometry2dextractor.hxx
blob194f38c9422a7753baba8cc42f5ab317cdbce1e6
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_PROCESSOR3D_GEOMETRY2DEXTRACTOR_HXX
21 #define INCLUDED_DRAWINGLAYER_PROCESSOR3D_GEOMETRY2DEXTRACTOR_HXX
23 #include <drawinglayer/drawinglayerdllapi.h>
25 #include <drawinglayer/processor3d/baseprocessor3d.hxx>
26 #include <drawinglayer/primitive2d/baseprimitive2d.hxx>
27 #include <basegfx/matrix/b2dhommatrix.hxx>
28 #include <basegfx/matrix/b3dhommatrix.hxx>
29 #include <basegfx/color/bcolormodifier.hxx>
33 namespace drawinglayer
35 namespace processor3d
37 /** Geometry2DExtractingProcessor class
39 This processor extracts the 2D geometry (projected geometry) of all feeded primitives.
40 It is e.g. used as sub-processor for contour extraction where 3D geometry is only
41 useful as 2D projected geometry.
43 class DRAWINGLAYER_DLLPUBLIC Geometry2DExtractingProcessor : public BaseProcessor3D
45 private:
46 /// result holding vector (2D)
47 primitive2d::Primitive2DSequence maPrimitive2DSequence;
49 /// object transformation for scene for 2d definition
50 basegfx::B2DHomMatrix maObjectTransformation;
52 /// the modifiedColorPrimitive stack
53 basegfx::BColorModifierStack maBColorModifierStack;
55 /* as tooling, the process() implementation takes over API handling and calls this
56 virtual render method when the primitive implementation is BasePrimitive3D-based.
58 virtual void processBasePrimitive3D(const primitive3d::BasePrimitive3D& rCandidate) SAL_OVERRIDE;
60 public:
61 Geometry2DExtractingProcessor(
62 const geometry::ViewInformation3D& rViewInformation,
63 const basegfx::B2DHomMatrix& rObjectTransformation);
65 // data read access
66 const primitive2d::Primitive2DSequence& getPrimitive2DSequence() const { return maPrimitive2DSequence; }
67 const basegfx::B2DHomMatrix& getObjectTransformation() const { return maObjectTransformation; }
68 const basegfx::BColorModifierStack& getBColorModifierStack() const { return maBColorModifierStack; }
70 } // end of namespace processor3d
71 } // end of namespace drawinglayer
73 #endif //INCLUDED_DRAWINGLAYER_PROCESSOR3D_GEOMETRY2DEXTRACTOR_HXX
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */