lok: intercept the UNO command ".uno:ThesaurusDialog"
[LibreOffice.git] / include / drawinglayer / primitive3d / hatchtextureprimitive3d.hxx
blobb46051be91bdb7eb9db49aecc936128f85d355c2
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_PRIMITIVE3D_HATCHTEXTUREPRIMITIVE3D_HXX
21 #define INCLUDED_DRAWINGLAYER_PRIMITIVE3D_HATCHTEXTUREPRIMITIVE3D_HXX
23 #include <drawinglayer/drawinglayerdllapi.h>
25 #include <drawinglayer/primitive3d/textureprimitive3d.hxx>
26 #include <drawinglayer/attribute/fillhatchattribute.hxx>
29 namespace drawinglayer
31 namespace primitive3d
33 /** HatchTexturePrimitive3D class
35 HatchTexturePrimitive3D is derived from GroupPrimitive3D, but implements
36 a decomposition which is complicated enough for buffering. Since the group
37 primitive has no default buffering, it is necessary here to add a local
38 buffering mechanism for the decomposition
40 class DRAWINGLAYER_DLLPUBLIC HatchTexturePrimitive3D final : public TexturePrimitive3D
42 /// the hatch definition
43 attribute::FillHatchAttribute maHatch;
45 /// the buffered decomposed hatch
46 Primitive3DContainer maBuffered3DDecomposition;
48 /// helper: local decomposition
49 Primitive3DContainer impCreate3DDecomposition() const;
51 /// local access methods to maBufferedDecomposition
52 const Primitive3DContainer& getBuffered3DDecomposition() const { return maBuffered3DDecomposition; }
54 public:
55 /// constructor
56 HatchTexturePrimitive3D(
57 const attribute::FillHatchAttribute& rHatch,
58 const Primitive3DContainer& rChildren,
59 const basegfx::B2DVector& rTextureSize,
60 bool bModulate,
61 bool bFilter);
63 /// data read access
64 const attribute::FillHatchAttribute& getHatch() const { return maHatch; }
66 /// compare operator
67 virtual bool operator==(const BasePrimitive3D& rPrimitive) const override;
69 /// local decomposition.
70 virtual Primitive3DContainer get3DDecomposition(const geometry::ViewInformation3D& rViewInformation) const override;
72 /// provide unique ID
73 DeclPrimitive3DIDBlock()
75 } // end of namespace primitive3d
76 } // end of namespace drawinglayer
79 #endif //INCLUDED_DRAWINGLAYER_PRIMITIVE3D_HATCHTEXTUREPRIMITIVE3D_HXX
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */