LibreOffice Module oox (master) 1
lineproperties.hxx
Go to the documentation of this file.
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#ifndef INCLUDED_OOX_INC_DRAWINGML_LINEPROPERTIES_HXX
21#define INCLUDED_OOX_INC_DRAWINGML_LINEPROPERTIES_HXX
22
23#include <utility>
24#include <vector>
25
26#include <com/sun/star/drawing/LineCap.hpp>
27#include <com/sun/star/drawing/LineJoint.hpp>
28#include <com/sun/star/drawing/LineStyle.hpp>
29#include <oox/helper/helper.hxx>
30#include <sal/types.h>
31
33
34namespace oox { class GraphicHelper; }
35
36namespace oox::drawingml {
37
38class ShapePropertyMap;
39
41{
42 std::optional< sal_Int32 > moArrowType;
43 std::optional< sal_Int32 > moArrowWidth;
44 std::optional< sal_Int32 > moArrowLength;
45
47 void assignUsed( const LineArrowProperties& rSourceProps );
48};
49
51{
52 typedef ::std::pair< sal_Int32, sal_Int32 > DashStop;
53 typedef ::std::vector< DashStop > DashStopVector;
54
59 std::optional< sal_Int32 > moLineWidth;
60 std::optional< sal_Int32 > moPresetDash;
61 std::optional< sal_Int32 > moLineCompound;
62 std::optional< sal_Int32 > moLineCap;
63 std::optional< sal_Int32 > moLineJoint;
64
66 void assignUsed( const LineProperties& rSourceProps );
67
69 void pushToPropMap(
70 ShapePropertyMap& rPropMap,
71 const GraphicHelper& rGraphicHelper,
73 sal_Int16 nPhClrTheme = -1) const;
74
76 css::drawing::LineStyle getLineStyle() const;
78 css::drawing::LineCap getLineCap() const;
80 css::drawing::LineJoint getLineJoint() const;
82 sal_Int32 getLineWidth() const;
83};
84
85} // namespace oox::drawingml
86
87#endif
88
89/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides helper functions for colors, device measurement conversion, graphics, and graphic objects ha...
const ::Color API_RGB_TRANSPARENT(ColorTransparency, 0xffffffff)
Transparent color for API calls.
std::optional< sal_Int32 > moArrowLength
std::optional< sal_Int32 > moArrowType
void assignUsed(const LineArrowProperties &rSourceProps)
Overwrites all members that are explicitly set in rSourceProps.
std::optional< sal_Int32 > moArrowWidth
void assignUsed(const LineProperties &rSourceProps)
Line joint type (OOXML token).
FillProperties maLineFill
End line arrow style.
std::optional< sal_Int32 > moLineCompound
Preset dash (OOXML token).
sal_Int32 getLineWidth() const
Calculates the line width attribute from the internal state of the object.
std::optional< sal_Int32 > moLineCap
Line compound type (OOXML token).
std::optional< sal_Int32 > moLineWidth
User-defined line dash style.
LineArrowProperties maStartArrow
::std::pair< sal_Int32, sal_Int32 > DashStop
void pushToPropMap(ShapePropertyMap &rPropMap, const GraphicHelper &rGraphicHelper, ::Color nPhClr=API_RGB_TRANSPARENT, sal_Int16 nPhClrTheme=-1) const
Writes the properties to the passed property map.
css::drawing::LineStyle getLineStyle() const
Calculates the line style attribute from the internal state of the object.
::std::vector< DashStop > DashStopVector
std::optional< sal_Int32 > moLineJoint
Line cap (OOXML token).
LineArrowProperties maEndArrow
Start line arrow style.
std::optional< sal_Int32 > moPresetDash
Line width (EMUs).
DashStopVector maCustomDash
Line fill (solid, gradient, ...).
css::drawing::LineCap getLineCap() const
Calculates the line cap attribute from the internal state of the object.
css::drawing::LineJoint getLineJoint() const
Calculates the line joint attribute from the internal state of the object.