fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / inc / LineProperties.hxx
blob2b61fdd4e74a835d13a5456e145c040444861905
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/.
8 */
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>
19 class LineProperties
21 private:
22 OUString maDashName;
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;
30 public:
31 LineProperties();
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);
38 #endif
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */