1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #ifndef INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
11 #define INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
13 #include <com/sun/star/drawing/LineStyle.hpp>
14 #include <com/sun/star/util/Color.hpp>
15 #include <com/sun/star/drawing/LineJoint.hpp>
16 #include <com/sun/star/drawing/LineDash.hpp>
17 #include <com/sun/star/uno/Any.hxx>
23 com::sun::star::drawing::LineDash maLineDash
;
24 sal_Int32 mnLineWidth
;
25 com::sun::star::drawing::LineStyle meLineStyle
;
26 com::sun::star::util::Color maLineColor
;
27 sal_Int16 mnLineTransparence
;
28 com::sun::star::drawing::LineJoint meLineJoint
;
32 LineProperties(const LineProperties
&);
34 com::sun::star::uno::Any
getPropertyValue(const OUString
& rName
);
35 void setPropertyValue(const OUString
& rName
, const com::sun::star::uno::Any
& rAny
);
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */